| 30 #define CONTAINER_H |
30 #define CONTAINER_H |
| 31 |
31 |
| 32 #include "toolkit.h" |
32 #include "toolkit.h" |
| 33 #include "../common/container.h" |
33 #include "../common/container.h" |
| 34 |
34 |
| |
35 #include <cx/buffer.h> |
| |
36 |
| 35 #ifdef __cplusplus |
37 #ifdef __cplusplus |
| 36 extern "C" { |
38 extern "C" { |
| 37 #endif |
39 #endif |
| 38 |
40 |
| 39 UiContainerX* ui_widget_container(UiWidget *w); |
41 UiContainerX* ui_widget_container(UiWidget *w); |
| |
42 |
| |
43 cxmutstr ui_container_args_to_string(UiContext *ctx, UiContainerArgs *args); |
| |
44 |
| |
45 void ui_serialize_children(UiWidget *w, CxBuffer *buf); |
| |
46 |
| |
47 cxmutstr ui_container_serialize(UiWidget *w); |
| 40 |
48 |
| 41 #ifdef __cplusplus |
49 #ifdef __cplusplus |
| 42 } |
50 } |
| 43 #endif |
51 #endif |
| 44 |
52 |