blob: 3f2cbddc1bc7804e70f5007d6597464080ced19a (
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
|
#ifndef INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H
#define INKSCAPE_SEEN_UI_DIALOG_SAVE_TEMPLATE_H
#include <gtkmm/dialog.h>
#include <gtkmm/entry.h>
#include <gtkmm/box.h>
#include <gtkmm/grid.h>
#include <gtkmm/label.h>
#include <gtkmm/checkbutton.h>
namespace Inkscape {
namespace UI {
namespace Dialog {
class SaveTemplate : public Gtk::Dialog
{
public:
static void save_document_as_template(Gtk::Window &parentWindow);
protected:
void on_name_changed();
private:
Gtk::Grid grid;
Gtk::Label name_label;
Gtk::Entry name_text;
Gtk::Label author_label;
Gtk::Entry author_text;
Gtk::Label description_label;
Gtk::Entry description_text;
Gtk::Label keywords_label;
Gtk::Entry keywords_text;
Gtk::CheckButton is_default_template;
SaveTemplate();
bool save_template(Gtk::Window &parentWindow);
};
}
}
}
#endif
|