Lines Matching refs:event
444 key = PhGetData(info->event); in gui_ph_handle_keyboard()
636 pointer = PhGetData(info->event); in gui_ph_handle_mouse()
637 pos = PhGetRects(info->event); in gui_ph_handle_mouse()
648 if (info->event->type == Ph_EV_PTR_MOTION_NOBUTTON) in gui_ph_handle_mouse()
680 if (info->event->type == Ph_EV_BUT_RELEASE) in gui_ph_handle_mouse()
683 if (info->event->type & Ph_EV_PTR_MOTION_BUTTON) in gui_ph_handle_mouse()
688 if (info->event->type & Ph_EV_BUT_REPEAT) in gui_ph_handle_mouse()
694 (info->event->subtype == Ph_EV_RELEASE_REAL)) in gui_ph_handle_mouse()
924 if (info->event != NULL) in gui_ph_handle_pg_change()
1490 key = PhGetData(info->event); in gui_ph_dialog_esc()
1707 PhWindowEvent_t event; in gui_mch_iconify() local
1709 memset(&event, 0, sizeof (event)); in gui_mch_iconify()
1710 event.event_f = Ph_WM_HIDE; in gui_mch_iconify()
1711 event.event_state = Ph_WM_EVSTATE_HIDE; in gui_mch_iconify()
1712 event.rid = PtWidgetRid(gui.vimWindow); in gui_mch_iconify()
1713 PtForwardWindowEvent(&event); in gui_mch_iconify()
1723 PhWindowEvent_t event; in gui_mch_set_foreground() local
1725 memset(&event, 0, sizeof (event)); in gui_mch_set_foreground()
1726 event.event_f = Ph_WM_TOFRONT; in gui_mch_set_foreground()
1727 event.event_state = Ph_WM_EVSTATE_FFRONT; in gui_mch_set_foreground()
1728 event.rid = PtWidgetRid(gui.vimWindow); in gui_mch_set_foreground()
1729 PtForwardWindowEvent(&event); in gui_mch_set_foreground()