Searched refs:altKey (Results 1 - 25 of 89) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DPlatformMouseEventBlackBerry.cpp26 PlatformMouseEvent::PlatformMouseEvent(const IntPoint& eventPosition, const IntPoint& globalPosition, const PlatformEvent::Type type, int clickCount, MouseButton button, bool shiftKey, bool ctrlKey, bool altKey, MouseInputMethod method) argument
27 : PlatformEvent(type, shiftKey, ctrlKey, altKey, false, currentTime())
/macosx-10.9.5/WebCore-7537.78.1/dom/
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, PassRefPtr<AbstractView> view, int detail, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DKeyboardEvent.cpp98 , altKey(false)
112 true, true, view, 0, key.ctrlKey(), key.altKey(), key.shiftKey(), key.metaKey())
121 : 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)
144 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
155 m_altKey = altKey;
167 return altKey();
128 KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, const String &keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
142 initKeyboardEvent(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String &keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DTouchEvent.cpp47 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
53 ctrlKey, altKey, shiftKey, metaKey)
71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
83 m_altKey = altKey;
44 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
68 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DGestureEvent.cpp66 return adoptRef(new GestureEvent(eventType, view, event.globalPosition().x(), event.globalPosition().y(), event.position().x(), event.position().y(), event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.deltaX(), event.deltaY()));
69 void GestureEvent::initGestureEvent(const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
77 m_altKey = altKey;
99 GestureEvent::GestureEvent(const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY) argument
104 ctrlKey, altKey, shiftKey, metaKey)
H A DWheelEvent.h66 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
69 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice));
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
99 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice);
63 create(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
H A DWheelEvent.cpp57 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice)
64 ctrlKey, altKey, shiftKey, metaKey, 0, 0, 0, false)
74 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
83 m_altKey = altKey;
99 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
102 ctrlKey, altKey, shiftKey, metaKey);
132 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.directionInvertedFromDevice()));
55 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtr<AbstractView> view, const IntPoint& screenLocation, const IntPoint& pageLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) argument
72 initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
97 initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h50 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
54 ctrlKey, altKey, shiftKey, metaKey));
61 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
87 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
46 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.idl34 readonly attribute boolean altKey;
47 [Default=Undefined] optional boolean altKey,
H A DGestureEvent.h48 void initGestureEvent(const AtomicString& type, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
57 GestureEvent(const AtomicString& type, PassRefPtr<AbstractView>, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, float deltaX, float deltaY);
H A DMouseEvent.cpp43 , altKey(false)
69 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
87 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, 0, false);
95 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
103 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipboard, isSimulated));
117 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
125 ctrlKey, altKey, shiftKey, metaKey, isSimulated)
139 initializer.ctrlKey, initializer.altKey, initializer.shiftKey, initializer.metaKey, false /* isSimulated */)
154 bool ctrlKey, bool altKey, boo
73 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget) argument
90 create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard, bool isSimulated) argument
112 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<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, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboard, bool isSimulated) argument
152 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget) argument
[all...]
H A DKeyboardEvent.h54 bool altKey; member in struct:WebCore::KeyboardEventInit
85 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey)
88 ctrlKey, altKey, shiftKey, metaKey, altGraphKey));
95 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey = false);
124 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey);
83 create(const AtomicString& type, bool canBubble, bool cancelable, AbstractView* view, const String& keyIdentifier, unsigned keyLocation, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool altGraphKey) argument
H A DMouseEvent.h44 bool altKey; member in struct:WebCore::MouseEventInit
63 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
113 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLSelectElementWin.cpp40 bool eventShowsMenu = (!event->altKey() && !event->ctrlKey() && event->keyIdentifier() == "F4")
41 || ((event->altGraphKey() || event->altKey()) && (event->keyIdentifier() == "Down" || event->keyIdentifier() == "Up"));
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DDragData.cpp58 bool shiftKey, ctrlKey, altKey, metaKey; local
59 shiftKey = ctrlKey = altKey = metaKey = false;
60 PlatformKeyboardEvent::getCurrentModifierState(shiftKey, ctrlKey, altKey, metaKey);
66 if (altKey)
H A DPlatformGestureEvent.h47 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, float deltaX, float deltaY, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
48 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
56 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, double timestamp, const IntSize& area, const FloatPoint& delta, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey) argument
57 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
H A DPlatformEvent.h86 bool altKey() const { return m_modifiers & AltKey; } function in class:WebCore::PlatformEvent
115 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
124 if (altKey)
H A DPlatformMouseEvent.h71 int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
72 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
121 PlatformMouseEvent(const IntPoint& eventPosition, const IntPoint& globalPosition, const PlatformEvent::Type, int clickCount, MouseButton, bool shiftKey, bool ctrlKey, bool altKey, MouseInputMethod = PointingDevice);
70 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
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_domwheelevent.py9 self.failUnlessResultIsBOOL(DOMWheelEvent.altKey)
H A Dtest_domkeyboardevent.py15 self.failUnlessResultIsBOOL(DOMKeyboardEvent.altKey)
H A Dtest_dommouseevent.py9 self.failUnlessResultIsBOOL(DOMMouseEvent.altKey)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_domwheelevent.py9 self.assertResultIsBOOL(DOMWheelEvent.altKey)
H A Dtest_dommouseevent.py9 self.assertResultIsBOOL(DOMMouseEvent.altKey)
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DKeyEventMac.mm70 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
75 altKey = currentModifiers & ::optionKey;
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DInspectorView.js154 if (!event.shiftKey && !event.altKey && event.keyCode > 0x30 && event.keyCode < 0x3A) {
177 var isRotateLeft = !event.shiftKey && !event.altKey;
186 var isGoBack = event.altKey;
195 var isRotateRight = !event.shiftKey && !event.altKey;
204 var isGoForward = event.altKey;

Completed in 253 milliseconds

1234