Home
last modified time | relevance | path

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

/dports/x11-toolkits/gtkimageview/gtkimageview-1.6.4/tests/
H A Dtest-tool-selector.c286 GdkEventMotion motion_ev; in test_motion_notify_keeps_accuracy() local
296 motion_ev = (GdkEventMotion){.x = 103, .y = 105}; in test_motion_notify_keeps_accuracy()
297 wid_class->motion_notify_event (widget, &motion_ev); in test_motion_notify_keeps_accuracy()
306 motion_ev = (GdkEventMotion){.x = 106, .y = 110}; in test_motion_notify_keeps_accuracy()
307 wid_class->motion_notify_event (widget, &motion_ev); in test_motion_notify_keeps_accuracy()
/dports/devel/agar/agar-1.5.0/gui/
H A Dglview.c111 glv->motion_ev = NULL; in Init()
221 glv->motion_ev = AG_SetEvent(glv, "mouse-motion", fn, NULL); in AG_GLViewMotionFn()
222 AG_EVENT_GET_ARGS(glv->motion_ev, fmt); in AG_GLViewMotionFn()
H A Dglview.h33 AG_Event *motion_ev; /* Mouse motion event */ member
/dports/graphics/tgif/tgif-QPL-4.2.5/
H A Dbox.c389 XMotionEvent *motion_ev; local
425 motion_ev = &(input.xmotion);
426 end_x = motion_ev->x;
427 end_y = motion_ev->y;
429 if (motion_ev->state & (ShiftMask | ControlMask)) {
H A Doval.c545 XMotionEvent *motion_ev=NULL; local
604 motion_ev = (&(input.xmotion));
609 end_x = motion_ev->x;
610 end_y = motion_ev->y;
623 (motion_ev->state & (ShiftMask | ControlMask)) != 0) {
H A Drcbox.c581 XMotionEvent *motion_ev; local
618 motion_ev = &(input.xmotion);
619 end_x = motion_ev->x;
620 end_y = motion_ev->y;
622 if (motion_ev->state & (ShiftMask | ControlMask)) {
H A Dpage.c435 void HandleMotionInPageWindow(motion_ev) in HandleMotionInPageWindow() argument
436 XMotionEvent *motion_ev; in HandleMotionInPageWindow()
441 if (motion_ev->x <= 0) {
444 index = (int)((motion_ev->x-1) / scrollBarW);
451 if (motion_ev->state & (ShiftMask | ControlMask)) {
471 offset = motion_ev->x-(scrollBarW<<2)-1;
H A Dcolor.c2088 void HandleMotionInColorWindow(motion_ev) in HandleMotionInColorWindow() argument
2089 XMotionEvent *motion_ev; in HandleMotionInColorWindow()
2094 index = (int)((motion_ev->y-1-(windowPadding>>1)) / upend_height);
2096 index = (int)((motion_ev->y-1) / scrollBarW);
2107 if (motion_ev->state & (ShiftMask | ControlMask)) {
2114 offset = motion_ev->y-(upend_height*MAX_VERTICAL_BTNS);
H A Ddialog.c981 XMotionEvent *motion_ev=(&(ev.xmotion)); local
985 x = motion_ev->x;
986 y = motion_ev->y;
H A Dpolygon.c1088 XMotionEvent *motion_ev; local
1256 motion_ev = &(input.xmotion);
1257 end_x = motion_ev->x;
1258 end_y = motion_ev->y;
1259 event_state = motion_ev->state;
H A Dselect.c1429 XMotionEvent *motion_ev=NULL; local
1465 motion_ev = &(input.xmotion);
1466 new_end_x = motion_ev->x;
1467 new_end_y = motion_ev->y;
H A Dimgproc.c8060 XMotionEvent *motion_ev; local
8063 motion_ev = &(input.xmotion);
8064 new_end_x = motion_ev->x;
8065 new_end_y = motion_ev->y;
/dports/net/liblinphone/linphone-3.12.0/gtk/
H A Dchat.c440 GdkEventMotion *motion_ev = (GdkEventMotion *)event; in chatroom_event() local
441 wx = (gint)motion_ev->x; in chatroom_event()
442 wy = (gint)motion_ev->y; in chatroom_event()
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/src/gui/widgets/
H A Dtrack.c1384 GdkEventMotion * motion_ev = in on_motion() local
1391 (int) motion_ev->x, in on_motion()
1392 (int) motion_ev->y); in on_motion()
1397 if (motion_ev->x >= 1 && in on_motion()
1398 motion_ev->y >= 1 && in on_motion()
1399 motion_ev->x < 18 && in on_motion()
1400 motion_ev->y < 18) in on_motion()
/dports/devel/agar/agar-1.5.0/vg/
H A Dvg_view.c317 vv->motion_ev = NULL; in Init()
508 vv->motion_ev = AG_SetEvent(vv, "mouse-motion", fn, NULL); in VG_ViewMotionFn()
509 AG_EVENT_GET_ARGS(vv->motion_ev, fmt); in VG_ViewMotionFn()
H A Dvg_view.h63 AG_Event *motion_ev; /* Mouse motion event */ member