132 CxList *children; |
132 CxList *children; |
133 UiOrientation orientation; |
133 UiOrientation orientation; |
134 int pos; |
134 int pos; |
135 int max; |
135 int max; |
136 int nchildren; |
136 int nchildren; |
|
137 int initial_position; |
137 } UiSplitPaneContainer; |
138 } UiSplitPaneContainer; |
138 |
139 |
139 typedef struct UiHeaderbarContainer { |
140 typedef struct UiHeaderbarContainer { |
140 UiContainer container; |
141 UiContainer container; |
141 GtkWidget *centerbox; |
142 GtkWidget *centerbox; |
198 void ui_scrolledwindow_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
199 void ui_scrolledwindow_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
199 |
200 |
200 UiContainer* ui_tabview_container(UiObject *obj, GtkWidget *tabview); |
201 UiContainer* ui_tabview_container(UiObject *obj, GtkWidget *tabview); |
201 void ui_tabview_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
202 void ui_tabview_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
202 |
203 |
203 UiContainer* ui_splitpane_container(UiObject *obj, GtkWidget *pane, UiOrientation orientation, int max); |
204 UiContainer* ui_splitpane_container(UiObject *obj, GtkWidget *pane, UiOrientation orientation, int max, int init); |
204 void ui_splitpane_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
205 void ui_splitpane_container_add(UiContainer *ct, GtkWidget *widget, UiBool fill); |
205 |
206 |
206 |
207 |
207 UiGtkTabView* ui_widget_get_tabview_data(UIWIDGET tabview); |
208 UiGtkTabView* ui_widget_get_tabview_data(UIWIDGET tabview); |
208 |
209 |