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
|
#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();
return nothing;
}
auto pTableViewCell::_parent() -> maybe<pTableViewItem&> {
if(auto parent = self().parentTableViewItem()) {
if(auto self = parent->self()) return *self;
}
return nothing;
}
auto pTableViewCell::_redraw() -> void {
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
|