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

Side by Side Diff: ui/events/event_utils.h

Issue 134773004: Include external touchscreen vid/pid in UMA hardware profile (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address oshima's comments. Created 6 years, 11 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_EVENTS_EVENT_UTILS_H_ 5 #ifndef UI_EVENTS_EVENT_UTILS_H_
6 #define UI_EVENTS_EVENT_UTILS_H_ 6 #define UI_EVENTS_EVENT_UTILS_H_
7 7
8 #include "base/event_types.h" 8 #include "base/event_types.h"
9 #include "ui/events/event_constants.h" 9 #include "ui/events/event_constants.h"
10 #include "ui/events/keycodes/keyboard_codes.h" 10 #include "ui/events/keycodes/keyboard_codes.h"
11 #include "ui/gfx/display.h"
11 #include "ui/gfx/native_widget_types.h" 12 #include "ui/gfx/native_widget_types.h"
12 #include "ui/events/events_export.h" 13 #include "ui/events/events_export.h"
13 14
14 #if defined(OS_WIN) 15 #if defined(OS_WIN)
15 #include <windows.h> 16 #include <windows.h>
16 #endif 17 #endif
17 18
18 namespace gfx { 19 namespace gfx {
19 class Point; 20 class Point;
20 class Vector2d; 21 class Vector2d;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 127
127 // Enable/disable natural scrolling for touchpads. 128 // Enable/disable natural scrolling for touchpads.
128 EVENTS_EXPORT void SetNaturalScroll(bool enabled); 129 EVENTS_EXPORT void SetNaturalScroll(bool enabled);
129 130
130 // In natural scrolling enabled for touchpads? 131 // In natural scrolling enabled for touchpads?
131 EVENTS_EXPORT bool IsNaturalScrollEnabled(); 132 EVENTS_EXPORT bool IsNaturalScrollEnabled();
132 133
133 // Returns whether natural scrolling should be used for touchpad. 134 // Returns whether natural scrolling should be used for touchpad.
134 EVENTS_EXPORT bool ShouldDefaultToNaturalScroll(); 135 EVENTS_EXPORT bool ShouldDefaultToNaturalScroll();
135 136
137 // Returns whether or not the internal display produces touch events.
138 EVENTS_EXPORT gfx::Display::TouchSupport InternalDisplaySupportsTouch();
139
136 // Was this event generated by a touchpad device? 140 // Was this event generated by a touchpad device?
137 // The caller is responsible for ensuring that this is a mouse/touchpad event 141 // The caller is responsible for ensuring that this is a mouse/touchpad event
138 // before calling this function. 142 // before calling this function.
139 EVENTS_EXPORT bool IsTouchpadEvent(const base::NativeEvent& event); 143 EVENTS_EXPORT bool IsTouchpadEvent(const base::NativeEvent& event);
140 144
141 // Returns true if event is noop. 145 // Returns true if event is noop.
142 EVENTS_EXPORT bool IsNoopEvent(const base::NativeEvent& event); 146 EVENTS_EXPORT bool IsNoopEvent(const base::NativeEvent& event);
143 147
144 // Creates and returns no-op event. 148 // Creates and returns no-op event.
145 EVENTS_EXPORT base::NativeEvent CreateNoopEvent(); 149 EVENTS_EXPORT base::NativeEvent CreateNoopEvent();
(...skipping 11 matching lines...) Expand all
157 EVENTS_EXPORT uint16 GetScanCodeFromLParam(LPARAM lParam); 161 EVENTS_EXPORT uint16 GetScanCodeFromLParam(LPARAM lParam);
158 EVENTS_EXPORT LPARAM GetLParamFromScanCode(uint16 scan_code); 162 EVENTS_EXPORT LPARAM GetLParamFromScanCode(uint16 scan_code);
159 #endif 163 #endif
160 164
161 // Registers a custom event type. 165 // Registers a custom event type.
162 EVENTS_EXPORT int RegisterCustomEventType(); 166 EVENTS_EXPORT int RegisterCustomEventType();
163 167
164 } // namespace ui 168 } // namespace ui
165 169
166 #endif // UI_EVENTS_EVENT_UTILS_H_ 170 #endif // UI_EVENTS_EVENT_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698