| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
| 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 void initKeyboardEvent(ScriptState*, const AtomicString& type, bool canBubbl
e, bool cancelable, AbstractView*, | 69 void initKeyboardEvent(ScriptState*, const AtomicString& type, bool canBubbl
e, bool cancelable, AbstractView*, |
| 70 const String& keyIdentifier, unsigned location, | 70 const String& keyIdentifier, unsigned location, |
| 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); | 71 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); |
| 72 | 72 |
| 73 const String& keyIdentifier() const { return m_keyIdentifier; } | 73 const String& keyIdentifier() const { return m_keyIdentifier; } |
| 74 const String& code() const { return m_code; } | 74 const String& code() const { return m_code; } |
| 75 const String& key() const { return m_key; } | 75 const String& key() const { return m_key; } |
| 76 | 76 |
| 77 unsigned location() const { return m_location; } | 77 unsigned location() const { return m_location; } |
| 78 | 78 |
| 79 bool getModifierState(const String& keyIdentifier) const; | |
| 80 | |
| 81 const PlatformKeyboardEvent* keyEvent() const { return m_keyEvent.get(); } | 79 const PlatformKeyboardEvent* keyEvent() const { return m_keyEvent.get(); } |
| 82 | 80 |
| 83 int keyCode() const; // key code for keydown and keyup, character for keypre
ss | 81 int keyCode() const; // key code for keydown and keyup, character for keypre
ss |
| 84 int charCode() const; // character code for keypress, 0 for keydown and keyu
p | 82 int charCode() const; // character code for keypress, 0 for keydown and keyu
p |
| 85 bool repeat() const { return m_isAutoRepeat; } | 83 bool repeat() const { return m_isAutoRepeat; } |
| 86 | 84 |
| 87 const AtomicString& interfaceName() const override; | 85 const AtomicString& interfaceName() const override; |
| 88 bool isKeyboardEvent() const override; | 86 bool isKeyboardEvent() const override; |
| 89 int which() const override; | 87 int which() const override; |
| 90 | 88 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 114 private: | 112 private: |
| 115 explicit KeyboardEventDispatchMediator(PassRefPtrWillBeRawPtr<KeyboardEvent>
); | 113 explicit KeyboardEventDispatchMediator(PassRefPtrWillBeRawPtr<KeyboardEvent>
); |
| 116 bool dispatchEvent(EventDispatcher&) const override; | 114 bool dispatchEvent(EventDispatcher&) const override; |
| 117 }; | 115 }; |
| 118 | 116 |
| 119 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); | 117 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); |
| 120 | 118 |
| 121 } // namespace blink | 119 } // namespace blink |
| 122 | 120 |
| 123 #endif // KeyboardEvent_h | 121 #endif // KeyboardEvent_h |
| OLD | NEW |