File: check-button.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 (78 lines) | stat: -rw-r--r-- 2,152 bytes parent folder | download | duplicates (4)
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
#if defined(Hiro_CheckButton)

namespace hiro {

auto pCheckButton::construct() -> void {
  qtWidget = qtCheckButton = new QtCheckButton(*this);
  qtCheckButton->setCheckable(true);
  qtCheckButton->setToolButtonStyle(Qt::ToolButtonTextOnly);
  qtCheckButton->connect(qtCheckButton, SIGNAL(toggled(bool)), SLOT(onToggle(bool)));

  pWidget::construct();
  _setState();
}

auto pCheckButton::destruct() -> void {
  delete qtCheckButton;
  qtCheckButton = nullptr;
}

auto pCheckButton::minimumSize() const -> Size {
  auto size = pFont::size(qtWidget->font(), state().text);

  if(state().orientation == Orientation::Horizontal) {
    size.setWidth(size.width() + state().icon.width());
    size.setHeight(max(size.height(), state().icon.height()));
  }

  if(state().orientation == Orientation::Vertical) {
    size.setWidth(max(size.width(), state().icon.width()));
    size.setHeight(size.height() + state().icon.height());
  }

  return {size.width() + 20, size.height() + 12};
}

auto pCheckButton::setBordered(bool bordered) -> void {
  _setState();
}

auto pCheckButton::setChecked(bool checked) -> void {
  _setState();
}

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

auto pCheckButton::setOrientation(Orientation orientation) -> void {
  _setState();
}

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

auto pCheckButton::_setState() -> void {
  lock();
  qtCheckButton->setAutoRaise(!state().bordered);
  qtCheckButton->setChecked(state().checked);
  qtCheckButton->setIconSize(QSize(state().icon.width(), state().icon.height()));
  qtCheckButton->setIcon(CreateIcon(state().icon));
  qtCheckButton->setStyleSheet("text-align: top;");
  switch(state().orientation) {
  case Orientation::Horizontal: qtCheckButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); break;
  case Orientation::Vertical:   qtCheckButton->setToolButtonStyle(Qt::ToolButtonTextUnderIcon); break;
  }
  qtCheckButton->setText(QString::fromUtf8(state().text));
  unlock();
}

auto QtCheckButton::onToggle(bool checked) -> void {
  p.state().checked = checked;
  if(!p.locked()) p.self().doToggle();
}

}

#endif