OLD | NEW |
| (Empty) |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_COMMON_TEXT_INPUT_STATE_H_ | |
6 #define CONTENT_COMMON_TEXT_INPUT_STATE_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "content/common/content_export.h" | |
11 #include "ui/base/ime/text_input_mode.h" | |
12 #include "ui/base/ime/text_input_type.h" | |
13 | |
14 namespace content { | |
15 | |
16 struct CONTENT_EXPORT TextInputState { | |
17 TextInputState(); | |
18 TextInputState(const TextInputState& other); | |
19 | |
20 // Type of the input field. | |
21 ui::TextInputType type; | |
22 | |
23 // The mode of input field. | |
24 ui::TextInputMode mode; | |
25 | |
26 // The flags of input field (autocorrect, autocomplete, etc.) | |
27 int flags; | |
28 | |
29 // The value of input field. | |
30 std::string value; | |
31 | |
32 // The cursor position of the current selection start, or the caret position | |
33 // if nothing is selected. | |
34 int selection_start; | |
35 | |
36 // The cursor position of the current selection end, or the caret position if | |
37 // nothing is selected. | |
38 int selection_end; | |
39 | |
40 // The start position of the current composition, or -1 if there is none. | |
41 int composition_start; | |
42 | |
43 // The end position of the current composition, or -1 if there is none. | |
44 int composition_end; | |
45 | |
46 // Whether or not inline composition can be performed for the current input. | |
47 bool can_compose_inline; | |
48 | |
49 // Whether or not the IME should be shown as a result of this update. Even if | |
50 // true, the IME will only be shown if the input is appropriate (e.g. not | |
51 // TEXT_INPUT_TYPE_NONE). | |
52 bool show_ime_if_needed; | |
53 | |
54 // Whether this change is originated from non-IME (e.g., Javascript, | |
55 // Autofill). | |
56 bool is_non_ime_change; | |
57 }; | |
58 | |
59 } // namespace content | |
60 | |
61 #endif // CONTENT_COMMON_TEXT_INPUT_STATE_H_ | |
OLD | NEW |