blob: 6c1770c3c45f0cd1488ec93339d0b734f32e5ac1 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef ICON_COMBO_BOX_SEEN_
#define ICON_COMBO_BOX_SEEN_
#include <gtkmm/combobox.h>
#include <gtkmm/liststore.h>
namespace Inkscape {
namespace UI {
namespace Widget {
class IconComboBox : public Gtk::ComboBox {
public:
IconComboBox() {
_model = Gtk::ListStore::create(_columns);
set_model(_model);
pack_start(_renderer, false);
_renderer.set_property("stock_size", Gtk::ICON_SIZE_BUTTON);
_renderer.set_padding(2, 0);
add_attribute(_renderer, "icon_name", _columns.icon_name);
pack_start(_columns.label);
}
void add_row(const Glib::ustring& icon_name, const Glib::ustring& label, int id) {
Gtk::TreeModel::Row row = *_model->append();
row[_columns.id] = id;
row[_columns.icon_name] = icon_name;
row[_columns.label] = ' ' + label;
}
void set_active_by_id(int id) {
for (auto i = _model->children().begin(); i != _model->children().end(); ++i) {
const int data = (*i)[_columns.id];
if (data == id) {
set_active(i);
break;
}
}
};
int get_active_row_id() const {
if (auto it = get_active()) {
return (*it)[_columns.id];
}
return -1;
}
private:
class Columns : public Gtk::TreeModel::ColumnRecord
{
public:
Columns() {
add(icon_name);
add(label);
add(id);
}
Gtk::TreeModelColumn<Glib::ustring> icon_name;
Gtk::TreeModelColumn<Glib::ustring> label;
Gtk::TreeModelColumn<int> id;
};
Columns _columns;
Glib::RefPtr<Gtk::ListStore> _model;
Gtk::CellRendererPixbuf _renderer;
};
}}}
#endif
|