mirror of https://github.com/bsnes-emu/bsnes.git
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
#if defined(Hiro_TableView)
|
|
|
|
namespace hiro {
|
|
|
|
auto pTableViewItem::construct() -> void {
|
|
}
|
|
|
|
auto pTableViewItem::destruct() -> void {
|
|
}
|
|
|
|
auto pTableViewItem::append(sTableViewCell cell) -> void {
|
|
@autoreleasepool {
|
|
if(auto tableView = _parent()) {
|
|
[[tableView->cocoaView content] reloadData];
|
|
}
|
|
}
|
|
}
|
|
|
|
auto pTableViewItem::remove(sTableViewCell cell) -> void {
|
|
@autoreleasepool {
|
|
if(auto tableView = _parent()) {
|
|
[[tableView->cocoaView content] reloadData];
|
|
}
|
|
}
|
|
}
|
|
|
|
auto pTableViewItem::setAlignment(Alignment alignment) -> void {
|
|
}
|
|
|
|
auto pTableViewItem::setBackgroundColor(Color color) -> void {
|
|
}
|
|
|
|
auto pTableViewItem::setFocused() -> void {
|
|
}
|
|
|
|
auto pTableViewItem::setForegroundColor(Color color) -> void {
|
|
}
|
|
|
|
auto pTableViewItem::setSelected(bool selected) -> void {
|
|
@autoreleasepool {
|
|
if(auto tableView = _parent()) {
|
|
auto lock = tableView->acquire();
|
|
auto indexSet = [[NSMutableIndexSet alloc] init];
|
|
for(auto& item : tableView->state().items) {
|
|
if(item->selected()) [indexSet addIndex:item->offset()];
|
|
}
|
|
[[tableView->cocoaView content] selectRowIndexes:indexSet byExtendingSelection:NO];
|
|
[indexSet release];
|
|
}
|
|
}
|
|
}
|
|
|
|
auto pTableViewItem::_parent() -> maybe<pTableView&> {
|
|
if(auto parent = self().parentTableView()) {
|
|
if(auto self = parent->self()) return *self;
|
|
}
|
|
return nothing;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|