Home
last modified time | relevance | path

Searched refs:delta_y (Results 1 – 5 of 5) sorted by relevance

/GUIX-v6.2.1/common/src/
Dgx_animation_drag_tracking.c84 GX_VALUE delta_y = 0; in _gx_animation_drag_tracking() local
115 delta_y = (GX_VALUE)(pen_pos - last_pos); in _gx_animation_drag_tracking()
123 if (delta_x || delta_y) in _gx_animation_drag_tracking()
161 delta_y = (GX_VALUE)(pen_pos - start_pos); in _gx_animation_drag_tracking()
174 …_start_pos = (GX_VALUE)(animation -> gx_animation_slide_tracking_start_pos + ((delta_y + 1) >> 1)); in _gx_animation_drag_tracking()
175 delta_y >>= 1; in _gx_animation_drag_tracking()
189 … (GX_VALUE)(animation -> gx_animation_canvas -> gx_canvas_display_offset_y + shift_y + delta_y)); in _gx_animation_drag_tracking()
197 …dget_scroll_shift(target_2, (GX_VALUE)(shift_x + delta_x), (GX_VALUE)(shift_y + delta_y), GX_TRUE); in _gx_animation_drag_tracking()
200 …dget_scroll_shift(target_1, (GX_VALUE)(shift_x + delta_x), (GX_VALUE)(shift_y + delta_y), GX_TRUE); in _gx_animation_drag_tracking()
205 …gx_widget_block_move(parent, &block, (GX_VALUE)(shift_x + delta_x), (GX_VALUE)(shift_y + delta_y)); in _gx_animation_drag_tracking()
[all …]
Dgx_touch_driver_generic_resistive.c469 INT delta_y; in _gx_touch_driver_generic_resistive_raw_read() local
506 delta_y = GX_ABS(samples[loop].gx_point_y - samples[loop - 1].gx_point_y); in _gx_touch_driver_generic_resistive_raw_read()
507 if (delta_y > stability_limit) in _gx_touch_driver_generic_resistive_raw_read()
526 delta_x = delta_y = 0; in _gx_touch_driver_generic_resistive_raw_read()
531 delta_y += samples[loop].gx_point_y; in _gx_touch_driver_generic_resistive_raw_read()
534 ret_val->gx_point_y = (GX_VALUE) (delta_y / sample_size); in _gx_touch_driver_generic_resistive_raw_read()
/GUIX-v6.2.1/guix_studio/
Dtarget_screen.cpp462 int delta_y = 0; in OnLButtonDown() local
463 CalSnapDelta(delta_x, delta_y, 0); in OnLButtonDown()
686 void target_screen::ShiftSelectedWidgets(int delta_x, int delta_y) in ShiftSelectedWidgets() argument
702 gx_utility_rectangle_shift(&size, delta_x, delta_y); in ShiftSelectedWidgets()
973 void target_screen::UpdateSnapLines(int delta_x, int delta_y) in UpdateSnapLines() argument
984 snapline->source_top_left += delta_y; in UpdateSnapLines()
985 snapline->source_bottom_right += delta_y; in UpdateSnapLines()
1327 …arget_screen::UpdateRadialProgressSize(GX_RECTANGLE *size, int mDragMode, int delta_x, int delta_y) in UpdateRadialProgressSize() argument
1346 size->gx_rectangle_top += delta_y; in UpdateRadialProgressSize()
1347 size->gx_rectangle_bottom -= delta_y; in UpdateRadialProgressSize()
[all …]
Dtarget_screen.h65 void UpdateSnapLines(int delta_x, int delta_y);
73 void CalSnapDelta(int &delta_x, int &delta_y, int snap_dist);
75 void UpdateRadialProgressSize(GX_RECTANGLE *size, int mDragMode, int delta_x, int delta_y);
76 void UpdateWidgetSize(GX_RECTANGLE *size, int mDrawMode, int delta_x, int delta_y);
/GUIX-v6.2.1/test/guix_studio_test/test_view/
Dtest_utils.py1295 def drag_top(widget_name, delta_y, close_notification = False): argument
1303 mousemove(x, top + delta_y, close_notification)
1304 left_button_up(x, top + delta_y)
1306 def drag_bottom(widget_name, delta_y, close_notification = False): argument
1314 mousemove(x, bottom + delta_y, close_notification)
1315 left_button_up(x, bottom + delta_y)
1317 def drag_left_top(widget_name, delta_x, delta_y, close_notification = False): argument
1323 mousemove(left + delta_x, top + delta_y, close_notification)
1324 left_button_up(left + delta_x, top + delta_y)
1326 def drag_right_top(widget_name, delta_x, delta_y, close_notification = False): argument
[all …]