| 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 15 matching lines...) Expand all Loading... |
| 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/WebInputEvent.h" |
| 32 #include <memory> | 32 #include <memory> |
| 33 | 33 |
| 34 namespace blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class EventDispatcher; | |
| 37 | 36 |
| 38 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { | 37 class CORE_EXPORT KeyboardEvent final : public UIEventWithKeyState { |
| 39 DEFINE_WRAPPERTYPEINFO(); | 38 DEFINE_WRAPPERTYPEINFO(); |
| 40 | 39 |
| 41 public: | 40 public: |
| 42 enum KeyLocationCode { | 41 enum KeyLocationCode { |
| 43 kDomKeyLocationStandard = 0x00, | 42 kDomKeyLocationStandard = 0x00, |
| 44 kDomKeyLocationLeft = 0x01, | 43 kDomKeyLocationLeft = 0x01, |
| 45 kDomKeyLocationRight = 0x02, | 44 kDomKeyLocationRight = 0x02, |
| 46 kDomKeyLocationNumpad = 0x03 | 45 kDomKeyLocationNumpad = 0x03 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 String m_code; | 121 String m_code; |
| 123 String m_key; | 122 String m_key; |
| 124 unsigned m_location; | 123 unsigned m_location; |
| 125 }; | 124 }; |
| 126 | 125 |
| 127 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); | 126 DEFINE_EVENT_TYPE_CASTS(KeyboardEvent); |
| 128 | 127 |
| 129 } // namespace blink | 128 } // namespace blink |
| 130 | 129 |
| 131 #endif // KeyboardEvent_h | 130 #endif // KeyboardEvent_h |
| OLD | NEW |