blob: 826f13e695616bed9eb77f70785ac6d1500473a8 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
/**
* \brief Simplified management of enumerations in the UI as combobox.
*
* Authors:
* Nicholas Bishop <nicholasbishop@gmail.com>
* Johan Engelen <j.b.c.engelen@ewi.utwente.nl>
*
* Copyright (C) 2007 Authors
*
* Released under GNU GPL. Read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_UI_WIDGET_COMBO_ENUMS_H
#define INKSCAPE_UI_WIDGET_COMBO_ENUMS_H
#include <gtkmm/combobox.h>
#include <gtkmm/liststore.h>
#include "util/enums.h"
namespace Inkscape {
namespace UI {
namespace Widget {
template<typename E> class ComboBoxEnum : public Gtk::ComboBox
{
public:
ComboBoxEnum(const Util::EnumDataConverter<E>& c)
: _converter(c)
{
_model = Gtk::ListStore::create(_columns);
set_model(_model);
pack_start(_columns.label);
// Initialize list
for(int i = 0; i < _converter.end; ++i) {
Gtk::TreeModel::Row row = *_model->append();
const Util::EnumData<E>* data = &_converter.data(i);
row[_columns.data] = data;
row[_columns.label] = _converter.get_label(data->id);
}
set_active(0);
}
const Util::EnumData<E>* get_active_data()
{
Gtk::TreeModel::iterator i = this->get_active();
if(i)
return (*i)[_columns.data];
return 0;
}
void add_row(const Glib::ustring& s)
{
Gtk::TreeModel::Row row = *_model->append();
row[_columns.data] = 0;
row[_columns.label] = s;
}
private:
class Columns : public Gtk::TreeModel::ColumnRecord
{
public:
Columns()
{
add(data);
add(label);
}
Gtk::TreeModelColumn<const Util::EnumData<E>*> data;
Gtk::TreeModelColumn<Glib::ustring> label;
};
Columns _columns;
Glib::RefPtr<Gtk::ListStore> _model;
const Util::EnumDataConverter<E>& _converter;
};
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
|