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

Side by Side Diff: third_party/WebKit/Source/platform/PlatformMouseEvent.h

Issue 2539283002: Remove PlatformGestureEvent in favour of using WebGestureEvent (Closed)
Patch Set: Add missing copyright on new file Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2009 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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef PlatformMouseEvent_h 26 #ifndef PlatformMouseEvent_h
27 #define PlatformMouseEvent_h 27 #define PlatformMouseEvent_h
28 28
29 #include "platform/PlatformEvent.h" 29 #include "platform/PlatformEvent.h"
30 #include "platform/geometry/FloatPoint.h"
30 #include "platform/geometry/IntPoint.h" 31 #include "platform/geometry/IntPoint.h"
32 #include "public/platform/WebGestureEvent.h"
31 #include "public/platform/WebPointerProperties.h" 33 #include "public/platform/WebPointerProperties.h"
32 #include "wtf/text/WTFString.h" 34 #include "wtf/text/WTFString.h"
33 35
34 namespace blink { 36 namespace blink {
35 37
36 class PlatformMouseEvent : public PlatformEvent { 38 class PlatformMouseEvent : public PlatformEvent {
37 public: 39 public:
38 enum SyntheticEventType { 40 enum SyntheticEventType {
39 // Real mouse input events or synthetic events that behave just like real 41 // Real mouse input events or synthetic events that behave just like real
40 // events 42 // events
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 WebPointerProperties::PointerType::Unknown) 82 WebPointerProperties::PointerType::Unknown)
81 : PlatformEvent(type, modifiers, timestamp), 83 : PlatformEvent(type, modifiers, timestamp),
82 m_position(position), 84 m_position(position),
83 m_globalPosition(globalPosition), 85 m_globalPosition(globalPosition),
84 m_clickCount(clickCount), 86 m_clickCount(clickCount),
85 m_synthesized(synthesized) { 87 m_synthesized(synthesized) {
86 m_pointerProperties.pointerType = pointerType; 88 m_pointerProperties.pointerType = pointerType;
87 m_pointerProperties.button = button; 89 m_pointerProperties.button = button;
88 } 90 }
89 91
92 #if INSIDE_BLINK
93 PlatformMouseEvent(const WebGestureEvent& gestureEvent,
94 WebPointerProperties::Button button,
95 EventType type,
96 int clickCount,
97 Modifiers modifiers,
98 SyntheticEventType synthesized,
99 TimeTicks timestamp,
100 WebPointerProperties::PointerType pointerType =
101 WebPointerProperties::PointerType::Unknown)
102 : PlatformMouseEvent(flooredIntPoint(gestureEvent.positionInRootFrame()),
103 IntPoint(gestureEvent.globalX, gestureEvent.globalY),
104 button,
105 type,
106 clickCount,
107 modifiers,
108 synthesized,
109 timestamp,
110 pointerType) {}
111 #endif
112
90 const WebPointerProperties& pointerProperties() const { 113 const WebPointerProperties& pointerProperties() const {
91 return m_pointerProperties; 114 return m_pointerProperties;
92 } 115 }
93 const IntPoint& position() const { return m_position; } 116 const IntPoint& position() const { return m_position; }
94 const IntPoint& globalPosition() const { return m_globalPosition; } 117 const IntPoint& globalPosition() const { return m_globalPosition; }
95 const IntPoint& movementDelta() const { return m_movementDelta; } 118 const IntPoint& movementDelta() const { return m_movementDelta; }
96 119
97 int clickCount() const { return m_clickCount; } 120 int clickCount() const { return m_clickCount; }
98 bool fromTouch() const { return m_synthesized == FromTouch; } 121 bool fromTouch() const { return m_synthesized == FromTouch; }
99 SyntheticEventType getSyntheticEventType() const { return m_synthesized; } 122 SyntheticEventType getSyntheticEventType() const { return m_synthesized; }
(...skipping 18 matching lines...) Expand all
118 // For canvas hit region. 141 // For canvas hit region.
119 // TODO(zino): This might make more sense to put in HitTestResults or 142 // TODO(zino): This might make more sense to put in HitTestResults or
120 // some other part of MouseEventWithHitTestResults, but for now it's 143 // some other part of MouseEventWithHitTestResults, but for now it's
121 // most convenient to stash it here. Please see: http://crbug.com/592947. 144 // most convenient to stash it here. Please see: http://crbug.com/592947.
122 String m_region; 145 String m_region;
123 }; 146 };
124 147
125 } // namespace blink 148 } // namespace blink
126 149
127 #endif // PlatformMouseEvent_h 150 #endif // PlatformMouseEvent_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/PlatformGestureEvent.h ('k') | third_party/WebKit/Source/platform/WebGestureEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698