Home
last modified time | relevance | path

Searched refs:moving_left (Results 1 – 11 of 11) sorted by relevance

/dports/graphics/hugin/hugin-2020.0.0/src/hugin1/hugin/
H A DPreviewCropTool.cpp51 moving_left = false; in Activate()
86 if (moving_left) in ReallyAfterDrawImagesEvent()
137 if (moving_left) in MouseMoveEvent()
192 if ((x < left) != moving_left) in MouseMoveEvent()
194 moving_left = !moving_left; in MouseMoveEvent()
212 if (!(moving_left || moving_right || moving_top || moving_bottom)) in MouseMoveEvent()
215 moving_left = true; moving_right = true; in MouseMoveEvent()
243 moving_left = false; in MouseButtonEvent()
247 if (start_drag_x < left) moving_left = true; in MouseButtonEvent()
254 moving_left = true; in MouseButtonEvent()
[all …]
H A DPreviewCropTool.h40 bool moving_left, moving_right, moving_top, moving_bottom, mouse_down;
/dports/games/funnyboat/funnyboat-1.6/
H A Dsteamboat.py33 self.moving_left = False
67 if self.moving_left and not self.moving_right:
125 self.moving_left = True
127 self.moving_left = False
/dports/games/rezerwar/rezerwar-0.4.2/src/
H A Devents.c65 board->moving_left = 0; in handle_events_keyup()
195 board->moving_left = 4; in handle_events_keydown()
H A Dboard.c115 b->moving_left = 0; in board_new()
1064 if (board->moving_left > 1) { in board_update_falling_cube()
1065 board->moving_left--; in board_update_falling_cube()
1066 } else if (board->moving_left == 1) { in board_update_falling_cube()
H A Drezerwar.h537 byte moving_left; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/ash/wm/desks/
H A Ddesk_animation_impl.cc80 bool DeskActivationAnimation::Replace(bool moving_left, in Replace() argument
100 const int new_ending_desk_index = ending_desk_index_ + (moving_left ? -1 : 1); in Replace()
H A Ddesk_animation_base.h44 virtual bool Replace(bool moving_left, DesksSwitchSource source);
H A Ddesk_animation_impl.h30 bool Replace(bool moving_left, DesksSwitchSource source) override;
H A Droot_window_desk_switch_animator.cc300 const bool moving_left = scroll_delta_x < 0.f; in UpdateSwipeAnimation() local
302 moving_left in UpdateSwipeAnimation()
321 const int new_desk_index = visible_desk_index_ + (moving_left ? 1 : -1); in UpdateSwipeAnimation()
H A Ddesk_animation_base.cc59 bool DeskAnimationBase::Replace(bool moving_left, DesksSwitchSource source) { in Replace() argument