| 64 |
64 |
| 65 int ui_listview_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
65 int ui_listview_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
| 66 W32Size ui_listview_get_preferred_size(W32Widget *widget); |
66 W32Size ui_listview_get_preferred_size(W32Widget *widget); |
| 67 |
67 |
| 68 void ui_listview_update(UiList *list, int row); |
68 void ui_listview_update(UiList *list, int row); |
| 69 UiListSelection ui_listview_getselection(UiList *list); |
69 UiListSelection ui_listview_getselection_impl(UiList *list); |
| 70 void ui_listview_setselection(UiList *list, UiListSelection selection); |
70 void ui_listview_setselection_impl(UiList *list, UiListSelection selection); |
| 71 |
71 |
| 72 int ui_dropdown_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
72 int ui_dropdown_eventproc(W32Widget *widget, HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam); |
| 73 W32Size ui_dropdown_get_preferred_size(W32Widget *widget); |
73 W32Size ui_dropdown_get_preferred_size(W32Widget *widget); |
| 74 |
74 |
| 75 void ui_dropdown_update(UiList *list, int row); |
75 void ui_dropdown_update(UiList *list, int row); |
| 76 UiListSelection ui_dropdown_getselection(UiList *list); |
76 UiListSelection ui_dropdown_getselection_impl(UiList *list); |
| 77 void ui_dropdown_setselection(UiList *list, UiListSelection selection); |
77 void ui_dropdown_setselection_impl(UiList *list, UiListSelection selection); |
| 78 |
78 |
| 79 #ifdef __cplusplus |
79 #ifdef __cplusplus |
| 80 } |
80 } |
| 81 #endif |
81 #endif |
| 82 |
82 |