blob: eb702ca656a2a333a485d674292cdc296d142869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* TODO: insert short description here
*//*
* Authors: see git history
*
* Copyright (C) 2017 Authors
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H
#define INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H
#include <glibmm/refptr.h>
namespace Gtk {
class Builder;
class CheckButton;
class Dialog;
class Entry;
class Window;
}
namespace Inkscape {
namespace UI {
namespace Dialog {
class SaveTemplate
{
public:
static void save_document_as_template(Gtk::Window &parentWindow);
protected:
void on_name_changed();
private:
Gtk::Dialog *dialog;
Gtk::Entry *name;
Gtk::Entry *author;
Gtk::Entry *description;
Gtk::Entry *keywords;
Gtk::CheckButton *set_default_template;
SaveTemplate(Gtk::Window &parent);
void save_template(Gtk::Window &parent);
};
}
}
}
#endif
|