ui/gtk/container.h

changeset 483
069fca2a47c2
parent 465
00735562b25b
child 485
c584149b22f0
equal deleted inserted replaced
482:5bc95a6228b0 483:069fca2a47c2
34 #include "toolkit.h" 34 #include "toolkit.h"
35 #include <string.h> 35 #include <string.h>
36 36
37 #include <cx/allocator.h> 37 #include <cx/allocator.h>
38 #include <cx/hash_map.h> 38 #include <cx/hash_map.h>
39 #include <cx/list.h>
39 40
40 #ifdef __cplusplus 41 #ifdef __cplusplus
41 extern "C" { 42 extern "C" {
42 #endif 43 #endif
43 44
125 126
126 127
127 typedef struct UiSplitPaneContainer { 128 typedef struct UiSplitPaneContainer {
128 UiContainer container; 129 UiContainer container;
129 GtkWidget *current_pane; 130 GtkWidget *current_pane;
131 CxList *children;
130 UiOrientation orientation; 132 UiOrientation orientation;
131 int pos; 133 int pos;
132 int max; 134 int max;
133 int nchildren; 135 int nchildren;
134 } UiSplitPaneContainer; 136 } UiSplitPaneContainer;

mercurial