| 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; |