summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/save-template-dialog.h
blob: 8cf2d8e08b487dbbcaf82ce52adc68f454addee2 (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
57
58
59
60
// 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 <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