| 355 .show = w32_widget_default_show, |
355 .show = w32_widget_default_show, |
| 356 .get_preferred_size = ui_dropdown_get_preferred_size, |
356 .get_preferred_size = ui_dropdown_get_preferred_size, |
| 357 .destroy = w32_widget_default_destroy |
357 .destroy = w32_widget_default_destroy |
| 358 }; |
358 }; |
| 359 |
359 |
| 360 UIWIDGET ui_combobox_create(UiObject *obj, UiListArgs *args) { |
360 UIWIDGET ui_dropdown_create(UiObject *obj, UiListArgs *args) { |
| 361 HINSTANCE hInstance = GetModuleHandle(NULL); |
361 HINSTANCE hInstance = GetModuleHandle(NULL); |
| 362 UiContainerPrivate *container = ui_obj_container(obj); |
362 UiContainerPrivate *container = ui_obj_container(obj); |
| 363 HWND parent = ui_container_get_parent(container); |
363 HWND parent = ui_container_get_parent(container); |
| 364 UiLayout layout = UI_ARGS2LAYOUT(args); |
364 UiLayout layout = UI_ARGS2LAYOUT(args); |
| 365 |
365 |