/* * Copyright 2015 (c) Anna Schumaker. */ #ifndef OCARINA_GUI_SIDEBAR_H #define OCARINA_GUI_SIDEBAR_H #include /* Called to initialize the sidebar. */ void gui_sidebar_init(); /* Called to get the sidebar widget. */ static inline GtkPaned *gui_sidebar() { return GTK_PANED(gui_builder_widget("sidebar")); } #endif /* OCARINA_GUI_SIDEBAR_H */