File: combo-button-item.cpp

package info (click to toggle)
ares 134%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 34,680 kB
  • sloc: cpp: 338,717; ansic: 89,036; sh: 52; makefile: 27
file content (52 lines) | stat: -rw-r--r-- 1,201 bytes parent folder | download | duplicates (2)
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
#if defined(Hiro_ComboButton)

namespace hiro {

auto pComboButtonItem::construct() -> void {
  if(auto parent = _parent()) {
    parent->lock();
    parent->qtComboButton->addItem("");
    _setState();
    parent->unlock();
  }
}

auto pComboButtonItem::destruct() -> void {
  if(auto parent = _parent()) {
    parent->lock();
    parent->qtComboButton->removeItem(self().offset());
    parent->unlock();
  }
}

auto pComboButtonItem::setIcon(const image& icon) -> void {
  _setState();
}

auto pComboButtonItem::setSelected() -> void {
  _setState();
}

auto pComboButtonItem::setText(const string& text) -> void {
  _setState();
}

auto pComboButtonItem::_parent() -> maybe<pComboButton&> {
  if(auto parent = self().parentComboButton()) {
    if(auto self = parent->self()) return *self;
  }
  return nothing;
}

auto pComboButtonItem::_setState() -> void {
  if(auto parent = _parent()) {
    auto lock = parent->acquire();
    parent->qtComboButton->setItemIcon(self().offset(), CreateIcon(state().icon));
    if(state().selected) parent->qtComboButton->setCurrentIndex(self().offset());
    parent->qtComboButton->setItemText(self().offset(), QString::fromUtf8(state().text));
  }
}

}

#endif