OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ |
6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ | 6 #define CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 enum MouseButtonEvent { | 57 enum MouseButtonEvent { |
58 MOUSE_BUTTON_LEFT, | 58 MOUSE_BUTTON_LEFT, |
59 MOUSE_BUTTON_RIGHT, | 59 MOUSE_BUTTON_RIGHT, |
60 MOUSE_BUTTON_MIDDLE, | 60 MOUSE_BUTTON_MIDDLE, |
61 }; | 61 }; |
62 | 62 |
63 enum SegmentStyle { | 63 enum SegmentStyle { |
64 SEGMENT_STYLE_UNDERLINE, | 64 SEGMENT_STYLE_UNDERLINE, |
65 SEGMENT_STYLE_DOUBLE_UNDERLINE, | 65 SEGMENT_STYLE_DOUBLE_UNDERLINE, |
| 66 SEGMENT_STYLE_NO_UNDERLINE, |
66 }; | 67 }; |
67 | 68 |
68 enum CandidateWindowPosition { | 69 enum CandidateWindowPosition { |
69 WINDOW_POS_CURSOR, | 70 WINDOW_POS_CURSOR, |
70 WINDOW_POS_COMPOSITTION, | 71 WINDOW_POS_COMPOSITTION, |
71 }; | 72 }; |
72 | 73 |
73 struct MenuItem { | 74 struct MenuItem { |
74 MenuItem(); | 75 MenuItem(); |
75 virtual ~MenuItem(); | 76 virtual ~MenuItem(); |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 size_t number_of_chars, | 242 size_t number_of_chars, |
242 std::string* error) = 0; | 243 std::string* error) = 0; |
243 | 244 |
244 // Hides the input view window (from API call). | 245 // Hides the input view window (from API call). |
245 virtual void HideInputView() = 0; | 246 virtual void HideInputView() = 0; |
246 }; | 247 }; |
247 | 248 |
248 } // namespace chromeos | 249 } // namespace chromeos |
249 | 250 |
250 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ | 251 #endif // CHROME_BROWSER_CHROMEOS_INPUT_METHOD_INPUT_METHOD_ENGINE_INTERFACE_H_ |
OLD | NEW |