mirror of https://github.com/bsnes-emu/bsnes.git
133 lines
3.0 KiB
C++
133 lines
3.0 KiB
C++
#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, items() - 1);
|
|
signal(append, item);
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::backgroundColor() const -> Color {
|
|
return state.backgroundColor;
|
|
}
|
|
|
|
auto mTreeView::checkable() const -> bool {
|
|
return state.checkable;
|
|
}
|
|
|
|
auto mTreeView::collapse() -> type& {
|
|
signal(collapse);
|
|
return *this;
|
|
}
|
|
|
|
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::expand() -> type& {
|
|
signal(expand);
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::foregroundColor() const -> Color {
|
|
return state.foregroundColor;
|
|
}
|
|
|
|
auto mTreeView::item(const string& path) const -> sTreeViewItem {
|
|
if(path.empty()) return {};
|
|
auto paths = path.split("/");
|
|
unsigned position = decimal(paths.takeFirst());
|
|
if(position >= items()) return {};
|
|
if(paths.empty()) return state.items[position];
|
|
return state.items[position]->item(paths.merge("/"));
|
|
}
|
|
|
|
auto mTreeView::items() const -> unsigned {
|
|
return state.items.size();
|
|
}
|
|
|
|
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(), items())) {
|
|
state.items[n]->adjustOffset(-1);
|
|
}
|
|
item->setParent();
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::reset() -> type& {
|
|
state.selectedPath.reset();
|
|
signal(reset);
|
|
for(auto& item : state.items) item->setParent();
|
|
state.items.reset();
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::selected() const -> sTreeViewItem {
|
|
return item(state.selectedPath);
|
|
}
|
|
|
|
auto mTreeView::setBackgroundColor(Color color) -> type& {
|
|
state.backgroundColor = color;
|
|
signal(setBackgroundColor, color);
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::setCheckable(bool checkable) -> type& {
|
|
state.checkable = checkable;
|
|
signal(setCheckable, checkable);
|
|
return *this;
|
|
}
|
|
|
|
auto mTreeView::setForegroundColor(Color color) -> type& {
|
|
state.foregroundColor = color;
|
|
signal(setForegroundColor, color);
|
|
return *this;
|
|
}
|
|
|
|
#endif
|