Home
last modified time | relevance | path

Searched refs:list (Results 1 – 25 of 271) sorted by relevance

1234567891011

/GUIX-v6.2.1/common/src/
Dgx_vertical_list_event_process.c94 UINT _gx_vertical_list_event_process(GX_VERTICAL_LIST *list, GX_EVENT *event_ptr) in _gx_vertical_list_event_process() argument
96 GX_WIDGET *widget = (GX_WIDGET *)list; in _gx_vertical_list_event_process()
117 status = _gx_window_event_process((GX_WINDOW *)list, event_ptr); in _gx_vertical_list_event_process()
120 if (!list -> gx_vertical_list_child_count) in _gx_vertical_list_event_process()
122 _gx_vertical_list_children_position(list); in _gx_vertical_list_event_process()
126 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_VERTICAL_SCROLL, &pScroll); in _gx_vertical_list_event_process()
135 if (list -> gx_vertical_list_selected < list -> gx_vertical_list_total_rows - 1) in _gx_vertical_list_event_process()
137 _gx_vertical_list_selected_set(list, list -> gx_vertical_list_selected + 1); in _gx_vertical_list_event_process()
142 if (list -> gx_vertical_list_selected > 0) in _gx_vertical_list_event_process()
144 _gx_vertical_list_selected_set(list, list -> gx_vertical_list_selected - 1); in _gx_vertical_list_event_process()
[all …]
Dgx_horizontal_list_event_process.c98 UINT _gx_horizontal_list_event_process(GX_HORIZONTAL_LIST *list, GX_EVENT *event_ptr) in _gx_horizontal_list_event_process() argument
101 GX_WIDGET *widget = (GX_WIDGET *)list; in _gx_horizontal_list_event_process()
122 status = _gx_window_event_process((GX_WINDOW *)list, event_ptr); in _gx_horizontal_list_event_process()
124 if (!list -> gx_horizontal_list_child_count) in _gx_horizontal_list_event_process()
126 _gx_horizontal_list_children_position(list); in _gx_horizontal_list_event_process()
129 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_HORIZONTAL_SCROLL, &pScroll); in _gx_horizontal_list_event_process()
138 if (list -> gx_horizontal_list_selected < list -> gx_horizontal_list_total_columns - 1) in _gx_horizontal_list_event_process()
140 _gx_horizontal_list_selected_set(list, list -> gx_horizontal_list_selected + 1); in _gx_horizontal_list_event_process()
145 if (list -> gx_horizontal_list_selected > 0) in _gx_horizontal_list_event_process()
147 _gx_horizontal_list_selected_set(list, list -> gx_horizontal_list_selected - 1); in _gx_horizontal_list_event_process()
[all …]
Dgx_vertical_list_scroll.c72 static VOID _gx_vertical_list_invisible_page_scroll(GX_VERTICAL_LIST *list, INT num_pages) in _gx_vertical_list_invisible_page_scroll() argument
76 if (!(list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_vertical_list_invisible_page_scroll()
84 …maximum_scroll_pages = (list -> gx_vertical_list_total_rows - list -> gx_vertical_list_top_index -… in _gx_vertical_list_invisible_page_scroll()
85 maximum_scroll_pages /= list -> gx_vertical_list_child_count; in _gx_vertical_list_invisible_page_scroll()
102 … maximum_scroll_pages = list -> gx_vertical_list_top_index / list -> gx_vertical_list_child_count; in _gx_vertical_list_invisible_page_scroll()
121 list -> gx_vertical_list_top_index -= num_pages * list -> gx_vertical_list_child_count; in _gx_vertical_list_invisible_page_scroll()
123 if (list -> gx_widget_style & GX_STYLE_WRAP) in _gx_vertical_list_invisible_page_scroll()
129 while (list -> gx_vertical_list_top_index >= list -> gx_vertical_list_total_rows) in _gx_vertical_list_invisible_page_scroll()
131 list -> gx_vertical_list_top_index -= list -> gx_vertical_list_total_rows; in _gx_vertical_list_invisible_page_scroll()
136 while (list -> gx_vertical_list_top_index < 0) in _gx_vertical_list_invisible_page_scroll()
[all …]
Dgx_horizontal_list_scroll.c72 static VOID _gx_horizontal_list_invisible_page_scroll(GX_HORIZONTAL_LIST *list, INT num_pages) in _gx_horizontal_list_invisible_page_scroll() argument
76 if (!(list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_horizontal_list_invisible_page_scroll()
84 …maximum_scroll_pages = (list -> gx_horizontal_list_total_columns - list -> gx_horizontal_list_top_… in _gx_horizontal_list_invisible_page_scroll()
85 maximum_scroll_pages /= list -> gx_horizontal_list_child_count; in _gx_horizontal_list_invisible_page_scroll()
102 …maximum_scroll_pages = list -> gx_horizontal_list_top_index / list -> gx_horizontal_list_child_cou… in _gx_horizontal_list_invisible_page_scroll()
121 list -> gx_horizontal_list_top_index -= num_pages * list -> gx_horizontal_list_child_count; in _gx_horizontal_list_invisible_page_scroll()
123 if (list -> gx_widget_style & GX_STYLE_WRAP) in _gx_horizontal_list_invisible_page_scroll()
129 … while (list -> gx_horizontal_list_top_index >= list -> gx_horizontal_list_total_columns) in _gx_horizontal_list_invisible_page_scroll()
131list -> gx_horizontal_list_top_index -= list -> gx_horizontal_list_total_columns; in _gx_horizontal_list_invisible_page_scroll()
136 while (list -> gx_horizontal_list_top_index < 0) in _gx_horizontal_list_invisible_page_scroll()
[all …]
Dgx_horizontal_list_total_columns_set.c81 UINT _gx_horizontal_list_total_columns_set(GX_HORIZONTAL_LIST *list, INT count) in _gx_horizontal_list_total_columns_set() argument
91 list -> gx_horizontal_list_total_columns = count; in _gx_horizontal_list_total_columns_set()
94 if (list -> gx_horizontal_list_selected < 0) in _gx_horizontal_list_total_columns_set()
96 list -> gx_horizontal_list_selected = 0; in _gx_horizontal_list_total_columns_set()
99 if (list -> gx_horizontal_list_selected > count - 1) in _gx_horizontal_list_total_columns_set()
101 list -> gx_horizontal_list_selected = count - 1; in _gx_horizontal_list_total_columns_set()
105 page_index = list -> gx_horizontal_list_top_index; in _gx_horizontal_list_total_columns_set()
107 test = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_total_columns_set()
109 …while (test && (test -> gx_widget_size.gx_rectangle_right <= list -> gx_widget_size.gx_rectangle_l… in _gx_horizontal_list_total_columns_set()
116 if (page_index + list -> gx_horizontal_list_visible_columns > count) in _gx_horizontal_list_total_columns_set()
[all …]
Dgx_vertical_list_total_rows_set.c82 UINT _gx_vertical_list_total_rows_set(GX_VERTICAL_LIST *list, INT count) in _gx_vertical_list_total_rows_set() argument
92 list -> gx_vertical_list_total_rows = count; in _gx_vertical_list_total_rows_set()
95 if (list -> gx_vertical_list_selected < 0) in _gx_vertical_list_total_rows_set()
97 list -> gx_vertical_list_selected = 0; in _gx_vertical_list_total_rows_set()
100 if (list -> gx_vertical_list_selected > count - 1) in _gx_vertical_list_total_rows_set()
102 list -> gx_vertical_list_selected = count - 1; in _gx_vertical_list_total_rows_set()
106 page_index = list -> gx_vertical_list_top_index; in _gx_vertical_list_total_rows_set()
108 test = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_total_rows_set()
110 …while (test && (test -> gx_widget_size.gx_rectangle_bottom <= list -> gx_widget_size.gx_rectangle_… in _gx_vertical_list_total_rows_set()
117 if (page_index + list -> gx_vertical_list_visible_rows > count) in _gx_vertical_list_total_rows_set()
[all …]
Dgx_horizontal_list_left_wrap.c76 VOID _gx_horizontal_list_left_wrap(GX_HORIZONTAL_LIST *list) in _gx_horizontal_list_left_wrap() argument
88 …if ((list -> gx_horizontal_list_top_index + list -> gx_horizontal_list_child_count < list -> gx_ho… in _gx_horizontal_list_left_wrap()
89 (list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_horizontal_list_left_wrap()
94 test = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_left_wrap()
97 … if (test -> gx_widget_size.gx_rectangle_right < list -> gx_widget_size.gx_rectangle_left) in _gx_horizontal_list_left_wrap()
102 check = _gx_widget_last_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_left_wrap()
113 … index = list -> gx_horizontal_list_top_index + list -> gx_horizontal_list_child_count; in _gx_horizontal_list_left_wrap()
116 if (index >= list -> gx_horizontal_list_total_columns) in _gx_horizontal_list_left_wrap()
118 index -= list -> gx_horizontal_list_total_columns; in _gx_horizontal_list_left_wrap()
121 list -> gx_horizontal_list_callback(list, test, index); in _gx_horizontal_list_left_wrap()
[all …]
Dgx_vertical_list_up_wrap.c77 VOID _gx_vertical_list_up_wrap(GX_VERTICAL_LIST *list) in _gx_vertical_list_up_wrap() argument
89 …if ((list -> gx_vertical_list_top_index + list -> gx_vertical_list_child_count < list -> gx_vertic… in _gx_vertical_list_up_wrap()
90 (list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_vertical_list_up_wrap()
95 test = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_up_wrap()
98 … if (test -> gx_widget_size.gx_rectangle_bottom < list -> gx_widget_size.gx_rectangle_top) in _gx_vertical_list_up_wrap()
102 check = _gx_widget_last_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_up_wrap()
110 … index = list -> gx_vertical_list_top_index + list -> gx_vertical_list_child_count; in _gx_vertical_list_up_wrap()
113 if (index >= list -> gx_vertical_list_total_rows) in _gx_vertical_list_up_wrap()
115 index -= list -> gx_vertical_list_total_rows; in _gx_vertical_list_up_wrap()
118 list -> gx_vertical_list_callback(list, test, index); in _gx_vertical_list_up_wrap()
[all …]
Dgx_vertical_list_slide_back_check.c75 VOID _gx_vertical_list_slide_back_check(GX_VERTICAL_LIST *list) in _gx_vertical_list_slide_back_check() argument
80 if (list -> gx_vertical_list_child_count <= 0) in _gx_vertical_list_slide_back_check()
86 page_index = list -> gx_vertical_list_top_index; in _gx_vertical_list_slide_back_check()
88 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_slide_back_check()
90 …while (child && (child -> gx_widget_size.gx_rectangle_top <= list -> gx_widget_size.gx_rectangle_t… in _gx_vertical_list_slide_back_check()
96 list -> gx_vertical_list_snap_back_distance = 0; in _gx_vertical_list_slide_back_check()
100 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_slide_back_check()
101 …if (child && (child -> gx_widget_size.gx_rectangle_top > list -> gx_window_client.gx_rectangle_top… in _gx_vertical_list_slide_back_check()
103list -> gx_vertical_list_snap_back_distance = (GX_VALUE)(list -> gx_window_client.gx_rectangle_top… in _gx_vertical_list_slide_back_check()
105 _gx_system_timer_start((GX_WIDGET *)list, GX_SNAP_TIMER, 1, 1); in _gx_vertical_list_slide_back_check()
[all …]
Dgx_horizontal_list_slide_back_check.c79 VOID _gx_horizontal_list_slide_back_check(GX_HORIZONTAL_LIST *list) in _gx_horizontal_list_slide_back_check() argument
84 if (list -> gx_horizontal_list_child_count <= 0) in _gx_horizontal_list_slide_back_check()
90 page_index = list -> gx_horizontal_list_top_index; in _gx_horizontal_list_slide_back_check()
92 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_slide_back_check()
94 …while (child && (child -> gx_widget_size.gx_rectangle_left <= list -> gx_widget_size.gx_rectangle_… in _gx_horizontal_list_slide_back_check()
100 list -> gx_horizontal_list_snap_back_distance = 0; in _gx_horizontal_list_slide_back_check()
104 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_slide_back_check()
105 …if (child && (child -> gx_widget_size.gx_rectangle_left > list -> gx_window_client.gx_rectangle_le… in _gx_horizontal_list_slide_back_check()
107list -> gx_horizontal_list_snap_back_distance = (GX_VALUE)(list -> gx_window_client.gx_rectangle_l… in _gx_horizontal_list_slide_back_check()
109 _gx_system_timer_start((GX_WIDGET *)list, GX_SNAP_TIMER, 1, 1); in _gx_horizontal_list_slide_back_check()
[all …]
Dgx_horizontal_list_right_wrap.c76 VOID _gx_horizontal_list_right_wrap(GX_HORIZONTAL_LIST *list) in _gx_horizontal_list_right_wrap() argument
87 if ((list -> gx_horizontal_list_top_index > 0) || in _gx_horizontal_list_right_wrap()
88 (list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_horizontal_list_right_wrap()
91 test = _gx_widget_last_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_right_wrap()
95 … if (test -> gx_widget_size.gx_rectangle_left > list -> gx_widget_size.gx_rectangle_right) in _gx_horizontal_list_right_wrap()
99 list -> gx_horizontal_list_top_index--; in _gx_horizontal_list_right_wrap()
102 if (list -> gx_horizontal_list_top_index < 0) in _gx_horizontal_list_right_wrap()
104list -> gx_horizontal_list_top_index = list -> gx_horizontal_list_total_columns - 1; in _gx_horizontal_list_right_wrap()
107 check = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_right_wrap()
118list -> gx_horizontal_list_callback(list, test, list -> gx_horizontal_list_top_index); in _gx_horizontal_list_right_wrap()
[all …]
Dgx_vertical_list_down_wrap.c77 VOID _gx_vertical_list_down_wrap(GX_VERTICAL_LIST *list) in _gx_vertical_list_down_wrap() argument
88 if ((list -> gx_vertical_list_top_index > 0) || in _gx_vertical_list_down_wrap()
89 (list -> gx_widget_style & GX_STYLE_WRAP)) in _gx_vertical_list_down_wrap()
92 test = _gx_widget_last_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_down_wrap()
96 … if ((test -> gx_widget_size.gx_rectangle_top > list -> gx_widget_size.gx_rectangle_bottom)) in _gx_vertical_list_down_wrap()
100 list -> gx_vertical_list_top_index--; in _gx_vertical_list_down_wrap()
103 if (list -> gx_vertical_list_top_index < 0) in _gx_vertical_list_down_wrap()
105list -> gx_vertical_list_top_index = list -> gx_vertical_list_total_rows - 1; in _gx_vertical_list_down_wrap()
108 check = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_down_wrap()
117list -> gx_vertical_list_callback(list, test, list -> gx_vertical_list_top_index); in _gx_vertical_list_down_wrap()
[all …]
Dgx_vertical_list_scroll_info_get.c77 VOID _gx_vertical_list_scroll_info_get(GX_VERTICAL_LIST *list, ULONG style, GX_SCROLL_INFO *info) in _gx_vertical_list_scroll_info_get() argument
85 if (list -> gx_vertical_list_callback) in _gx_vertical_list_scroll_info_get()
88 …info -> gx_scroll_maximum = (list->gx_vertical_list_total_rows * list -> gx_vertical_list_child_he… in _gx_vertical_list_scroll_info_get()
94 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_scroll_info_get()
106 …info -> gx_scroll_visible = (GX_VALUE)(list -> gx_window_client.gx_rectangle_bottom - list -> gx_w… in _gx_vertical_list_scroll_info_get()
116 value = list -> gx_vertical_list_top_index * list -> gx_vertical_list_child_height; in _gx_vertical_list_scroll_info_get()
118 if (list -> gx_vertical_list_top_index >= 0) in _gx_vertical_list_scroll_info_get()
120 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_scroll_info_get()
124 … value += list -> gx_window_client.gx_rectangle_top - child -> gx_widget_size.gx_rectangle_top; in _gx_vertical_list_scroll_info_get()
141 info -> gx_scroll_increment = list -> gx_vertical_list_child_height / 2; in _gx_vertical_list_scroll_info_get()
Dgx_horizontal_list_page_index_set.c74 UINT _gx_horizontal_list_page_index_set(GX_HORIZONTAL_LIST *list, INT index) in _gx_horizontal_list_page_index_set() argument
80 if ((list -> gx_horizontal_list_total_columns > 0) && in _gx_horizontal_list_page_index_set()
81 …((index <= list -> gx_horizontal_list_total_columns - list -> gx_horizontal_list_visible_columns) … in _gx_horizontal_list_page_index_set()
83 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_horizontal_list_page_index_set()
89 …scroll_value += (index - list -> gx_horizontal_list_top_index) * list -> gx_horizontal_list_child_… in _gx_horizontal_list_page_index_set()
90 scroll_value = list -> gx_window_client.gx_rectangle_left - scroll_value; in _gx_horizontal_list_page_index_set()
93 _gx_horizontal_list_scroll(list, scroll_value); in _gx_horizontal_list_page_index_set()
95 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_HORIZONTAL_SCROLL, &pScroll); in _gx_horizontal_list_page_index_set()
Dgx_vertical_list_page_index_set.c71 UINT _gx_vertical_list_page_index_set(GX_VERTICAL_LIST *list, INT index) in _gx_vertical_list_page_index_set() argument
77 if ((list -> gx_vertical_list_total_rows > 0) && in _gx_vertical_list_page_index_set()
78 …((index <= list -> gx_vertical_list_total_rows - list -> gx_vertical_list_visible_rows) || (list -… in _gx_vertical_list_page_index_set()
80 child = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_vertical_list_page_index_set()
85 …scroll_value += (index - list -> gx_vertical_list_top_index) * list -> gx_vertical_list_child_heig… in _gx_vertical_list_page_index_set()
86 scroll_value = list -> gx_window_client.gx_rectangle_top - scroll_value; in _gx_vertical_list_page_index_set()
89 _gx_vertical_list_scroll(list, scroll_value); in _gx_vertical_list_page_index_set()
91 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_VERTICAL_SCROLL, &pScroll); in _gx_vertical_list_page_index_set()
Dgx_horizontal_list_scroll_info_get.c81 GX_HORIZONTAL_LIST *list = (GX_HORIZONTAL_LIST *)win; in _gx_horizontal_list_scroll_info_get() local
87 if (list -> gx_horizontal_list_callback) in _gx_horizontal_list_scroll_info_get()
90 …info -> gx_scroll_maximum = (list -> gx_horizontal_list_total_columns * list -> gx_horizontal_list… in _gx_horizontal_list_scroll_info_get()
96 child = _gx_widget_first_client_child_get((GX_WIDGET*)list); in _gx_horizontal_list_scroll_info_get()
105 …info -> gx_scroll_visible = (GX_VALUE)(list -> gx_window_client.gx_rectangle_right - list -> gx_wi… in _gx_horizontal_list_scroll_info_get()
115 value = list -> gx_horizontal_list_top_index * list -> gx_horizontal_list_child_width; in _gx_horizontal_list_scroll_info_get()
117 if (list -> gx_horizontal_list_top_index >= 0) in _gx_horizontal_list_scroll_info_get()
140 info -> gx_scroll_increment = list -> gx_horizontal_list_child_width / 2; in _gx_horizontal_list_scroll_info_get()
Dgx_vertical_list_selected_visible.c75 VOID _gx_vertical_list_selected_visible(GX_VERTICAL_LIST *list, GX_WIDGET *child) in _gx_vertical_list_selected_visible() argument
80 if (child -> gx_widget_size.gx_rectangle_top < list -> gx_window_client.gx_rectangle_top) in _gx_vertical_list_selected_visible()
83 …_gx_vertical_list_scroll(list, list -> gx_window_client.gx_rectangle_top - child -> gx_widget_size… in _gx_vertical_list_selected_visible()
88 … if (child -> gx_widget_size.gx_rectangle_bottom > list -> gx_window_client.gx_rectangle_bottom) in _gx_vertical_list_selected_visible()
91 …_gx_vertical_list_scroll(list, list -> gx_window_client.gx_rectangle_bottom - child -> gx_widget_s… in _gx_vertical_list_selected_visible()
98 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_VERTICAL_SCROLL, &pScroll); in _gx_vertical_list_selected_visible()
Dgx_horizontal_list_selected_visible.c74 VOID _gx_horizontal_list_selected_visible(GX_HORIZONTAL_LIST *list, GX_WIDGET *child) in _gx_horizontal_list_selected_visible() argument
79 if (child -> gx_widget_size.gx_rectangle_left < list -> gx_window_client.gx_rectangle_left) in _gx_horizontal_list_selected_visible()
82 …_gx_horizontal_list_scroll(list, list -> gx_window_client.gx_rectangle_left - child -> gx_widget_s… in _gx_horizontal_list_selected_visible()
87 … if (child -> gx_widget_size.gx_rectangle_right > list -> gx_window_client.gx_rectangle_right) in _gx_horizontal_list_selected_visible()
90 …_gx_horizontal_list_scroll(list, list -> gx_window_client.gx_rectangle_right - child -> gx_widget_… in _gx_horizontal_list_selected_visible()
97 _gx_window_scrollbar_find((GX_WINDOW *)list, GX_TYPE_HORIZONTAL_SCROLL, &pScroll); in _gx_horizontal_list_selected_visible()
Dgx_drop_list_draw.c193 GX_VERTICAL_LIST *list = &drop_list -> gx_drop_list_popup.gx_popup_list_list; in _gx_drop_list_draw() local
204 _gx_vertical_list_selected_widget_get(list, &selected); in _gx_drop_list_draw()
206 if (!selected && list -> gx_vertical_list_callback) in _gx_drop_list_draw()
213 _gx_vertical_list_selected_index_get(list, &selected_index); in _gx_drop_list_draw()
215 if((selected_index >= 0) && (selected_index < list -> gx_vertical_list_total_rows)) in _gx_drop_list_draw()
218 selected = _gx_widget_first_client_child_get((GX_WIDGET *)list); in _gx_drop_list_draw()
221 list -> gx_vertical_list_callback(list, selected, selected_index); in _gx_drop_list_draw()
280 list -> gx_vertical_list_callback(list, selected, list -> gx_vertical_list_top_index); in _gx_drop_list_draw()
Dgx_accordion_menu_position.c82 GX_MENU_LIST *list; in _gx_accordion_menu_one_level_position() local
101 list = &((GX_MENU *)child) -> gx_menu_list; in _gx_accordion_menu_one_level_position()
105 if (!accordion -> gx_accordion_menu_expand_item && list -> gx_widget_first_child) in _gx_accordion_menu_one_level_position()
112 _gx_widget_detach((GX_WIDGET *)list); in _gx_accordion_menu_one_level_position()
114list -> gx_widget_size.gx_rectangle_bottom = (GX_VALUE)(list -> gx_widget_size.gx_rectangle_top - … in _gx_accordion_menu_one_level_position()
125 if (list -> gx_widget_parent) in _gx_accordion_menu_one_level_position()
127 _gx_widget_shift((GX_WIDGET *)list, in _gx_accordion_menu_one_level_position()
128 … (GX_VALUE)(size.gx_rectangle_left - list -> gx_widget_size.gx_rectangle_left), in _gx_accordion_menu_one_level_position()
129 … (GX_VALUE)(size.gx_rectangle_bottom + 1 - list -> gx_widget_size.gx_rectangle_top), GX_FALSE); in _gx_accordion_menu_one_level_position()
131 bottom = list -> gx_widget_size.gx_rectangle_bottom; in _gx_accordion_menu_one_level_position()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_vertical_list_wrap.c69 GX_VERTICAL_LIST *list = &window.window_vertical_list_wrap; in control_thread_entry() local
75 my_event.gx_event_target = (GX_WIDGET *)list; in control_thread_entry()
77 gx_vertical_list_total_rows_set(list, 0); in control_thread_entry()
78 list->gx_vertical_list_total_rows = 20; in control_thread_entry()
106 gx_widget_hide(list); in control_thread_entry()
107 gx_vertical_list_total_rows_set(list, 0); in control_thread_entry()
109 list->gx_vertical_list_child_count = 2; in control_thread_entry()
110 gx_vertical_list_total_rows_set(list, 0); in control_thread_entry()
112 list->gx_vertical_list_top_index = 1; in control_thread_entry()
113 gx_vertical_list_total_rows_set(list, 7); in control_thread_entry()
[all …]
Dvalidation_guix_horizontal_list_wrap.c69 GX_HORIZONTAL_LIST *list = &window.window_horizontal_list_wrap; in control_thread_entry() local
75 my_event.gx_event_target = (GX_WIDGET *)list; in control_thread_entry()
77 gx_horizontal_list_total_columns_set(list, 0); in control_thread_entry()
78 list->gx_horizontal_list_total_columns = 20; in control_thread_entry()
106 gx_widget_hide(list); in control_thread_entry()
107 gx_horizontal_list_total_columns_set(list, 0); in control_thread_entry()
109 list->gx_horizontal_list_child_count = 2; in control_thread_entry()
110 gx_horizontal_list_total_columns_set(list, 0); in control_thread_entry()
112 list->gx_horizontal_list_top_index = 1; in control_thread_entry()
113 gx_horizontal_list_total_columns_set(list, 7); in control_thread_entry()
[all …]
/GUIX-v6.2.1/common/inc/
Dgx_window.h58 UINT _gx_horizontal_list_children_position(GX_HORIZONTAL_LIST *list);
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);
71 VOID _gx_horizontal_list_selected_visible(GX_HORIZONTAL_LIST *list, GX_WIDGET *child);
72 VOID _gx_horizontal_list_scroll(GX_HORIZONTAL_LIST *list, INT amount);
74 VOID _gx_horizontal_list_slide_back_check(GX_HORIZONTAL_LIST *list);
75 UINT _gx_horizontal_list_total_columns_set(GX_HORIZONTAL_LIST *list, INT count);
79 UINT _gx_vertical_list_children_position(GX_VERTICAL_LIST *list);
[all …]
/GUIX-v6.2.1/guix_studio/
Ddrop_list_service_provider.cpp105 GX_DROP_LIST *list = new GX_DROP_LIST; in CreateNewInstance() local
106 gx_drop_list_create(list, "drop_list", parent, in CreateNewInstance()
108 widget_info *info = InitWidgetInfo((GX_WIDGET *) list); in CreateNewInstance()
111 info->size = list -> gx_widget_size; in CreateNewInstance()
124 GX_DROP_LIST *list = new GX_DROP_LIST; in GenerateFromInfo() local
125 gx_drop_list_create(list, in GenerateFromInfo()
133 gx_widget_fill_color_set(list, in GenerateFromInfo()
140 gx_drop_list_pixelmap_set(list, info->pixelmap_id[DROP_LIST_PIXELMAP_INDEX]); in GenerateFromInfo()
151 …gx_window_wallpaper_set((GX_WINDOW *)&list->gx_drop_list_popup.gx_popup_list_list, info->pixelmap_… in GenerateFromInfo()
154 return ((GX_WIDGET *) list); in GenerateFromInfo()
[all …]
/GUIX-v6.2.1/guix_studio/libs/freetype/include/freetype/
Dftlist.h95 FT_List_Find( FT_List list,
114 FT_List_Add( FT_List list,
133 FT_List_Insert( FT_List list,
155 FT_List_Remove( FT_List list,
174 FT_List_Up( FT_List list,
223 FT_List_Iterate( FT_List list,
283 FT_List_Finalize( FT_List list,

1234567891011