Home
last modified time | relevance | path

Searched refs:height (Results 1 – 25 of 232) sorted by relevance

12345678910

/GUIX-v6.2.1/test/guix_test/regression_test/utility/
Dgx_show_canvas.c20 int height = 0; variable
29 static void win32_16srgb_bitmap_header_create(int width, int height) in win32_16srgb_bitmap_header_create() argument
39 bmp_info.bmiHeader.biHeight = height; in win32_16srgb_bitmap_header_create()
43 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_16srgb_bitmap_header_create()
57 static void win32_565bgr_bitmap_header_create(int width, int height) in win32_565bgr_bitmap_header_create() argument
67 bmp_info.bmiHeader.biHeight = height; in win32_565bgr_bitmap_header_create()
71 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_565bgr_bitmap_header_create()
85 static void win32_1555xrgb_bitmap_header_create(int width, int height) in win32_1555xrgb_bitmap_header_create() argument
95 bmp_info.bmiHeader.biHeight = height; in win32_1555xrgb_bitmap_header_create()
99 bmp_info.bmiHeader.biSizeImage = width * height * 2; in win32_1555xrgb_bitmap_header_create()
[all …]
/GUIX-v6.2.1/common/src/
Dgx_utility_1bpp_pixelmap_rotate.c95 INT width, height; in _gx_utility_1bpp_pixelmap_rotate() local
122 height = (yres << 1); in _gx_utility_1bpp_pixelmap_rotate()
145 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_1bpp_pixelmap_rotate()
161 destination -> gx_pixelmap_data_size = (UINT)(putstride * height) * sizeof(GX_UBYTE); in _gx_utility_1bpp_pixelmap_rotate()
174 for (y = 0; y < height; y++) in _gx_utility_1bpp_pixelmap_rotate()
288 INT width, height; in _gx_utility_1bpp_pixelmap_simple_raw_rotate() local
298 height = src -> gx_pixelmap_width; in _gx_utility_1bpp_pixelmap_simple_raw_rotate()
302 GX_SWAP_VALS(width, height); in _gx_utility_1bpp_pixelmap_simple_raw_rotate()
309 destination -> gx_pixelmap_data_size = (UINT)(putstride * height) * sizeof(GX_UBYTE); in _gx_utility_1bpp_pixelmap_simple_raw_rotate()
321 for (y = 0; y < height; y++) in _gx_utility_1bpp_pixelmap_simple_raw_rotate()
[all …]
Dgx_utility_4bpp_pixelmap_rotate.c95 INT width, height; in _gx_utility_4bpp_pixelmap_rotate() local
127 height = (yres << 1); in _gx_utility_4bpp_pixelmap_rotate()
150 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_4bpp_pixelmap_rotate()
164 destination -> gx_pixelmap_data_size = (UINT)(putstride * height) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_rotate()
176 destination -> gx_pixelmap_aux_data_size = (UINT)(putauxstride * height) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_rotate()
192 for (y = 0; y < height; y++) in _gx_utility_4bpp_pixelmap_rotate()
324 INT width, height; in _gx_utility_4bpp_pixelmap_simple_raw_rotate() local
334 height = src -> gx_pixelmap_width; in _gx_utility_4bpp_pixelmap_simple_raw_rotate()
338 GX_SWAP_VALS(width, height); in _gx_utility_4bpp_pixelmap_simple_raw_rotate()
345 destination -> gx_pixelmap_data_size = (UINT)(putstride * height) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_simple_raw_rotate()
[all …]
Dgx_utility_332rgb_pixelmap_rotate.c103 INT width, height; in _gx_utility_332rgb_pixelmap_raw_rotate() local
138 height = (yres << 1); in _gx_utility_332rgb_pixelmap_raw_rotate()
159 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_332rgb_pixelmap_raw_rotate()
165 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_raw_rotate()
175 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_raw_rotate()
189 for (y = 0; y < height; y++) in _gx_utility_332rgb_pixelmap_raw_rotate()
387 INT width, height; in _gx_utility_332rgb_pixelmap_alpha_rotate() local
422 height = (yres << 1); in _gx_utility_332rgb_pixelmap_alpha_rotate()
443 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_332rgb_pixelmap_alpha_rotate()
449 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_332rgb_pixelmap_alpha_rotate()
[all …]
Dgx_utility_565rgb_pixelmap_rotate.c105 INT width, height; in _gx_utility_565rgb_pixelmap_raw_rotate() local
140 height = (yres << 1); in _gx_utility_565rgb_pixelmap_raw_rotate()
161 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_565rgb_pixelmap_raw_rotate()
167 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(USHORT); in _gx_utility_565rgb_pixelmap_raw_rotate()
177 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_565rgb_pixelmap_raw_rotate()
191 for (y = 0; y < height; y++) in _gx_utility_565rgb_pixelmap_raw_rotate()
389 INT width, height; in _gx_utility_565rgb_pixelmap_alpha_rotate() local
425 height = (yres << 1); in _gx_utility_565rgb_pixelmap_alpha_rotate()
446 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_565rgb_pixelmap_alpha_rotate()
452 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(USHORT); in _gx_utility_565rgb_pixelmap_alpha_rotate()
[all …]
Dgx_utility_gradient_create.c139 INT height; in _gx_utility_horizontal_alpha_gradient_create() local
145 height = gradient -> gx_gradient_pixelmap.gx_pixelmap_height; in _gx_utility_horizontal_alpha_gradient_create()
155 for (row = 0; row < height; row++) in _gx_utility_horizontal_alpha_gradient_create()
168 for (row = 0; row < height; row++) in _gx_utility_horizontal_alpha_gradient_create()
184 for (row = 0; row < height; row++) in _gx_utility_horizontal_alpha_gradient_create()
238 INT height; in _gx_utility_vertical_alpha_gradient_create() local
242 height = gradient -> gx_gradient_pixelmap.gx_pixelmap_height; in _gx_utility_vertical_alpha_gradient_create()
247 for (row = 0; row < height / 2; row++) in _gx_utility_vertical_alpha_gradient_create()
253 for (; row < height; row++) in _gx_utility_vertical_alpha_gradient_create()
262 for (row = 0; row < height; row++) in _gx_utility_vertical_alpha_gradient_create()
[all …]
Dgx_utility_pixelmap_resize.c84 UINT _gx_utility_pixelmap_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_pixelmap_resize() argument
108 GX_SWAP_VALS(width, height); in _gx_utility_pixelmap_resize()
119 status = _gx_utility_32argb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
124 status = _gx_utility_16bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
128 status = _gx_utility_1555xrgb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
132 status = _gx_utility_4444argb_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
138 status = _gx_utility_8bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
142 status = _gx_utility_8bit_alphamap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
146 status = _gx_utility_4bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
150 status = _gx_utility_1bpp_pixelmap_resize(src, destination, width, height); in _gx_utility_pixelmap_resize()
Dgx_utility_8bpp_pixelmap_rotate.c95 INT width, height; in _gx_utility_8bpp_pixelmap_rotate() local
125 height = (yres << 1); in _gx_utility_8bpp_pixelmap_rotate()
148 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_8bpp_pixelmap_rotate()
153 destination -> gx_pixelmap_data_size = (UINT)(width * height) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_rotate()
167 for (y = 0; y < height; y++) in _gx_utility_8bpp_pixelmap_rotate()
250 INT width, height; in _gx_utility_8bpp_pixelmap_simple_rotate() local
256 height = src -> gx_pixelmap_width; in _gx_utility_8bpp_pixelmap_simple_rotate()
260 destination -> gx_pixelmap_data_size = (UINT)(width * height) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_simple_rotate()
272 for (y = 0; y < height; y++) in _gx_utility_8bpp_pixelmap_simple_rotate()
277 get += (width - 1 - x) * height; in _gx_utility_8bpp_pixelmap_simple_rotate()
[all …]
Dgx_utility_1bpp_pixelmap_resize.c77 …utility_1bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_1bpp_pixelmap_raw_resize() argument
97 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_1bpp_pixelmap_raw_resize()
109 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_1bpp_pixelmap_raw_resize()
114 destination -> gx_pixelmap_data_size = (UINT)(height * putstride) * sizeof(GX_UBYTE); in _gx_utility_1bpp_pixelmap_raw_resize()
127 for (y = 0; y < height; y++) in _gx_utility_1bpp_pixelmap_raw_resize()
207 …1bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_1bpp_pixelmap_transparent_resize() argument
229 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_1bpp_pixelmap_transparent_resize()
241 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_1bpp_pixelmap_transparent_resize()
246 destination -> gx_pixelmap_data_size = (UINT)(height * putstride) * sizeof(GX_UBYTE); in _gx_utility_1bpp_pixelmap_transparent_resize()
259 for (y = 0; y < height; y++) in _gx_utility_1bpp_pixelmap_transparent_resize()
[all …]
Dgx_utility_4bpp_pixelmap_resize.c77 …utility_4bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_4bpp_pixelmap_raw_resize() argument
98 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_4bpp_pixelmap_raw_resize()
110 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_4bpp_pixelmap_raw_resize()
115 destination -> gx_pixelmap_data_size = (UINT)(height * putstride) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_raw_resize()
128 for (y = 0; y < height; y++) in _gx_utility_4bpp_pixelmap_raw_resize()
209 …4bpp_pixelmap_transparent_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_4bpp_pixelmap_transparent_resize() argument
236 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_4bpp_pixelmap_transparent_resize()
250 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_4bpp_pixelmap_transparent_resize()
255 destination -> gx_pixelmap_data_size = (UINT)(height * putstride) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_transparent_resize()
267 destination -> gx_pixelmap_aux_data_size = (UINT)(height * putauxstride) * sizeof(GX_UBYTE); in _gx_utility_4bpp_pixelmap_transparent_resize()
[all …]
Dgx_utility_8bpp_pixelmap_resize.c88 …utility_8bpp_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_8bpp_pixelmap_raw_resize() argument
104 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_8bpp_pixelmap_raw_resize()
113 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_8bpp_pixelmap_raw_resize()
118 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_raw_resize()
131 for (y = 0; y < height; y++) in _gx_utility_8bpp_pixelmap_raw_resize()
198 …ility_8bpp_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_8bpp_pixelmap_alpha_resize() argument
222 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_8bpp_pixelmap_alpha_resize()
228 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_8bpp_pixelmap_alpha_resize()
233 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_alpha_resize()
237 destination -> gx_pixelmap_aux_data_size = (UINT)(height * width) * sizeof(GX_UBYTE); in _gx_utility_8bpp_pixelmap_alpha_resize()
[all …]
Dgx_utility_4444argb_pixelmap_rotate.c109 INT width, height; in _gx_utility_4444argb_pixelmap_rotate() local
144 height = (yres << 1); in _gx_utility_4444argb_pixelmap_rotate()
165 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_4444argb_pixelmap_rotate()
171 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(USHORT); in _gx_utility_4444argb_pixelmap_rotate()
182 for (y = 0; y < height; y++) in _gx_utility_4444argb_pixelmap_rotate()
389 INT height; in _gx_utility_4444argb_pixelmap_simple_rotate() local
394 height = src -> gx_pixelmap_width; in _gx_utility_4444argb_pixelmap_simple_rotate()
398 destination -> gx_pixelmap_data_size = (UINT)(width * height) * sizeof(USHORT); in _gx_utility_4444argb_pixelmap_simple_rotate()
410 for (y = 0; y < height; y++) in _gx_utility_4444argb_pixelmap_simple_rotate()
415 get += (width - 1 - x) * height; in _gx_utility_4444argb_pixelmap_simple_rotate()
[all …]
Dgx_utility_32argb_pixelmap_rotate.c107 INT width, height; in _gx_utility_32argb_pixelmap_raw_rotate() local
141 height = (yres << 1); in _gx_utility_32argb_pixelmap_raw_rotate()
162 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_32argb_pixelmap_raw_rotate()
168 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_COLOR); in _gx_utility_32argb_pixelmap_raw_rotate()
179 for (y = 0; y < height; y++) in _gx_utility_32argb_pixelmap_raw_rotate()
385 INT width, height; in _gx_utility_32argb_pixelmap_alpha_rotate() local
419 height = (yres << 1); in _gx_utility_32argb_pixelmap_alpha_rotate()
440 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_32argb_pixelmap_alpha_rotate()
446 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_COLOR); in _gx_utility_32argb_pixelmap_alpha_rotate()
457 for (y = 0; y < height; y++) in _gx_utility_32argb_pixelmap_alpha_rotate()
[all …]
Dgx_text_scroll_wheel_draw.c99 … GX_CONST GX_STRING *string, GX_VALUE x_pos, GX_VALUE y_pos, GX_VALUE width, GX_VALUE height) in _gx_text_scroll_wheel_round_text_draw() argument
125 text_height = (GX_VALUE)(text_height * height / wheel -> gx_scroll_wheel_row_height); in _gx_text_scroll_wheel_round_text_draw()
134 y_pos = (GX_VALUE)(y_pos + (height - text_height) / 2); in _gx_text_scroll_wheel_round_text_draw()
234 … GX_CONST GX_STRING *string, GX_VALUE x_pos, GX_VALUE y_pos, GX_VALUE width, GX_VALUE height) in _gx_text_scroll_wheel_flat_text_draw() argument
251 y_pos = (GX_VALUE)(y_pos + (height - text_height) / 2); in _gx_text_scroll_wheel_flat_text_draw()
333 INT height; in _gx_text_scroll_wheel_row_draw() local
335 … GX_CONST GX_STRING *string, GX_VALUE x_pos, GX_VALUE y_pos, GX_VALUE width, GX_VALUE height); in _gx_text_scroll_wheel_row_draw()
344 height = draw_area -> gx_rectangle_bottom - draw_area -> gx_rectangle_top + 1; in _gx_text_scroll_wheel_row_draw()
385 draw_area -> gx_rectangle_top, (GX_VALUE)width, (GX_VALUE)height); in _gx_text_scroll_wheel_row_draw()
565 GX_VALUE height; in _gx_text_scroll_wheel_round_draw() local
[all …]
Dgx_display_driver_8bpp_pixelmap_rotate.c352 INT height; in _gx_display_driver_8bpp_pixelmap_simple_rotate() local
364 height = pixelmap -> gx_pixelmap_width; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
380 get += (width - 1 - x) * height; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
393 height = pixelmap -> gx_pixelmap_height; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
396 newypos = ypos + cy - (height - 1 - cy); in _gx_display_driver_8bpp_pixelmap_simple_rotate()
408 get += (height - 1 - y) * width; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
419 height = pixelmap -> gx_pixelmap_width; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
422 newypos = ypos + cx - (height - 1 - cy); in _gx_display_driver_8bpp_pixelmap_simple_rotate()
435 get += x * height; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
436 get += height - 1 - y; in _gx_display_driver_8bpp_pixelmap_simple_rotate()
[all …]
Dgx_display_driver_4bpp_pixelmap_rotate.c424 INT height; in _gx_display_driver_4bpp_pixelmap_simple_rotate() local
442 height = (pixelmap -> gx_pixelmap_width + 1) >> 1; in _gx_display_driver_4bpp_pixelmap_simple_rotate()
463 get += (width - 1 - x) * height; in _gx_display_driver_4bpp_pixelmap_simple_rotate()
494 height = pixelmap -> gx_pixelmap_height; in _gx_display_driver_4bpp_pixelmap_simple_rotate()
497 newypos = ypos + cy - (height - 1 - cy); in _gx_display_driver_4bpp_pixelmap_simple_rotate()
514 get += (height - 1 - y) * ((width + 1) >> 1); in _gx_display_driver_4bpp_pixelmap_simple_rotate()
541 height = pixelmap -> gx_pixelmap_width; in _gx_display_driver_4bpp_pixelmap_simple_rotate()
544 newypos = ypos + cx - (height - 1 - cy); in _gx_display_driver_4bpp_pixelmap_simple_rotate()
561 get += x * ((height + 1) >> 1); in _gx_display_driver_4bpp_pixelmap_simple_rotate()
562 get += (height - 1 - y) >> 1; in _gx_display_driver_4bpp_pixelmap_simple_rotate()
[all …]
Dgx_utility_32argb_pixelmap_resize.c89 …ility_32argb_pixelmap_raw_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_32argb_pixelmap_raw_resize() argument
112 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_32argb_pixelmap_raw_resize()
118 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_32argb_pixelmap_raw_resize()
123 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_COLOR); in _gx_utility_32argb_pixelmap_raw_resize()
137 for (y = 0; y < height; y++) in _gx_utility_32argb_pixelmap_raw_resize()
264 …ity_32argb_pixelmap_alpha_resize(GX_PIXELMAP *src, GX_PIXELMAP *destination, INT width, INT height) in _gx_utility_32argb_pixelmap_alpha_resize() argument
287 yradio = ((src -> gx_pixelmap_height) << 8) / height; in _gx_utility_32argb_pixelmap_alpha_resize()
293 destination -> gx_pixelmap_height = (GX_VALUE)height; in _gx_utility_32argb_pixelmap_alpha_resize()
298 destination -> gx_pixelmap_data_size = (UINT)(height * width) * sizeof(GX_COLOR); in _gx_utility_32argb_pixelmap_alpha_resize()
312 for (y = 0; y < height; y++) in _gx_utility_32argb_pixelmap_alpha_resize()
[all …]
/GUIX-v6.2.1/guix_studio/
Dstudiox.cpp120 int height = -MulDiv(MEDIUM_FONT_PT_SIZE, dpi, 72); in CreateSystemFonts() local
121 height = MulDiv(height, text_scaler, DEFAULT_TEXT_SCALER); in CreateSystemFonts()
122 MediumFont.CreateFont(height, 0, 0, 0, in CreateSystemFonts()
130 height = -MulDiv(NORMAL_FONT_PT_SIZE, dpi, 72); in CreateSystemFonts()
131 height = MulDiv(height, text_scaler, DEFAULT_TEXT_SCALER); in CreateSystemFonts()
132 NormalFont.CreateFont(height, 0, 0, 0, in CreateSystemFonts()
140 height = -MulDiv(ASTERISK_FONT_PT_SIZE, dpi, 72); in CreateSystemFonts()
141 height = MulDiv(height, text_scaler, DEFAULT_TEXT_SCALER); in CreateSystemFonts()
142 AsteriskFont.CreateFont(height, 0, 0, 0, in CreateSystemFonts()
158 height = -MulDiv(VIEW_HEADER_FONT_PT_SIZE, dpi, 72); in CreateSystemFonts()
[all …]
/GUIX-v6.2.1/test/example_internal/multi_line_text_view_clip_16bpp/
Ddemo_guix_multi_line_text_view_clip_16bpp.c25 INT height; variable
86 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
93 if(height < v_slider_value_1) in main_event_handler()
95 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
96 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
98 else if(height > v_slider_value_1) in main_event_handler()
100 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
101 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
103 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/example_internal/multi_line_text_view_clip_32bpp/
Ddemo_guix_multi_line_text_view_clip_32bpp.c25 INT height; variable
87 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
94 if(height < v_slider_value_1) in main_event_handler()
96 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
97 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
99 else if(height > v_slider_value_1) in main_event_handler()
101 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
102 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
104 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/example_internal/multi_line_text_view_clip_8bpp/
Ddemo_guix_multi_line_text_view_clip_8bpp.c25 INT height; variable
86 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
93 if(height < v_slider_value_1) in main_event_handler()
95 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
96 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
98 else if(height > v_slider_value_1) in main_event_handler()
100 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
101 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
103 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/example_internal/single_line_text_input_clip_8bpp/
Ddemo_guix_single_line_text_input_clip_8bpp.c26 INT height; variable
98 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
105 if(height < v_slider_value_1) in main_event_handler()
107 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
108 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
110 else if(height > v_slider_value_1) in main_event_handler()
112 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
113 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
115 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/example_internal/single_line_text_input_clip_32bpp/
Ddemo_guix_single_line_text_input_clip_32bpp.c26 INT height; variable
98 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
105 if(height < v_slider_value_1) in main_event_handler()
107 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
108 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
110 else if(height > v_slider_value_1) in main_event_handler()
112 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
113 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
115 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/example_internal/single_line_text_input_clip_16bpp/
Ddemo_guix_single_line_text_input_clip_16bpp.c26 INT height; variable
98 height = myevent -> gx_event_payload.gx_event_longdata; in main_event_handler()
105 if(height < v_slider_value_1) in main_event_handler()
107 …ew_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top + (v_slider_value_1 - height); in main_event_handler()
108 …e.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom - (v_slider_value_1 - height); in main_event_handler()
110 else if(height > v_slider_value_1) in main_event_handler()
112 …new_size.gx_rectangle_top = clip_1 -> gx_widget_size.gx_rectangle_top - (height - v_slider_value_1… in main_event_handler()
113 …new_size.gx_rectangle_bottom = clip_1 -> gx_widget_size.gx_rectangle_bottom + (height - v_slider_v… in main_event_handler()
115 v_slider_value_1 = height; in main_event_handler()
/GUIX-v6.2.1/test/guix_test/regression_test/tests/
Dvalidation_guix_scrollbar_value_calculate.c70 GX_VALUE height; in control_thread_entry() local
84 gx_widget_height_get(test_thumb, &height); in control_thread_entry()
85 my_event.gx_event_payload.gx_event_intdata[1] = height; in control_thread_entry()
92 height = (test_scroll->gx_widget_size.gx_rectangle_bottom - in control_thread_entry()
94 height -= (test_scroll->gx_scrollbar_appearance.gx_scroll_thumb_travel_max + in control_thread_entry()
97 my_event.gx_event_payload.gx_event_intdata[1] = height; in control_thread_entry()

12345678910