blob: a308fe4f76f9da896fdb8cf1ed4374853652a2f5 (
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
|
// 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>
#include "template-load-tab.h"
namespace Inkscape {
namespace UI {
class NewFromTemplate : public Gtk::Dialog
{
friend class TemplateLoadTab;
public:
static void load_new_from_template();
void setCreateButtonSensitive(bool value);
~NewFromTemplate() override;
private:
NewFromTemplate();
Gtk::Button _create_template_button;
TemplateLoadTab* _main_widget;
void _createFromTemplate();
void _onClose();
};
}
}
#endif
|