| 62 void* ondropdata; |
62 void* ondropdata; |
| 63 } UiListView; |
63 } UiListView; |
| 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 void ui_listview_destroy(W32Widget *widget); |
| 67 |
68 |
| 68 void ui_listview_update(UiList *list, int row); |
69 void ui_listview_update(UiList *list, int row); |
| 69 UiListSelection ui_listview_getselection_impl(UiList *list); |
70 UiListSelection ui_listview_getselection_impl(UiList *list); |
| 70 void ui_listview_setselection_impl(UiList *list, UiListSelection selection); |
71 void ui_listview_setselection_impl(UiList *list, UiListSelection selection); |
| 71 |
72 |