| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 TouchMove, | 70 TouchMove, |
| 71 TouchEnd, | 71 TouchEnd, |
| 72 TouchCancel, | 72 TouchCancel, |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 enum Modifiers { | 75 enum Modifiers { |
| 76 AltKey = 1 << 0, | 76 AltKey = 1 << 0, |
| 77 CtrlKey = 1 << 1, | 77 CtrlKey = 1 << 1, |
| 78 MetaKey = 1 << 2, | 78 MetaKey = 1 << 2, |
| 79 ShiftKey = 1 << 3, | 79 ShiftKey = 1 << 3, |
| 80 |
| 81 LeftButtonDown = 1 << 6, |
| 82 MiddleButtonDown = 1 << 7, |
| 83 RightButtonDown = 1 << 8, |
| 80 }; | 84 }; |
| 81 | 85 |
| 82 Type type() const { return static_cast<Type>(m_type); } | 86 Type type() const { return static_cast<Type>(m_type); } |
| 83 | 87 |
| 84 bool shiftKey() const { return m_modifiers & ShiftKey; } | 88 bool shiftKey() const { return m_modifiers & ShiftKey; } |
| 85 bool ctrlKey() const { return m_modifiers & CtrlKey; } | 89 bool ctrlKey() const { return m_modifiers & CtrlKey; } |
| 86 bool altKey() const { return m_modifiers & AltKey; } | 90 bool altKey() const { return m_modifiers & AltKey; } |
| 87 bool metaKey() const { return m_modifiers & MetaKey; } | 91 bool metaKey() const { return m_modifiers & MetaKey; } |
| 88 | 92 |
| 89 unsigned modifiers() const { return m_modifiers; } | 93 unsigned modifiers() const { return m_modifiers; } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 } | 138 } |
| 135 | 139 |
| 136 unsigned m_type; | 140 unsigned m_type; |
| 137 unsigned m_modifiers; | 141 unsigned m_modifiers; |
| 138 double m_timestamp; | 142 double m_timestamp; |
| 139 }; | 143 }; |
| 140 | 144 |
| 141 } // namespace blink | 145 } // namespace blink |
| 142 | 146 |
| 143 #endif // PlatformEvent_h | 147 #endif // PlatformEvent_h |
| OLD | NEW |