/* * Copyright 2016 (c) Anna Schumaker. */ #ifndef OCARINA_GUI_TREEVIEW_H #define OCARINA_GUI_TREEVIEW_H #include /* Called to initialize the treeview widget. */ void gui_treeview_init(); /* Called to access the treeview widget. */ static inline GtkTreeView *gui_treeview() { return GTK_TREE_VIEW(gui_builder_widget("treeview")); } #endif /* OCARINA_GUI_TREEVIEW_H */