Searched refs:PlatformKeyboardEvent (Results 1 - 25 of 73) sorted by relevance

123

/external/webkit/Source/WebCore/platform/
H A DPlatformKeyboardEvent.h78 class PlatformKeyboardEvent { class in namespace:WebCore
102 PlatformKeyboardEvent() function in class:WebCore::PlatformKeyboardEvent
167 PlatformKeyboardEvent(NSEvent*);
172 PlatformKeyboardEvent(HWND, WPARAM, LPARAM, Type, bool);
176 PlatformKeyboardEvent(GdkEventKey*);
186 PlatformKeyboardEvent(int keyCode, UChar32 unichar, int repeatCount,
193 PlatformKeyboardEvent(QKeyEvent*);
200 PlatformKeyboardEvent(wxKeyEvent&);
204 PlatformKeyboardEvent(BMessage*);
208 PlatformKeyboardEvent(AEEEven
[all...]
/external/webkit/Source/WebCore/platform/iphone/
H A DKeyEventIPhone.mm27 #import "PlatformKeyboardEvent.h"
51 PlatformKeyboardEvent::PlatformKeyboardEvent(WebEvent *event)
52 : m_type(event.type == WebEventKeyUp ? PlatformKeyboardEvent::KeyUp : PlatformKeyboardEvent::KeyDown)
87 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
112 bool PlatformKeyboardEvent::currentCapsLockState()
/external/webkit/Source/WebCore/platform/win/
H A DKeyEventWin.cpp27 #include "PlatformKeyboardEvent.h"
145 static bool isKeypadEvent(WPARAM code, LPARAM keyData, PlatformKeyboardEvent::Type type)
147 if (type != PlatformKeyboardEvent::RawKeyDown && type != PlatformKeyboardEvent::KeyUp)
189 PlatformKeyboardEvent::PlatformKeyboardEvent(HWND, WPARAM code, LPARAM keyData, Type type, bool systemKey) function in class:WebCore::PlatformKeyboardEvent
206 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type, bool)
212 bool PlatformKeyboardEvent::currentCapsLockState()
217 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebCore/dom/
H A DKeyboardEvent.cpp32 #include "PlatformKeyboardEvent.h"
37 static inline const AtomicString& eventTypeForKeyboardEventType(PlatformKeyboardEvent::Type type)
40 case PlatformKeyboardEvent::KeyUp:
42 case PlatformKeyboardEvent::RawKeyDown:
44 case PlatformKeyboardEvent::Char:
46 case PlatformKeyboardEvent::KeyDown:
61 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* view)
64 , m_keyEvent(new PlatformKeyboardEvent(key))
H A DKeyboardEvent.h34 class PlatformKeyboardEvent;
61 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view)
85 const PlatformKeyboardEvent* keyEvent() const { return m_keyEvent.get(); }
100 KeyboardEvent(const PlatformKeyboardEvent&, AbstractView*);
105 OwnPtr<PlatformKeyboardEvent> m_keyEvent;
H A DEventDispatcher.h40 class PlatformKeyboardEvent;
/external/webkit/Source/WebCore/platform/chromium/
H A DFramelessScrollView.h39 class PlatformKeyboardEvent;
62 virtual bool handleKeyEvent(const PlatformKeyboardEvent&) = 0;
H A DPlatformKeyboardEventChromium.cpp28 #include "PlatformKeyboardEvent.h"
44 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
76 bool PlatformKeyboardEvent::currentCapsLockState()
89 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebKit2/Shared/
H A DWebEventConversion.h29 #include <WebCore/PlatformKeyboardEvent.h>
59 WebCore::PlatformKeyboardEvent platform(const WebKeyboardEvent&);
H A DWebEventConversion.cpp127 class WebKit2PlatformKeyboardEvent : public WebCore::PlatformKeyboardEvent {
133 m_type = PlatformKeyboardEvent::KeyDown;
136 m_type = PlatformKeyboardEvent::KeyUp;
139 m_type = PlatformKeyboardEvent::RawKeyDown;
142 m_type = PlatformKeyboardEvent::Char;
167 WebCore::PlatformKeyboardEvent platform(const WebKeyboardEvent& webEvent)
/external/webkit/Source/WebCore/page/qt/
H A DEventHandlerQt.cpp48 #include "PlatformKeyboardEvent.h"
127 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
129 return PlatformKeyboardEvent::AltKey;
/external/webkit/Source/WebCore/platform/mac/
H A DKeyEventMac.mm27 #import "PlatformKeyboardEvent.h"
191 PlatformKeyboardEvent::PlatformKeyboardEvent(NSEvent *event)
192 : m_type(isKeyUpEvent(event) ? PlatformKeyboardEvent::KeyUp : PlatformKeyboardEvent::KeyDown)
225 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
250 bool PlatformKeyboardEvent::currentCapsLockState()
255 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebKit/chromium/tests/
H A DKeyboardTest.cpp55 PlatformKeyboardEvent::Type keyType)
88 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::RawKeyDown);
96 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::RawKeyDown);
104 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
112 return interpretKeyEvent(keyboardEvent, PlatformKeyboardEvent::Char);
172 PlatformKeyboardEvent::RawKeyDown);
/external/webkit/Source/WebCore/platform/gtk/
H A DPlatformKeyboardEventGtk.cpp31 #include "PlatformKeyboardEvent.h"
46 String PlatformKeyboardEvent::keyIdentifierForGdkKeyCode(unsigned keyCode)
152 int PlatformKeyboardEvent::windowsKeyCodeForGdkKeyCode(unsigned keycode)
519 String PlatformKeyboardEvent::singleCharacterString(unsigned val)
549 PlatformKeyboardEvent::PlatformKeyboardEvent(GdkEventKey* event) function in class:WebCore::PlatformKeyboardEvent
566 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
584 bool PlatformKeyboardEvent::currentCapsLockState()
589 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
600 GdkEventKey* PlatformKeyboardEvent
[all...]
/external/webkit/Source/WebCore/platform/android/
H A DKeyEventAndroid.cpp32 #include "PlatformKeyboardEvent.h"
213 PlatformKeyboardEvent::PlatformKeyboardEvent(int keyCode, UChar32 unichar, function in class:WebCore::PlatformKeyboardEvent
248 bool PlatformKeyboardEvent::currentCapsLockState()
254 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
263 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool backwardCompatibilityMode)
/external/webkit/Source/WebCore/platform/brew/
H A DPlatformKeyboardEventBrew.cpp27 #include "PlatformKeyboardEvent.h"
217 PlatformKeyboardEvent::PlatformKeyboardEvent(AEEEvent event, uint16 code, uint32 modifiers, Type type) function in class:WebCore::PlatformKeyboardEvent
240 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
246 bool PlatformKeyboardEvent::currentCapsLockState()
252 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebCore/platform/wx/
H A DKeyboardEventWx.cpp27 #include "PlatformKeyboardEvent.h"
337 PlatformKeyboardEvent::PlatformKeyboardEvent(wxKeyEvent& event) function in class:WebCore::PlatformKeyboardEvent
371 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
385 bool PlatformKeyboardEvent::currentCapsLockState()
390 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebCore/platform/efl/
H A DPlatformKeyboardEventEfl.cpp33 #include "PlatformKeyboardEvent.h"
191 PlatformKeyboardEvent::PlatformKeyboardEvent(const Evas_Event_Key_Down* event) function in class:WebCore::PlatformKeyboardEvent
208 PlatformKeyboardEvent::PlatformKeyboardEvent(const Evas_Event_Key_Up* event) function in class:WebCore::PlatformKeyboardEvent
225 void PlatformKeyboardEvent::disambiguateKeyDownEvent(Type type, bool)
239 bool PlatformKeyboardEvent::currentCapsLockState()
245 void PlatformKeyboardEvent::getCurrentModifierState(bool& shiftKey, bool& ctrlKey, bool& altKey, bool& metaKey)
/external/webkit/Source/WebCore/page/chromium/
H A DEventHandlerChromium.cpp42 #include "PlatformKeyboardEvent.h"
151 return PlatformKeyboardEvent::CtrlKey | PlatformKeyboardEvent::AltKey;
153 return PlatformKeyboardEvent::AltKey;
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebEventFactory.cpp32 #include "PlatformKeyboardEvent.h"
177 PlatformKeyboardEvent::singleCharacterString(event->keyval),
178 PlatformKeyboardEvent::singleCharacterString(event->keyval),
179 PlatformKeyboardEvent::keyIdentifierForGdkKeyCode(event->keyval),
180 PlatformKeyboardEvent::windowsKeyCodeForGdkKeyCode(event->keyval),
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputEventConversion.cpp38 #include "PlatformKeyboardEvent.h"
107 static inline PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
111 return PlatformKeyboardEvent::KeyUp;
113 return PlatformKeyboardEvent::KeyDown;
115 return PlatformKeyboardEvent::RawKeyDown;
117 return PlatformKeyboardEvent::Char;
121 return PlatformKeyboardEvent::KeyDown;
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp24 #include "PlatformKeyboardEvent.h"
71 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
82 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) {
/external/webkit/Source/WebCore/page/android/
H A DEventHandlerAndroid.cpp36 #include "PlatformKeyboardEvent.h"
116 return PlatformKeyboardEvent::AltKey;
/external/webkit/Source/WebCore/page/brew/
H A DEventHandlerBrew.cpp41 #include "PlatformKeyboardEvent.h"
123 return PlatformKeyboardEvent::AltKey;
/external/webkit/Source/WebCore/page/efl/
H A DEventHandlerEfl.cpp42 #include "PlatformKeyboardEvent.h"
123 return PlatformKeyboardEvent::AltKey;

Completed in 1921 milliseconds

123