Home
last modified time | relevance | path

Searched refs:last_mouse (Results 1 – 16 of 16) sorted by relevance

/dports/games/frogatto/frogatto-1.3.1/src/
H A Dspeech_dialog.cpp96 static int last_mouse = 0; in key_press() local
116 last_mouse = event.button.which; in key_press()
121 if (event.motion.which == last_mouse) in key_press()
126 if (event.motion.which == last_mouse) in key_press()
128 last_mouse = -1; in key_press()
/dports/cad/openscad/openscad-41f58fe57c03457a3a8b4dc541ef5654ec3e8c78/src/
H A DQGLView.cc202 last_mouse = event->globalPos(); in mousePressEvent()
251 double dx = (this_mouse.x() - last_mouse.x()) * 0.7; in mouseMoveEvent()
252 double dy = (this_mouse.y() - last_mouse.y()) * 0.7; in mouseMoveEvent()
293 last_mouse = this_mouse; in mouseMoveEvent()
H A DQGLView.h81 QPoint last_mouse; variable
/dports/cad/openscad-devel/openscad-63a7c77740030c63d646eb0684ba6947eecb0db7/src/
H A DQGLView.cc202 last_mouse = event->globalPos(); in mousePressEvent()
251 double dx = (this_mouse.x() - last_mouse.x()) * 0.7; in mouseMoveEvent()
252 double dy = (this_mouse.y() - last_mouse.y()) * 0.7; in mouseMoveEvent()
293 last_mouse = this_mouse; in mouseMoveEvent()
H A DQGLView.h81 QPoint last_mouse; variable
/dports/devel/godot2-tools/godot-2.1.6-stable/platform/android/
H A Dos_android.cpp404 last_mouse = touch[0].pos; in process_touch()
435 ev.mouse_motion.relative_x = p_points[0].pos.x - last_mouse.x; in process_touch()
436 ev.mouse_motion.relative_y = p_points[0].pos.y - last_mouse.y; in process_touch()
437 last_mouse = p_points[0].pos; in process_touch()
H A Dos_android.h108 Point2 last_mouse; variable
/dports/devel/godot2/godot-2.1.6-stable/platform/android/
H A Dos_android.cpp404 last_mouse = touch[0].pos; in process_touch()
435 ev.mouse_motion.relative_x = p_points[0].pos.x - last_mouse.x; in process_touch()
436 ev.mouse_motion.relative_y = p_points[0].pos.y - last_mouse.y; in process_touch()
437 last_mouse = p_points[0].pos; in process_touch()
H A Dos_android.h108 Point2 last_mouse; variable
/dports/games/flare-engine/flare-engine-1.12/src/
H A DMenuActionBar.h57 Point last_mouse; variable
H A DMenuActionBar.cpp515 drop(last_mouse, power_index, !REORDER); in actionReturn()
690 last_mouse = mouse; in checkDrag()
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/UI/Source/
H A Devent.c801 static LGPoint last_mouse = { -1, -1 }; in uiPoll() local
806 LGPoint mousepos = last_mouse; in uiPoll()
917 if (!PointsEqual(mousepos,last_mouse) || diff > uiDoubleClickDelay * 5) in uiPoll()
920 last_mouse = mousepos; in uiPoll()
/dports/x11/xscreensaver/xscreensaver-5.44/hacks/glx/
H A Dpeepers.c78 XYZ mouse, last_mouse, fake_mouse; member
635 if (x != bp->last_mouse.x && y != bp->last_mouse.y) in track_mouse()
642 bp->last_mouse.x = x; in track_mouse()
643 bp->last_mouse.y = y; in track_mouse()
/dports/graphics/blender/blender-2.91.0/source/blender/editors/gpencil/
H A Dannotate_paint.c1995 float last_mouse[2]; in annotation_draw_apply() local
1997 copy_v2_v2(last_mouse, p->mvalo); in annotation_draw_apply()
1998 interp_v2_v2v2(now_mouse, now_mouse, last_mouse, min_ff(p->stabilizer_factor, .995f)); in annotation_draw_apply()
H A Dgpencil_paint.c2704 float last_mouse[2]; in gpencil_draw_apply() local
2706 copy_v2_v2(last_mouse, p->mvalo); in gpencil_draw_apply()
2707 interp_v2_v2v2(now_mouse, now_mouse, last_mouse, p->brush->smooth_stroke_factor); in gpencil_draw_apply()
/dports/devel/git-cola/git-cola-3.10.1/cola/widgets/
H A Ddag.py1426 self.last_mouse = [0, 0]
2128 self.last_mouse[0] = pos.x()
2129 self.last_mouse[1] = pos.y()