summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/new-from-template.h
blob: f286c21f90d26d4ca71ce0ebe2d2dc6b3501fa3f (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
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
 * @brief New From Template main dialog
 */
/* Authors:
 *   Jan Darowski <jan.darowski@gmail.com>, supervised by Krzysztof Kosiński
 *
 * Copyright (C) 2013 Authors
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifndef INKSCAPE_SEEN_UI_DIALOG_NEW_FROM_TEMPLATE_H
#define INKSCAPE_SEEN_UI_DIALOG_NEW_FROM_TEMPLATE_H

#include <gtkmm/dialog.h>
#include <gtkmm/button.h>

namespace Inkscape {
namespace UI {
namespace Widget {
class TemplateList;
}

class NewFromTemplate : public Gtk::Dialog
{

friend class TemplateLoadTab;
public:
    static void load_new_from_template();
    ~NewFromTemplate() override{};

private:
    NewFromTemplate();
    Gtk::Button _create_template_button;
    Inkscape::UI::Widget::TemplateList *templates;

    void _createFromTemplate();
    void _onClose();
};

}
}
#endif