1/*
2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met:
7 *
8 *     * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 *     * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
13 * distribution.
14 *     * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef WebTextInputType_h
32#define WebTextInputType_h
33
34namespace blink {
35
36enum WebTextInputType {
37    // Input caret is not in an editable node, no input method shall be used.
38    WebTextInputTypeNone,
39
40    // Input caret is in a normal editable node, any input method can be used.
41    WebTextInputTypeText,
42
43    // Input caret is in a specific input field, and input method may be used
44    // only if it's suitable for the specific input field.
45    WebTextInputTypePassword,
46    WebTextInputTypeSearch,
47    WebTextInputTypeEmail,
48    WebTextInputTypeNumber,
49    WebTextInputTypeTelephone,
50    WebTextInputTypeURL,
51
52    // FIXME: Remove these types once Date like types are not
53    // seen as Text. For now they also exist in WebTextInputType
54    WebTextInputTypeDate,
55    WebTextInputTypeDateTime,
56    WebTextInputTypeDateTimeLocal,
57    WebTextInputTypeMonth,
58    WebTextInputTypeTime,
59    WebTextInputTypeWeek,
60    WebTextInputTypeTextArea,
61
62    // Input caret is in a contenteditable node (not an INPUT field).
63    WebTextInputTypeContentEditable,
64
65    // The focused node is date time field. The date time field does not have
66    // input caret but it is necessary to distinguish from WebTextInputTypeNone
67    // for on-screen keyboard.
68    WebTextInputTypeDateTimeField,
69};
70
71// Separate on/off flags are defined so that the input mechanism can choose
72// an appropriate default based on other things (like InputType and direct
73// knowledge of the actual input system) if there are no overrides.
74enum WebTextInputFlags {
75    WebTextInputFlagNone = 0,
76    WebTextInputFlagAutocompleteOn = 1 << 0,
77    WebTextInputFlagAutocompleteOff = 1 << 1,
78    WebTextInputFlagAutocorrectOn = 1 << 2,
79    WebTextInputFlagAutocorrectOff = 1 << 3,
80    WebTextInputFlagSpellcheckOn = 1 << 4,
81    WebTextInputFlagSpellcheckOff = 1 << 5
82};
83
84} // namespace blink
85
86#endif
87