ui/win32/window.h

changeset 112
c3f2f16fa4b8
parent 108
77254bd6dccb
equal deleted inserted replaced
111:81c4f73236a4 112:c3f2f16fa4b8
33 #include "../ui/window.h" 33 #include "../ui/window.h"
34 #include "../common/context.h" 34 #include "../common/context.h"
35 #include "../common/object.h" 35 #include "../common/object.h"
36 36
37 #include "toolkit.h" 37 #include "toolkit.h"
38 38 #include "container.h"
39 39
40 #ifdef __cplusplus 40 #ifdef __cplusplus
41 extern "C" { 41 extern "C" {
42 #endif 42 #endif
43 43
44 typedef struct UiWindow {
45 W32Widget widget;
46 UiObject *obj;
47 } UiWindow;
48
44 void ui_window_init(void); 49 void ui_window_init(void);
50
51 void ui_window_widget_event(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
52 void ui_window_widget_show(W32Widget *w, BOOLEAN show);
45 53
46 #ifdef __cplusplus 54 #ifdef __cplusplus
47 } 55 }
48 #endif 56 #endif
49 57

mercurial