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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
#if defined(Hiro_TreeView)
auto mTreeView::allocate() -> pObject* {
return new pTreeView(*this);
}
auto mTreeView::destruct() -> void {
for(auto& item : state.items) item->destruct();
mWidget::destruct();
}
//
auto mTreeView::append(sTreeViewItem item) -> type& {
state.items.append(item);
item->setParent(this, itemCount() - 1);
signal(append, item);
return *this;
}
auto mTreeView::backgroundColor() const -> Color {
return state.backgroundColor;
}
auto mTreeView::doActivate() const -> void {
if(state.onActivate) return state.onActivate();
}
auto mTreeView::doChange() const -> void {
if(state.onChange) return state.onChange();
}
auto mTreeView::doContext() const -> void {
if(state.onContext) return state.onContext();
}
auto mTreeView::doToggle(sTreeViewItem item) const -> void {
if(state.onToggle) return state.onToggle(item);
}
auto mTreeView::foregroundColor() const -> Color {
return state.foregroundColor;
}
auto mTreeView::item(const string& path) const -> TreeViewItem {
if(!path) return {};
auto paths = path.split("/");
unsigned position = paths.takeLeft().natural();
if(position >= itemCount()) return {};
if(!paths) return state.items[position];
return state.items[position]->item(paths.merge("/"));
}
auto mTreeView::itemCount() const -> unsigned {
return state.items.size();
}
auto mTreeView::items() const -> vector<TreeViewItem> {
vector<TreeViewItem> items;
for(auto& item : state.items) items.append(item);
return items;
}
auto mTreeView::onActivate(const function<void ()>& callback) -> type& {
state.onActivate = callback;
return *this;
}
auto mTreeView::onChange(const function<void ()>& callback) -> type& {
state.onChange = callback;
return *this;
}
auto mTreeView::onContext(const function<void ()>& callback) -> type& {
state.onContext = callback;
return *this;
}
auto mTreeView::onToggle(const function<void (sTreeViewItem)>& callback) -> type& {
state.onToggle = callback;
return *this;
}
auto mTreeView::remove(sTreeViewItem item) -> type& {
signal(remove, item);
state.items.remove(item->offset());
for(auto n : range(item->offset(), itemCount())) {
state.items[n]->adjustOffset(-1);
}
item->setParent();
return *this;
}
auto mTreeView::reset() -> type& {
state.selectedPath.reset();
for(auto n : rrange(state.items)) remove(state.items[n]);
return *this;
}
auto mTreeView::selected() const -> TreeViewItem {
return item(state.selectedPath);
}
auto mTreeView::setBackgroundColor(Color color) -> type& {
state.backgroundColor = color;
signal(setBackgroundColor, color);
return *this;
}
auto mTreeView::setForegroundColor(Color color) -> type& {
state.foregroundColor = color;
signal(setForegroundColor, color);
return *this;
}
auto mTreeView::setParent(mObject* object, signed offset) -> type& {
for(auto n : rrange(state.items)) state.items[n]->destruct();
mObject::setParent(object, offset);
for(auto& item : state.items) item->setParent(this, item->offset());
return *this;
}
#endif
|