| 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 #ifndef PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 5 #ifndef PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
| 6 #define PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 6 #define PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 PP_InputEvent_MouseButton mouse_button; | 33 PP_InputEvent_MouseButton mouse_button; |
| 34 PP_Point mouse_position; | 34 PP_Point mouse_position; |
| 35 int32_t mouse_click_count; | 35 int32_t mouse_click_count; |
| 36 PP_Point mouse_movement; | 36 PP_Point mouse_movement; |
| 37 | 37 |
| 38 PP_FloatPoint wheel_delta; | 38 PP_FloatPoint wheel_delta; |
| 39 PP_FloatPoint wheel_ticks; | 39 PP_FloatPoint wheel_ticks; |
| 40 bool wheel_scroll_by_page; | 40 bool wheel_scroll_by_page; |
| 41 | 41 |
| 42 uint32_t key_code; | 42 uint32_t key_code; |
| 43 uint32_t usb_key_code; |
| 43 | 44 |
| 44 std::string character_text; | 45 std::string character_text; |
| 45 | 46 |
| 46 std::vector<uint32_t> composition_segment_offsets; | 47 std::vector<uint32_t> composition_segment_offsets; |
| 47 int32_t composition_target_segment; | 48 int32_t composition_target_segment; |
| 48 uint32_t composition_selection_start; | 49 uint32_t composition_selection_start; |
| 49 uint32_t composition_selection_end; | 50 uint32_t composition_selection_end; |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 // This simple class implements the PPB_InputEvent_API in terms of the | 53 // This simple class implements the PPB_InputEvent_API in terms of the |
| (...skipping 16 matching lines...) Expand all Loading... |
| 69 virtual uint32_t GetModifiers() OVERRIDE; | 70 virtual uint32_t GetModifiers() OVERRIDE; |
| 70 virtual PP_InputEvent_MouseButton GetMouseButton() OVERRIDE; | 71 virtual PP_InputEvent_MouseButton GetMouseButton() OVERRIDE; |
| 71 virtual PP_Point GetMousePosition() OVERRIDE; | 72 virtual PP_Point GetMousePosition() OVERRIDE; |
| 72 virtual int32_t GetMouseClickCount() OVERRIDE; | 73 virtual int32_t GetMouseClickCount() OVERRIDE; |
| 73 virtual PP_Point GetMouseMovement() OVERRIDE; | 74 virtual PP_Point GetMouseMovement() OVERRIDE; |
| 74 virtual PP_FloatPoint GetWheelDelta() OVERRIDE; | 75 virtual PP_FloatPoint GetWheelDelta() OVERRIDE; |
| 75 virtual PP_FloatPoint GetWheelTicks() OVERRIDE; | 76 virtual PP_FloatPoint GetWheelTicks() OVERRIDE; |
| 76 virtual PP_Bool GetWheelScrollByPage() OVERRIDE; | 77 virtual PP_Bool GetWheelScrollByPage() OVERRIDE; |
| 77 virtual uint32_t GetKeyCode() OVERRIDE; | 78 virtual uint32_t GetKeyCode() OVERRIDE; |
| 78 virtual PP_Var GetCharacterText() OVERRIDE; | 79 virtual PP_Var GetCharacterText() OVERRIDE; |
| 80 virtual PP_Bool SetUsbKeyCode(uint32_t usb_key_code) OVERRIDE; |
| 81 virtual uint32_t GetUsbKeyCode() OVERRIDE; |
| 79 virtual uint32_t GetIMESegmentNumber() OVERRIDE; | 82 virtual uint32_t GetIMESegmentNumber() OVERRIDE; |
| 80 virtual uint32_t GetIMESegmentOffset(uint32_t index) OVERRIDE; | 83 virtual uint32_t GetIMESegmentOffset(uint32_t index) OVERRIDE; |
| 81 virtual int32_t GetIMETargetSegment() OVERRIDE; | 84 virtual int32_t GetIMETargetSegment() OVERRIDE; |
| 82 virtual void GetIMESelection(uint32_t* start, uint32_t* end) OVERRIDE; | 85 virtual void GetIMESelection(uint32_t* start, uint32_t* end) OVERRIDE; |
| 83 | 86 |
| 84 private: | 87 private: |
| 85 InputEventData data_; | 88 InputEventData data_; |
| 86 | 89 |
| 87 DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_InputEvent_Shared); | 90 DISALLOW_IMPLICIT_CONSTRUCTORS(PPB_InputEvent_Shared); |
| 88 }; | 91 }; |
| 89 | 92 |
| 90 } // namespace ppapi | 93 } // namespace ppapi |
| 91 | 94 |
| 92 #endif // PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ | 95 #endif // PPAPI_SHARED_IMPL_PPB_INPUT_EVENT_SHARED_H_ |
| OLD | NEW |