File: status-bar.cpp

package info (click to toggle)
higan 106-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 9,640 kB
  • sloc: cpp: 108,736; ansic: 809; makefile: 22; sh: 7
file content (54 lines) | stat: -rw-r--r-- 1,462 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
53
54
#if defined(Hiro_StatusBar)

namespace hiro {

auto pStatusBar::construct() -> void {
  if(auto parent = _parent()) {
    hwnd = CreateWindow(STATUSCLASSNAME, L"", WS_CHILD | WS_DISABLED, 0, 0, 0, 0, parent->hwnd, nullptr, GetModuleHandle(0), 0);
    SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&reference);
    setEnabled(self().enabled(true));
    setFont(self().font(true));
    setText(self().text());
    setVisible(self().visible(true));
  }
}

auto pStatusBar::destruct() -> void {
  if(hfont) { DeleteObject(hfont); hfont = nullptr; }
  if(hwnd) { DestroyWindow(hwnd); hwnd = nullptr; }
  if(auto parent = _parent()) {
    parent->setGeometry(parent->state().geometry);
  }
}

auto pStatusBar::setEnabled(bool enabled) -> void {
  //unsupported
}

auto pStatusBar::setFont(const Font& font) -> void {
  if(hfont) DeleteObject(hfont);
  hfont = pFont::create(font);
  if(hwnd) SendMessage(hwnd, WM_SETFONT, (WPARAM)hfont, 0);
}

auto pStatusBar::setText(const string& text) -> void {
  if(hwnd) SendMessage(hwnd, SB_SETTEXT, 0, (LPARAM)(wchar_t*)utf16_t(text));
}

auto pStatusBar::setVisible(bool visible) -> void {
  if(hwnd) ShowWindow(hwnd, visible ? SW_SHOWNORMAL : SW_HIDE);
  if(auto parent = _parent()) {
    parent->setGeometry(parent->state().geometry);
  }
}

auto pStatusBar::_parent() -> maybe<pWindow&> {
  if(auto parent = self().parentWindow(true)) {
    if(auto self = parent->self()) return *self;
  }
  return nothing;
}

}

#endif