| 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 | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights |
| 6 * reserved. | 6 * reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
| 22 * | 22 * |
| 23 */ | 23 */ |
| 24 | 24 |
| 25 #ifndef KeyboardEvent_h | 25 #ifndef KeyboardEvent_h |
| 26 #define KeyboardEvent_h | 26 #define KeyboardEvent_h |
| 27 | 27 |
| 28 #include "core/CoreExport.h" | 28 #include "core/CoreExport.h" |
| 29 #include "core/events/KeyboardEventInit.h" | 29 #include "core/events/KeyboardEventInit.h" |
| 30 #include "core/events/UIEventWithKeyState.h" | 30 #include "core/events/UIEventWithKeyState.h" |
| 31 #include "public/platform/WebInputEvent.h" | 31 #include "public/platform/WebKeyboardEvent.h" |
| 32 #include <memory> | 32 #include <memory> |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { | 36 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { |
| 37 DEFINE_WRAPPERTYPEINFO(); | 37 DEFINE_WRAPPERTYPEINFO(); |
| 38 | 38 |
| 39 public: | 39 public: |
| 40 enum KeyLocationCode { | 40 enum KeyLocationCode { |
| 41 kDomKeyLocationStandard = 0x00, | 41 kDomKeyLocationStandard = 0x00, |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 String m_key; | 100 String m_key; |
| 101 unsigned m_location; | 101 unsigned m_location; |
| 102 bool m_isComposing; | 102 bool m_isComposing; |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); | 105 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); |
| 106 | 106 |
| 107 } // namespace blink | 107 } // namespace blink |
| 108 | 108 |
| 109 #endif // KeyboardEvent_h | 109 #endif // KeyboardEvent_h |
| OLD | NEW |