Searched refs:m_altKey (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
H A DUIEventWithKeyState.h35 bool altKey() const { return m_altKey; }
41 , m_altKey(false)
51 , m_altKey(altKey)
59 bool m_altKey : 1;
H A DTouchEvent.cpp76 m_altKey = altKey;
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformMouseEventBrew.cpp65 m_altKey = keyModifiers & (KB_LALT | KB_RALT);
66 m_metaKey = m_altKey;
H A DPlatformTouchEventBrew.cpp69 m_altKey = keyModifiers & (KB_LALT | KB_RALT);
/external/webkit/Source/WebCore/platform/
H A DPlatformTouchEvent.h62 , m_altKey(false)
83 bool altKey() const { return m_altKey; }
94 bool m_altKey; member in class:WebCore::PlatformTouchEvent
H A DPlatformWheelEvent.h98 , m_altKey(false)
123 bool altKey() const { return m_altKey; }
192 bool m_altKey; member in class:WebCore::PlatformWheelEvent
H A DPlatformMouseEvent.h84 , m_altKey(false)
105 , m_altKey(alt)
127 bool altKey() const { return m_altKey; }
188 bool m_altKey; member in class:WebCore::PlatformMouseEvent
H A DPlatformKeyboardEvent.h110 , m_altKey(false)
154 bool altKey() const { return m_altKey; }
231 bool m_altKey; member in class:WebCore::PlatformKeyboardEvent
/external/webkit/Source/WebCore/platform/win/
H A DWheelEventWin.cpp72 , m_altKey(false)
96 , m_altKey(GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT)
97 , m_metaKey(m_altKey) // FIXME: We'll have to test other browsers
H A DPlatformMouseEventWin.cpp86 , m_altKey(GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT)
87 , m_metaKey(m_altKey) // FIXME: We'll have to test other browsers
/external/webkit/Source/WebCore/platform/haiku/
H A DPlatformWheelEventHaiku.cpp58 m_altKey = modifiers & B_COMMAND_KEY;
H A DPlatformMouseEventHaiku.cpp75 m_altKey = modifiers & B_COMMAND_KEY;
/external/webkit/Source/WebCore/platform/wx/
H A DMouseWheelEventWx.cpp41 , m_altKey(event.AltDown())
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformMouseEventEfl.cpp57 , m_altKey(evas_key_modifier_is_set(event->modifiers, "Alt"))
71 , m_altKey(evas_key_modifier_is_set(event->modifiers, "Alt"))
86 , m_altKey(evas_key_modifier_is_set(event->modifiers, "Alt"))
H A DPlatformTouchEventEfl.cpp40 , m_altKey(false)
H A DPlatformWheelEventEfl.cpp52 , m_altKey(evas_key_modifier_is_set(ev->modifiers, "Alt"))
/external/webkit/Source/WebCore/platform/android/
H A DPlatformTouchEventAndroid.cpp51 m_altKey = metaState & META_ALT_ON;
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformWheelEventGtk.cpp68 m_altKey = event->state & GDK_MOD1_MASK;
H A DPlatformMouseEventGtk.cpp46 m_altKey = event->state & GDK_MOD1_MASK;
85 m_altKey = motion->state & GDK_MOD1_MASK;
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformTouchEventQt.cpp43 m_altKey = (event->modifiers() & Qt::AltModifier);
H A DWheelEventQt.cpp68 , m_altKey(e->modifiers() & Qt::AltModifier)
87 , m_altKey(e->modifiers() & Qt::AltModifier)
H A DPlatformMouseEventQt.cpp70 m_altKey = (event->modifiers() & Qt::AltModifier);
126 m_altKey = (event->modifiers() & Qt::AltModifier);
/external/webkit/Source/WebKit2/Shared/
H A DWebTouchEvent.cpp40 , m_altKey(altKey)
H A DWebEventConversion.cpp74 m_altKey = webEvent.altKey();
82 if (m_altKey)
111 m_altKey = webEvent.altKey();
156 m_altKey = webEvent.altKey();
257 m_altKey = webEvent.altKey();
/external/webkit/Source/WebCore/platform/mac/
H A DPlatformMouseEventMac.mm153 , m_altKey([event modifierFlags] & NSAlternateKeyMask)
171 , m_altKey(altKey)

Completed in 1383 milliseconds

12