File: table-view-cell.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 (65 lines) | stat: -rw-r--r-- 1,420 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
#if defined(Hiro_TableView)

namespace hiro {

auto pTableViewCell::construct() -> void {
}

auto pTableViewCell::destruct() -> void {
}

auto pTableViewCell::setAlignment(Alignment alignment) -> void {
  _redraw();
}

auto pTableViewCell::setBackgroundColor(Color color) -> void {
  _redraw();
}

auto pTableViewCell::setCheckable(bool checkable) -> void {
  _redraw();
}

auto pTableViewCell::setChecked(bool checked) -> void {
  _redraw();
}

auto pTableViewCell::setForegroundColor(Color color) -> void {
  _redraw();
}

auto pTableViewCell::setIcon(const image& icon) -> void {
  _redraw();
}

auto pTableViewCell::setText(const string& text) -> void {
  _redraw();
}

auto pTableViewCell::_grandparent() -> maybe<pTableView&> {
  if(auto parent = _parent()) return parent->_parent();
}

auto pTableViewCell::_parent() -> maybe<pTableViewItem&> {
  if(auto parent = self().parentTableViewItem()) {
    if(auto self = parent->self()) return *self;
  }
  return nothing;
}

auto pTableViewCell::_redraw() -> void {
  @autoreleasepool {
    if(auto pTableViewItem = _parent()) {
      if(auto pTableView = _grandparent()) {
        auto column = self().offset();
        auto row = pTableViewItem->self().offset();
        NSRect rect = [[pTableView->cocoaTableView content] frameOfCellAtColumn:column row:row];
        [[pTableView->cocoaTableView content] setNeedsDisplayInRect:rect];
      }
    }
  }
}

}

#endif