Home | History | Annotate | Download | only in x11

Lines Matching defs:xev

68 void X11Window::ProcessXInput2Event(XEvent* xev) {
69 if (!TouchFactory::GetInstance()->ShouldProcessXI2Event(xev))
71 EventType event_type = EventTypeFromNative(xev);
75 KeyEvent key_event(xev);
83 MouseEvent mouse_event(xev);
88 MouseWheelEvent wheel_event(xev);
95 ScrollEvent scroll_event(xev);
103 TouchEvent touch_event(xev);
257 XEvent* xev = event;
258 switch (xev->type) {
262 MouseEvent mouse_event(xev);
269 MouseEvent mouse_event(xev);
275 gfx::Rect damage_rect(xev->xexpose.x,
276 xev->xexpose.y,
277 xev->xexpose.width,
278 xev->xexpose.height);
285 KeyEvent key_event(xev);
292 switch (EventTypeFromNative(xev)) {
294 MouseWheelEvent mouseev(xev);
300 MouseEvent mouseev(xev);
315 if (xev->xfocus.mode != NotifyGrab)
320 DCHECK_EQ(xwindow_, xev->xconfigure.event);
321 DCHECK_EQ(xwindow_, xev->xconfigure.window);
322 gfx::Rect bounds(xev->xconfigure.x,
323 xev->xconfigure.y,
324 xev->xconfigure.width,
325 xev->xconfigure.height);
334 Atom message = static_cast<Atom>(xev->xclient.data.l[0]);
338 XEvent reply_event = *xev;
352 ProcessXInput2Event(xev);