blob: b13a3b93a035de06317e0ce9b7201e4c8d343fe5 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
* @brief New From Template - template widget
*/
/* 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_TEMPLATE_WIDGET_H
#define INKSCAPE_SEEN_UI_DIALOG_TEMPLATE_WIDGET_H
#include "svg-preview.h"
#include <gtkmm/box.h>
#include "template-load-tab.h"
namespace Inkscape {
namespace UI {
class TemplateWidget : public Gtk::Box
{
public:
TemplateWidget ();
void create();
void display(TemplateLoadTab::TemplateData);
void clear();
private:
TemplateLoadTab::TemplateData _current_template;
Gtk::Button _more_info_button;
Gtk::Box _preview_box;
Gtk::Image _preview_image;
Dialog::SVGPreview _preview_render;
Gtk::Label _short_description_label;
Gtk::Label _template_name_label;
Gtk::Widget *_effect_prefs;
void _displayTemplateDetails();
};
}
}
#endif
|