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
3 * found in the LICENSE file.
6 /* From ppb_text_input_controller.idl modified Thu Aug 1 09:30:48 2013. */
8 #ifndef PPAPI_C_PPB_TEXT_INPUT_CONTROLLER_H_
9 #define PPAPI_C_PPB_TEXT_INPUT_CONTROLLER_H_
11 #include "ppapi/c/pp_bool.h"
12 #include "ppapi/c/pp_instance.h"
13 #include "ppapi/c/pp_macros.h"
14 #include "ppapi/c/pp_point.h"
15 #include "ppapi/c/pp_rect.h"
16 #include "ppapi/c/pp_size.h"
17 #include "ppapi/c/pp_stdint.h"
18 #include "ppapi/c/pp_var.h"
20 #define PPB_TEXTINPUTCONTROLLER_INTERFACE_1_0 "PPB_TextInputController;1.0"
21 #define PPB_TEXTINPUTCONTROLLER_INTERFACE PPB_TEXTINPUTCONTROLLER_INTERFACE_1_0
25 * This file defines the <code>PPB_TextInputController</code> interface.
34 * PP_TextInput_Type is used to indicate the status of a plugin in regard to
39 * Input caret is not in an editable mode, no input method shall be used.
41 PP_TEXTINPUT_TYPE_NONE
= 0,
43 * Input caret is in a normal editable mode, any input method can be used.
45 PP_TEXTINPUT_TYPE_TEXT
= 1,
47 * Input caret is in a password box, an input method may be used only if
48 * it's suitable for password input.
50 PP_TEXTINPUT_TYPE_PASSWORD
= 2,
51 PP_TEXTINPUT_TYPE_SEARCH
= 3,
52 PP_TEXTINPUT_TYPE_EMAIL
= 4,
53 PP_TEXTINPUT_TYPE_NUMBER
= 5,
54 PP_TEXTINPUT_TYPE_TELEPHONE
= 6,
55 PP_TEXTINPUT_TYPE_URL
= 7
57 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_TextInput_Type
, 4);
63 * @addtogroup Interfaces
67 * <code>PPB_TextInputController</code> provides a set of functions for giving
68 * hints to the browser about the text input status of plugins, and functions
69 * for controlling input method editors (IMEs).
71 struct PPB_TextInputController_1_0
{
73 * Informs the browser about the current text input mode of the plugin.
74 * Typical use of this information in the browser is to properly
75 * display/suppress tools for supporting text inputs (such as virtual
76 * keyboards in touch screen based devices, or input method editors often
77 * used for composing East Asian characters).
79 void (*SetTextInputType
)(PP_Instance instance
, PP_TextInput_Type type
);
81 * Informs the browser about the coordinates of the text input caret area.
82 * Typical use of this information in the browser is to layout IME windows
85 void (*UpdateCaretPosition
)(PP_Instance instance
,
86 const struct PP_Rect
* caret
);
88 * Cancels the current composition in IME.
90 void (*CancelCompositionText
)(PP_Instance instance
);
92 * Informs the browser about the current text selection and surrounding
93 * text. <code>text</code> is a UTF-8 string that contains the current range
94 * of text selection in the plugin. <code>caret</code> is the byte-index of
95 * the caret position within <code>text</code>. <code>anchor</code> is the
96 * byte-index of the anchor position (i.e., if a range of text is selected,
97 * it is the other edge of selection different from <code>caret</code>. If
98 * there are no selection, <code>anchor</code> is equal to <code>caret</code>.
100 * Typical use of this information in the browser is to enable "reconversion"
101 * features of IME that puts back the already committed text into the
102 * pre-commit composition state. Another use is to improve the precision
103 * of suggestion of IME by taking the context into account (e.g., if the caret
104 * looks to be on the beginning of a sentence, suggest capital letters in a
107 * When the focus is not on text, call this function setting <code>text</code>
108 * to an empty string and <code>caret</code> and <code>anchor</code> to zero.
109 * Also, the plugin should send the empty text when it does not want to reveal
110 * the selection to IME (e.g., when the surrounding text is containing
113 void (*UpdateSurroundingText
)(PP_Instance instance
,
119 typedef struct PPB_TextInputController_1_0 PPB_TextInputController
;
124 #endif /* PPAPI_C_PPB_TEXT_INPUT_CONTROLLER_H_ */