Home | History | Annotate | Download | only in desktop_aura

Lines Matching defs:xev

102   XEvent xev;
103 xev.xmotion.type = MotionNotify;
104 xev.xmotion.display = display;
105 xev.xmotion.window = host->GetAcceleratedWidget();
106 xev.xmotion.root = DefaultRootWindow(display);
107 xev.xmotion.subwindow = 0;
108 xev.xmotion.time = CurrentTime;
109 xev.xmotion.x = point_in_screen.x() - bounds_in_screen.x();
110 xev.xmotion.y = point_in_screen.y() - bounds_in_screen.y();
111 xev.xmotion.x_root = point_in_screen.x();
112 xev.xmotion.y_root = point_in_screen.y();
113 xev.xmotion.state = 0;
114 xev.xmotion.is_hint = NotifyNormal;
115 xev.xmotion.same_screen = True;
117 static_cast<ui::PlatformEventDispatcher*>(desktop_host)->DispatchEvent(&xev);