/GUIX-v6.4.1/common/inc/ |
D | gx_window.h | 58 UINT _gx_horizontal_list_children_position(GX_HORIZONTAL_LIST *list); 59 UINT _gx_horizontal_list_create(GX_HORIZONTAL_LIST *horizontal_list, GX_CONST GX_CHAR *name, 61 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT), 64 UINT _gx_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr); 65 VOID _gx_horizontal_list_left_wrap(GX_HORIZONTAL_LIST *list); 66 UINT _gx_horizontal_list_page_index_set(GX_HORIZONTAL_LIST *list, INT index); 67 VOID _gx_horizontal_list_right_wrap(GX_HORIZONTAL_LIST *list); 68 UINT _gx_horizontal_list_selected_index_get(GX_HORIZONTAL_LIST *horizontal_list, INT *return_index); 69 UINT _gx_horizontal_list_selected_widget_get(GX_HORIZONTAL_LIST *horizontal_list, GX_WIDGET **retur… 70 UINT _gx_horizontal_list_selected_set(GX_HORIZONTAL_LIST *horizontal_list, INT entry); [all …]
|
/GUIX-v6.4.1/test/example_internal/horizontal_list_32bpp/ |
D | horizontal_list_32bpp_specifications.h | 127 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT); 156 GX_HORIZONTAL_LIST window_horizontal_list_scroll; 158 GX_HORIZONTAL_LIST window_horizontal_list_wrap; 159 GX_HORIZONTAL_LIST window_horizontal_list; 164 GX_HORIZONTAL_LIST window_horizontal_list_1; 170 GX_HORIZONTAL_LIST window_empty_list; 185 VOID list_callback(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT);
|
D | demo_guix_horizontal_list_32bpp.c | 148 void list_callback(GX_HORIZONTAL_LIST *list, GX_WIDGET *widget, INT index) in list_callback() 174 GX_HORIZONTAL_LIST *list = &win->window_horizontal_list_scroll; in horizontal_list_children_create() 185 GX_HORIZONTAL_LIST *list = &win->window_horizontal_list_wrap; in horizontal_wrap_list_children_create()
|
D | horizontal_list_32bpp_specifications.c | 162 GX_HORIZONTAL_LIST *list = (GX_HORIZONTAL_LIST *) control_block; in gx_studio_horizontal_list_create() 669 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 717 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 765 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 789 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 813 sizeof(GX_HORIZONTAL_LIST), /* control block size */
|
/GUIX-v6.4.1/tutorials/demo_guix_horizontal_list/ |
D | demo_guix_horizontal_list_specifications.h | 107 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT); 134 GX_HORIZONTAL_LIST main_screen_horizontal_list_scroll; 136 GX_HORIZONTAL_LIST main_screen_horizontal_list_wrap; 137 GX_HORIZONTAL_LIST main_screen_horizontal_list; 157 VOID horizontal_list_col_create(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT);
|
D | demo_guix_horizontal_list.c | 182 void horizontal_list_col_create(GX_HORIZONTAL_LIST *list, GX_WIDGET *widget, INT index) in horizontal_list_col_create() 231 GX_HORIZONTAL_LIST *list = &main_screen.main_screen_horizontal_list_scroll; in horizontal_list_children_create() 245 GX_HORIZONTAL_LIST *list = &main_screen.main_screen_horizontal_list_wrap; in wrap_style_horizontal_list_children_create()
|
D | demo_guix_horizontal_list_specifications.c | 122 GX_HORIZONTAL_LIST *list = (GX_HORIZONTAL_LIST *) control_block; in gx_studio_horizontal_list_create() 512 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 536 sizeof(GX_HORIZONTAL_LIST), /* control block size */ 560 sizeof(GX_HORIZONTAL_LIST), /* control block size */
|
/GUIX-v6.4.1/common/src/ |
D | gxe_horizontal_list_create.c | 83 UINT _gxe_horizontal_list_create(GX_HORIZONTAL_LIST *horizontal_list, in _gxe_horizontal_list_create() 86 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT), in _gxe_horizontal_list_create() argument 102 if (horizontal_list_control_block_size != sizeof(GX_HORIZONTAL_LIST)) in _gxe_horizontal_list_create()
|
D | gx_horizontal_list_create.c | 88 UINT _gx_horizontal_list_create(GX_HORIZONTAL_LIST *horizontal_list, in _gx_horizontal_list_create() 91 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT), in _gx_horizontal_list_create() argument
|
D | gx_horizontal_list_scroll_info_get.c | 81 GX_HORIZONTAL_LIST *list = (GX_HORIZONTAL_LIST *)win; in _gx_horizontal_list_scroll_info_get()
|
D | gx_horizontal_list_scroll.c | 72 static VOID _gx_horizontal_list_invisible_page_scroll(GX_HORIZONTAL_LIST *list, INT num_pages) in _gx_horizontal_list_invisible_page_scroll() 193 VOID _gx_horizontal_list_scroll(GX_HORIZONTAL_LIST *list, INT amount) in _gx_horizontal_list_scroll()
|
D | gx_horizontal_list_selected_index_get.c | 74 UINT _gx_horizontal_list_selected_index_get(GX_HORIZONTAL_LIST *horizontal_list, in _gx_horizontal_list_selected_index_get()
|
D | gxe_horizontal_list_children_position.c | 78 UINT _gxe_horizontal_list_children_position(GX_HORIZONTAL_LIST *horizontal_list) in _gxe_horizontal_list_children_position()
|
D | gxe_horizontal_list_selected_index_get.c | 73 UINT _gxe_horizontal_list_selected_index_get(GX_HORIZONTAL_LIST *horizontal_list, in _gxe_horizontal_list_selected_index_get()
|
D | gxe_horizontal_list_selected_widget_get.c | 73 UINT _gxe_horizontal_list_selected_widget_get(GX_HORIZONTAL_LIST *horizontal_list, in _gxe_horizontal_list_selected_widget_get()
|
D | gxe_horizontal_list_event_process.c | 74 UINT _gxe_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr) in _gxe_horizontal_list_event_process()
|
D | gxe_horizontal_list_total_columns_set.c | 70 UINT _gxe_horizontal_list_total_columns_set(GX_HORIZONTAL_LIST *list, INT count) in _gxe_horizontal_list_total_columns_set()
|
/GUIX-v6.4.1/test/guix_test/regression_test/tests/ |
D | validation_guix_horizontal_list_scroll_with_large_value.c | 62 VOID send_drag_event_to_scroll_list(GX_HORIZONTAL_LIST *list, int distance) in send_drag_event_to_scroll_list() 84 VOID send_scroll_event_to_wrap_list(GX_HORIZONTAL_LIST *list, int distance) in send_scroll_event_to_wrap_list() 104 GX_HORIZONTAL_LIST *list = &window.window_horizontal_list_scroll; in control_thread_entry() 105 GX_HORIZONTAL_LIST *wrap_list = &window.window_horizontal_list_wrap; in control_thread_entry()
|
D | validation_guix_horizontal_list_wrap.c | 69 GX_HORIZONTAL_LIST *list = &window.window_horizontal_list_wrap; in control_thread_entry() 70 GX_HORIZONTAL_LIST *scroll_list = &window.window_horizontal_list_scroll; in control_thread_entry()
|
D | validation_guix_horizontal_list_page_index_set.c | 71 GX_HORIZONTAL_LIST *wrap_list; in control_thread_entry() 72 GX_HORIZONTAL_LIST *scroll_list; in control_thread_entry()
|
D | validation_guix_horizontal_list_selected_set.c | 92 GX_HORIZONTAL_LIST *wrap_list; in control_thread_entry() 93 GX_HORIZONTAL_LIST *scroll_list; in control_thread_entry()
|
/GUIX-v6.4.1/guix_studio/ |
D | horizontal_list_service_provider.cpp | 101 GX_HORIZONTAL_LIST *list = new GX_HORIZONTAL_LIST; in CreateNewInstance() 114 GX_HORIZONTAL_LIST *list = new GX_HORIZONTAL_LIST; in GenerateFromInfo()
|
/GUIX-v6.4.1/test/example_internal/display_resolution/ |
D | demo_display_resolution_specifications.h | 116 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT); 150 GX_HORIZONTAL_LIST MAIN_DISPLAY_main_window_horizontal_list_1; 187 GX_HORIZONTAL_LIST SECONDARY_window_horizontal_list_1;
|
/GUIX-v6.4.1/test/guix_studio_test/test_view/golden_files/ |
D | test_copy_paste_specifications.h | 208 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT); 319 GX_HORIZONTAL_LIST window_1_horizontal_list_1; 359 GX_HORIZONTAL_LIST window_horizontal_list_1; 395 VOID callback_name(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT);
|
D | generic_16bpp_specifications.h | 198 VOID (*callback)(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT); 276 GX_HORIZONTAL_LIST window_horizontal_list_1; 306 VOID callback_name(GX_HORIZONTAL_LIST *, GX_WIDGET *, INT);
|