OLD | NEW |
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 #include <windowsx.h> | 5 #include <windowsx.h> |
6 | 6 |
7 #include "ui/events/event_constants.h" | 7 #include "ui/events/event_constants.h" |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 } | 257 } |
258 | 258 |
259 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { | 259 uint32 PlatformKeycodeFromNative(const base::NativeEvent& native_event) { |
260 return static_cast<uint32>(native_event.wParam); | 260 return static_cast<uint32>(native_event.wParam); |
261 } | 261 } |
262 | 262 |
263 bool IsCharFromNative(const base::NativeEvent& native_event) { | 263 bool IsCharFromNative(const base::NativeEvent& native_event) { |
264 return native_event.message == WM_CHAR; | 264 return native_event.message == WM_CHAR; |
265 } | 265 } |
266 | 266 |
267 uint32 WindowsKeycodeFromNative(const base::NativeEvent& native_event) { | |
268 return static_cast<uint32>(native_event.wParam); | |
269 } | |
270 | |
271 uint16 TextFromNative(const base::NativeEvent& native_event) { | |
272 return static_cast<uint32>(native_event.wParam); | |
273 } | |
274 | |
275 uint16 UnmodifiedTextFromNative(const base::NativeEvent& native_event) { | |
276 return static_cast<uint32>(native_event.wParam); | |
277 } | |
278 | |
279 int GetChangedMouseButtonFlagsFromNative( | 267 int GetChangedMouseButtonFlagsFromNative( |
280 const base::NativeEvent& native_event) { | 268 const base::NativeEvent& native_event) { |
281 switch (GetNativeMouseKey(native_event)) { | 269 switch (GetNativeMouseKey(native_event)) { |
282 case MK_LBUTTON: | 270 case MK_LBUTTON: |
283 return EF_LEFT_MOUSE_BUTTON; | 271 return EF_LEFT_MOUSE_BUTTON; |
284 case MK_MBUTTON: | 272 case MK_MBUTTON: |
285 return EF_MIDDLE_MOUSE_BUTTON; | 273 return EF_MIDDLE_MOUSE_BUTTON; |
286 case MK_RBUTTON: | 274 case MK_RBUTTON: |
287 return EF_RIGHT_MOUSE_BUTTON; | 275 return EF_RIGHT_MOUSE_BUTTON; |
288 // TODO: add support for MK_XBUTTON1. | 276 // TODO: add support for MK_XBUTTON1. |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 } | 401 } |
414 | 402 |
415 LPARAM GetLParamFromScanCode(uint16 scan_code) { | 403 LPARAM GetLParamFromScanCode(uint16 scan_code) { |
416 LPARAM l_param = static_cast<LPARAM>(scan_code & 0x00FF) << 16; | 404 LPARAM l_param = static_cast<LPARAM>(scan_code & 0x00FF) << 16; |
417 if ((scan_code & 0xE000) == 0xE000) | 405 if ((scan_code & 0xE000) == 0xE000) |
418 l_param |= (1 << 24); | 406 l_param |= (1 << 24); |
419 return l_param; | 407 return l_param; |
420 } | 408 } |
421 | 409 |
422 } // namespace ui | 410 } // namespace ui |
OLD | NEW |