summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/static-template-load-tab.cpp
blob: 47c7c00b92be84c289e44e0bcd5f05ff9da13922 (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
61
62
63
64
#include "static-template-load-tab.h"

#include <gtkmm/alignment.h>
#include <gtkmm/button.h>
#include <gtkmm/label.h>
#include <iostream>

#include "src/file.h"


namespace Inkscape {
namespace UI {
    

StaticTemplateLoadTab::StaticTemplateLoadTab()
    : TemplateLoadTab()
    , _more_info_button("More info")
    , _preview_image("preview.png")
    , _short_description_label("Short description - I like trains. ad asda asd asdweqe gdfg")
    , _template_name_label("Template_name")
    , _template_author_label("by template_author")
{
    _loading_path = "/static";
    _loadTemplates();
    _initLists();
    
    _template_info_column.pack_start(_template_name_label, Gtk::PACK_SHRINK, 4);
    _template_info_column.pack_start(_template_author_label, Gtk::PACK_SHRINK, 0);
    _template_info_column.pack_start(_preview_image, Gtk::PACK_SHRINK, 15);
    _template_info_column.pack_start(_short_description_label, Gtk::PACK_SHRINK, 4);
    
    _short_description_label.set_line_wrap(true);
    _short_description_label.set_size_request(200);

    Gtk::Alignment *align;
    align = manage(new Gtk::Alignment(Gtk::ALIGN_END, Gtk::ALIGN_CENTER, 0.0, 0.0));
    _template_info_column.pack_start(*align, Gtk::PACK_SHRINK, 5);
    align->add(_more_info_button);
}


void StaticTemplateLoadTab::createTemplate()
{
    Glib::ustring path;
    if (_templates.find(_current_template) != _templates.end()){
        path = _templates[_current_template].path;
    }
    else
        path = "";
    
    sp_file_new(path);
}


void StaticTemplateLoadTab::_displayTemplateInfo()
{
    TemplateLoadTab::_displayTemplateInfo();
    _template_name_label.set_text(_current_template);
    _template_author_label.set_text(_templates[_current_template].author);
    _short_description_label.set_text(_templates[_current_template].short_description);
}

}
}