OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 5 #ifndef UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 6 #define UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
7 | 7 |
8 #include "ui/keyboard/keyboard_export.h" | 8 #include "ui/keyboard/keyboard_export.h" |
9 | 9 |
10 namespace keyboard { | 10 namespace keyboard { |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 // Gesture typing flag for the virtual keyboard. | 33 // Gesture typing flag for the virtual keyboard. |
34 KEYBOARD_EXPORT extern const char kGestureTyping[]; | 34 KEYBOARD_EXPORT extern const char kGestureTyping[]; |
35 | 35 |
36 // Enables gesture typing for the virtual keyboard. | 36 // Enables gesture typing for the virtual keyboard. |
37 KEYBOARD_EXPORT extern const char kGestureTypingEnabled[]; | 37 KEYBOARD_EXPORT extern const char kGestureTypingEnabled[]; |
38 | 38 |
39 // Disables gesture typing for the virtual keyboard. | 39 // Disables gesture typing for the virtual keyboard. |
40 KEYBOARD_EXPORT extern const char kGestureTypingDisabled[]; | 40 KEYBOARD_EXPORT extern const char kGestureTypingDisabled[]; |
41 | 41 |
42 // Gesture selection for the virtual keyboard. | 42 // Controls the appearance of the settings option to enable gesture editing |
43 KEYBOARD_EXPORT extern const char kGestureSelection[]; | 43 // for the virtual keyboard. |
| 44 KEYBOARD_EXPORT extern const char kGestureEditing[]; |
44 | 45 |
45 // Enables gesture selection for the virtual keyboard. | 46 // Enables gesture editing for the virtual keyboard. |
46 KEYBOARD_EXPORT extern const char kGestureSelectionEnabled[]; | 47 KEYBOARD_EXPORT extern const char kGestureEditingEnabled[]; |
47 | 48 |
48 // Disables gesture selection for the virtual keyboard. | 49 // Disables gesture editing for the virtual keyboard. |
49 KEYBOARD_EXPORT extern const char kGestureSelectionDisabled[]; | 50 KEYBOARD_EXPORT extern const char kGestureEditingDisabled[]; |
50 | |
51 // Gesture deletion for the virtual keyboard. | |
52 KEYBOARD_EXPORT extern const char kGestureDeletion[]; | |
53 | |
54 // Enables gesture deletion for the virtual keyboard. | |
55 KEYBOARD_EXPORT extern const char kGestureDeletionEnabled[]; | |
56 | |
57 // Disables gesture deletion for the virtual keyboard. | |
58 KEYBOARD_EXPORT extern const char kGestureDeletionDisabled[]; | |
59 | 51 |
60 // Enables the virtual keyboard. | 52 // Enables the virtual keyboard. |
61 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[]; | 53 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboard[]; |
62 | 54 |
63 // Floating virtual keyboard flag. | 55 // Floating virtual keyboard flag. |
64 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboard[]; | 56 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboard[]; |
65 | 57 |
66 // Disable floating virtual keyboard. | 58 // Disable floating virtual keyboard. |
67 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboardDisabled[]; | 59 KEYBOARD_EXPORT extern const char kFloatingVirtualKeyboardDisabled[]; |
68 | 60 |
(...skipping 10 matching lines...) Expand all Loading... |
79 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[]; | 71 KEYBOARD_EXPORT extern const char kEnableVirtualKeyboardOverscroll[]; |
80 | 72 |
81 // Disable automatic showing/hiding of the keyboard based on the devices plugged | 73 // Disable automatic showing/hiding of the keyboard based on the devices plugged |
82 // in. | 74 // in. |
83 KEYBOARD_EXPORT extern const char kDisableSmartVirtualKeyboard[]; | 75 KEYBOARD_EXPORT extern const char kDisableSmartVirtualKeyboard[]; |
84 | 76 |
85 } // namespace switches | 77 } // namespace switches |
86 } // namespace keyboard | 78 } // namespace keyboard |
87 | 79 |
88 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_ | 80 #endif // UI_KEYBOARD_KEYBOARD_SWITCHES_H_ |
OLD | NEW |