blob: 8ebcb28630964cd738a3fb4d386ea664576b8605 (
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
|
/** @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, 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
{
public:
static void load_new_from_template();
private:
NewFromTemplate();
Gtk::Button _create_template_button;
TemplateLoadTab _main_widget;
void _createFromTemplate();
};
}
}
#endif
|