// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "views/events/event.h" #include #if defined(HAVE_XINPUT2) #include #endif #include "ui/base/keycodes/keyboard_code_conversion_x.h" #include "views/widget/root_view.h" #include "views/widget/widget_gtk.h" namespace views { namespace { // Scroll amount for each wheelscroll event. 53 is also the value used for GTK+. static int kWheelScrollAmount = 53; int GetEventFlagsFromXState(unsigned int state) { int flags = 0; if (state & ControlMask) flags |= ui::EF_CONTROL_DOWN; if (state & ShiftMask) flags |= ui::EF_SHIFT_DOWN; if (state & Mod1Mask) flags |= ui::EF_ALT_DOWN; if (state & LockMask) flags |= ui::EF_CAPS_LOCK_DOWN; if (state & Button1Mask) flags |= ui::EF_LEFT_BUTTON_DOWN; if (state & Button2Mask) flags |= ui::EF_MIDDLE_BUTTON_DOWN; if (state & Button3Mask) flags |= ui::EF_RIGHT_BUTTON_DOWN; return flags; } // Get the event flag for the button in XButtonEvent. During a ButtonPress // event, |state| in XButtonEvent does not include the button that has just been // pressed. Instead |state| contains flags for the buttons (if any) that had // already been pressed before the current button, and |button| stores the most // current pressed button. So, if you press down left mouse button, and while // pressing it down, press down the right mouse button, then for the latter // event, |state| would have Button1Mask set but not Button3Mask, and |button| // would be 3. int GetEventFlagsForButton(int button) { switch (button) { case 1: return ui::EF_LEFT_BUTTON_DOWN; case 2: return ui::EF_MIDDLE_BUTTON_DOWN; case 3: return ui::EF_RIGHT_BUTTON_DOWN; } DLOG(WARNING) << "Unexpected button (" << button << ") received."; return 0; } #if defined(HAVE_XINPUT2) int GetButtonMaskForX2Event(XIDeviceEvent* xievent) { int buttonflags = 0; for (int i = 0; i < 8 * xievent->buttons.mask_len; i++) { if (XIMaskIsSet(xievent->buttons.mask, i)) { buttonflags |= GetEventFlagsForButton(i); } } return buttonflags; } ui::EventType GetTouchEventType(XEvent* xev) { XGenericEventCookie* cookie = &xev->xcookie; switch (cookie->evtype) { case XI_ButtonPress: return ui::ET_TOUCH_PRESSED; case XI_ButtonRelease: return ui::ET_TOUCH_RELEASED; case XI_Motion: return ui::ET_TOUCH_MOVED; // Note: We will not generate a _STATIONARY event here. It will be created, // when necessary, by a RWHVV. // TODO(sad): When do we trigger a _CANCELLED event? Maybe that will also be // done by a RWHVV, e.g. when it gets destroyed in the middle of a // touch-sequence? } return ui::ET_UNKNOWN; } gfx::Point GetTouchEventLocation(XEvent* xev) { XIDeviceEvent* xiev = static_cast(xev->xcookie.data); return gfx::Point(xiev->event_x, xiev->event_y); } int GetTouchEventFlags(XEvent* xev) { XIDeviceEvent* xiev = static_cast(xev->xcookie.data); return GetButtonMaskForX2Event(xiev) | GetEventFlagsFromXState(xiev->mods.effective); } int GetTouchIDFromXEvent(XEvent* xev) { // TODO(sad): How we determine the touch-id from the event is as yet // undecided. XIDeviceEvent* xiev = static_cast(xev->xcookie.data); return xiev->sourceid; } #endif // HAVE_XINPUT2 ui::EventType EventTypeFromNative(NativeEvent2 native_event) { switch (native_event->type) { case KeyPress: return ui::ET_KEY_PRESSED; case KeyRelease: return ui::ET_KEY_RELEASED; case ButtonPress: if (native_event->xbutton.button == 4 || native_event->xbutton.button == 5) return ui::ET_MOUSEWHEEL; return ui::ET_MOUSE_PRESSED; case ButtonRelease: return ui::ET_MOUSE_RELEASED; case MotionNotify: if (native_event->xmotion.state & (Button1Mask | Button2Mask | Button3Mask)) return ui::ET_MOUSE_DRAGGED; return ui::ET_MOUSE_MOVED; #if defined(HAVE_XINPUT2) case GenericEvent: { XIDeviceEvent* xievent = static_cast(native_event->xcookie.data); switch (xievent->evtype) { case XI_ButtonPress: return (xievent->detail == 4 || xievent->detail == 5) ? ui::ET_MOUSEWHEEL : ui::ET_MOUSE_PRESSED; case XI_ButtonRelease: return ui::ET_MOUSE_RELEASED; case XI_Motion: return GetButtonMaskForX2Event(xievent) ? ui::ET_MOUSE_DRAGGED : ui::ET_MOUSE_MOVED; } } #endif default: NOTREACHED(); break; } return ui::ET_UNKNOWN; } int GetMouseWheelOffset(XEvent* xev) { #if defined(HAVE_XINPUT2) if (xev->type == GenericEvent) { XIDeviceEvent* xiev = static_cast(xev->xcookie.data); return xiev->detail == 4 ? kWheelScrollAmount : -kWheelScrollAmount; } #endif return xev->xbutton.button == 4 ? kWheelScrollAmount : -kWheelScrollAmount; } gfx::Point GetMouseEventLocation(XEvent* xev) { switch (xev->type) { case ButtonPress: case ButtonRelease: return gfx::Point(xev->xbutton.x, xev->xbutton.y); case MotionNotify: return gfx::Point(xev->xmotion.x, xev->xmotion.y); #if defined(HAVE_XINPUT2) case GenericEvent: { XIDeviceEvent* xievent = static_cast(xev->xcookie.data); return gfx::Point(static_cast(xievent->event_x), static_cast(xievent->event_y)); } #endif } return gfx::Point(); } int GetMouseEventFlags(XEvent* xev) { switch (xev->type) { case ButtonPress: case ButtonRelease: return GetEventFlagsFromXState(xev->xbutton.state) | GetEventFlagsForButton(xev->xbutton.button); case MotionNotify: return GetEventFlagsFromXState(xev->xmotion.state); #if defined(HAVE_XINPUT2) case GenericEvent: { XIDeviceEvent* xievent = static_cast(xev->xcookie.data); switch (xievent->evtype) { case XI_ButtonPress: case XI_ButtonRelease: return GetButtonMaskForX2Event(xievent) | GetEventFlagsFromXState(xievent->mods.effective) | GetEventFlagsForButton(xievent->detail); case XI_Motion: return GetButtonMaskForX2Event(xievent) | GetEventFlagsFromXState(xievent->mods.effective); } } #endif } return 0; } } // namespace //////////////////////////////////////////////////////////////////////////////// // Event, private: void Event::InitWithNativeEvent2(NativeEvent2 native_event_2, FromNativeEvent2) { native_event_ = NULL; // TODO(beng): remove once we rid views of Gtk/Gdk. native_event_2_ = native_event_2; } //////////////////////////////////////////////////////////////////////////////// // LocatedEvent, protected: LocatedEvent::LocatedEvent(NativeEvent2 native_event_2, FromNativeEvent2 from_native) : Event(native_event_2, EventTypeFromNative(native_event_2), GetEventFlagsFromXState(native_event_2->xbutton.state), from_native), location_(GetMouseEventLocation(native_event_2)) { } //////////////////////////////////////////////////////////////////////////////// // KeyEvent, public: KeyEvent::KeyEvent(NativeEvent2 native_event_2, FromNativeEvent2 from_native) : Event(native_event_2, EventTypeFromNative(native_event_2), GetEventFlagsFromXState(native_event_2->xkey.state), from_native), key_code_(ui::KeyboardCodeFromXKeyEvent(native_event_2)) { } //////////////////////////////////////////////////////////////////////////////// // MouseEvent, public: MouseEvent::MouseEvent(XEvent* xev) : LocatedEvent(EventTypeFromNative(xev), GetMouseEventLocation(xev), GetMouseEventFlags(xev)) { } //////////////////////////////////////////////////////////////////////////////// // MouseWheelEvent, public: MouseWheelEvent::MouseWheelEvent(NativeEvent2 native_event_2, FromNativeEvent2 from_native) : LocatedEvent(native_event_2, from_native), offset_(GetMouseWheelOffset(native_event_2)) { } //////////////////////////////////////////////////////////////////////////////// // TouchEvent, public: #if defined(HAVE_XINPUT2) TouchEvent::TouchEvent(XEvent* xev) : LocatedEvent(GetTouchEventType(xev), GetTouchEventLocation(xev), GetTouchEventFlags(xev)), touch_id_(GetTouchIDFromXEvent(xev)) { } #endif } // namespace views