Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: Source/platform/PlatformEvent.h

Issue 727593003: Implement MouseEvent buttons attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: nits Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/page/EventHandler.cpp ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698