mirror of https://github.com/bsnes-emu/bsnes.git
43 lines
1.4 KiB
C++
Executable File
43 lines
1.4 KiB
C++
Executable File
#if defined(Hiro_TreeView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTreeView : pWidget {
|
|
Declare(TreeView, Widget)
|
|
|
|
auto append(sTreeViewItem item) -> void;
|
|
auto remove(sTreeViewItem item) -> void;
|
|
auto setActivation(Mouse::Click activation) -> void;
|
|
auto setBackgroundColor(Color color) -> void;
|
|
auto setFocused() -> void override;
|
|
auto setForegroundColor(Color color) -> void;
|
|
auto setGeometry(Geometry geometry) -> void;
|
|
|
|
auto _activatePath(GtkTreePath* gtkPath) -> void;
|
|
auto _buttonEvent(GdkEventButton* gdkEvent) -> signed;
|
|
auto _doDataFunc(GtkTreeViewColumn* column, GtkCellRenderer* renderer, GtkTreeIter* iter) -> void;
|
|
auto _togglePath(string path) -> void;
|
|
auto _updateScrollBars() -> void;
|
|
auto _updateSelected() -> void;
|
|
auto _width(sTreeViewItem item, uint depth = 0) -> uint;
|
|
auto _widthRecursive() -> uint;
|
|
|
|
GtkScrolledWindow* gtkScrolledWindow = nullptr;
|
|
GtkWidget* gtkWidgetChild = nullptr;
|
|
GtkTreeStore* gtkTreeStore = nullptr;
|
|
GtkTreeModel* gtkTreeModel = nullptr;
|
|
GtkTreeSelection* gtkTreeSelection = nullptr;
|
|
GtkTreeView* gtkTreeView = nullptr;
|
|
GtkTreeViewColumn* gtkTreeViewColumn = nullptr;
|
|
GtkCellRenderer* gtkCellToggle = nullptr;
|
|
GtkCellRenderer* gtkCellPixbuf = nullptr;
|
|
GtkCellRenderer* gtkCellText = nullptr;
|
|
GtkEntry* gtkEntry = nullptr;
|
|
bool suppressActivate = false;
|
|
bool suppressChange = false;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|