Searched defs:altKey (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformKeyboardEvent.cpp87 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey) argument
92 altKey = GetKeyState(VK_MENU) & HIGHBITMASKSHORT;
98 altKey = currentModifiers & ::optionKey;
103 altKey = false;
H A DPlatformGestureEvent.h46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY) argument
47 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformMouseEvent.h75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformEvent.h87 bool altKey() const { return m_modifiers & AltKey; } function in class:WebCore::PlatformEvent
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
125 if (altKey)
H A DPlatformWheelEvent.h82 PlatformWheelEvent(IntPoint position, IntPoint globalPosition, float deltaX, float deltaY, float wheelTicksX, float wheelTicksY, PlatformWheelEventGranularity granularity, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
83 : PlatformEvent(PlatformEvent::Wheel, shiftKey, ctrlKey, altKey, metaKey, 0)
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DUIEventWithKeyState.h35 bool altKey() const { return m_altKey; } function in class:WebCore::UIEventWithKeyState
48 int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
51 , m_altKey(altKey)
47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DGestureEvent.cpp68 return adoptRefWillBeNoop(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), deltaX, deltaY));
90 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
91 : MouseRelatedEvent(type, true, true, view, 0, IntPoint(screenX, screenY), IntPoint(clientX, clientY), IntPoint(0, 0), ctrlKey, altKey, shiftKey, metaKey)
H A DTouchEvent.cpp45 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
47 ctrlKey, altKey, shiftKey, metaKey)
63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
78 m_altKey = altKey;
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
59 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int, int, int, int, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h47 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable)
50 ctrlKey, altKey, shiftKey, metaKey, cancelable));
57 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
80 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable);
44 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
H A DKeyboardEvent.cpp91 , altKey(false)
108 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
119 : UIEventWithKeyState(eventType, initializer.bubbles, initializer.cancelable, initializer.view, initializer.detail, initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey)
130 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
131 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, altKey, shiftKey, metaKey)
146 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
157 m_altKey = altKey;
171 return altKey();
128 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
144 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DKeyboardEvent.h42 bool altKey; member in struct:WebCore::KeyboardEventInit
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
77 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
84 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
111 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
72 create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String& keyIdentifier, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DMouseEvent.h44 bool altKey; member in struct:WebCore::MouseEventInit
61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
72 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
100 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
H A DWheelEvent.cpp65 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
70 ctrlKey, altKey, shiftKey, metaKey, 0, nullptr, nullptr, false)
83 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
92 m_altKey = altKey;
107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
110 ctrlKey, altKey, shiftKey, metaKey);
150 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDevice()));
63 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
81 initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
105 initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtrWillBeRawPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DWheelEvent.h70 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
73 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice));
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice);
67 create(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
H A DMouseEvent.cpp39 , altKey(false)
64 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
77 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated));
90 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
96 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
109 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
125 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
135 m_altKey = altKey;
216 m_altKey = keyStateEvent->altKey();
68 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<Clipboard> clipboard, bool isSimulated) argument
87 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget, PassRefPtrWillBeRawPtr<Clipboard> clipboard, bool isSimulated) argument
123 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtrWillBeRawPtr<EventTarget> relatedTarget) argument
[all...]
H A DMouseRelatedEvent.cpp58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated)
59 : UIEventWithKeyState(eventType, canBubble, cancelable, abstractView, detail, ctrlKey, altKey, shiftKey, metaKey)
55 MouseRelatedEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> abstractView, int detail, const IntPoint& screenLocation, const IntPoint& windowLocation, const IntPoint& movementDelta, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool isSimulated) argument
/external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
H A Dexterns.js142 ChromeKeyboardEvent.prototype.altKey;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp116 bool altKey = static_cast<bool>(keyState & PlatformEvent::AltKey); local
120 LeftButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey,
H A DEventHandler.cpp1632 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(),
2222 if (gestureEvent.altKey())
2256 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), WTF::currentTime());
2260 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), WTF::currentTime());
2463 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey());
2476 gestureEvent.shiftKey(), gestureEvent.ctrlKey(), gestureEvent.altKey(), gestureEvent.metaKey(), gestureEvent.timestamp());
2774 bool altKey; local
2776 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey);
2777 PlatformMouseEvent fakeMouseMoveEvent(m_lastKnownMousePosition, m_lastKnownMouseGlobalPosition, NoButton, PlatformEvent::MouseMoved, 0, shiftKey, ctrlKey, altKey, metaKey, currentTime());
3224 if (event->ctrlKey() || event->metaKey() || event->altKey() || even
[all...]

Completed in 300 milliseconds