File: label.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 (81 lines) | stat: -rw-r--r-- 2,600 bytes parent folder | download
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
#if defined(Hiro_Label)

namespace hiro {

auto pLabel::construct() -> void {
  hwnd = CreateWindow(L"hiroLabel", L"",
    WS_CHILD,
    0, 0, 0, 0, _parentHandle(), nullptr, GetModuleHandle(0), 0);
  SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&reference);
  pWidget::_setState();
  setAlignment(state().alignment);
  setText(state().text);
}

auto pLabel::destruct() -> void {
  DestroyWindow(hwnd);
}

auto pLabel::minimumSize() const -> Size {
  auto size = pFont::size(self().font(true), state().text ? state().text : " ");
  return {size.width(), size.height()};
}

auto pLabel::setAlignment(Alignment alignment) -> void {
  InvalidateRect(hwnd, 0, false);
}

auto pLabel::setText(const string& text) -> void {
  SetWindowText(hwnd, utf16_t(text));
  InvalidateRect(hwnd, 0, false);
}

static auto CALLBACK Label_windowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) -> LRESULT {
  auto label = (mLabel*)GetWindowLongPtr(hwnd, GWLP_USERDATA);
  if(!label) return DefWindowProc(hwnd, msg, wparam, lparam);
  auto window = label->parentWindow(true);
  if(!window) return DefWindowProc(hwnd, msg, wparam, lparam);

  switch(msg) {
  case WM_GETDLGCODE: return DLGC_STATIC | DLGC_WANTCHARS;
  case WM_ERASEBKGND: return true;
  case WM_PAINT: {
    PAINTSTRUCT ps;
    BeginPaint(hwnd, &ps);
    RECT rc;
    GetClientRect(hwnd, &rc);
    //todo: use DrawThemeParentBackground if Label is inside TabFrame
    if(auto brush = window->self()->hbrush) {
      FillRect(ps.hdc, &rc, brush);
    } else {
      DrawThemeParentBackground(hwnd, ps.hdc, &rc);
    }
    SetBkMode(ps.hdc, TRANSPARENT);
    SelectObject(ps.hdc, label->self()->hfont);
    uint length = GetWindowTextLength(hwnd);
    wchar_t text[length + 1];
    GetWindowText(hwnd, text, length + 1);
    text[length] = 0;
    DrawText(ps.hdc, text, -1, &rc, DT_CALCRECT | DT_END_ELLIPSIS);
    uint height = rc.bottom;
    GetClientRect(hwnd, &rc);
    rc.top = (rc.bottom - height) / 2;
    rc.bottom = rc.top + height;
    uint horizontalAlignment = DT_CENTER;
    if(label->alignment().horizontal() < 0.333) horizontalAlignment = DT_LEFT;
    if(label->alignment().horizontal() > 0.666) horizontalAlignment = DT_RIGHT;
    uint verticalAlignment = DT_VCENTER;
    if(label->alignment().vertical() < 0.333) verticalAlignment = DT_TOP;
    if(label->alignment().vertical() > 0.666) verticalAlignment = DT_BOTTOM;
    DrawText(ps.hdc, text, -1, &rc, DT_END_ELLIPSIS | horizontalAlignment | verticalAlignment);
    EndPaint(hwnd, &ps);
    return false;
  }
  }

  return DefWindowProc(hwnd, msg, wparam, lparam);
}

}

#endif