OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 ASH_STICKY_KEYS_STICKY_KEYS_CONSTANTS_H_ | |
6 #define ASH_STICKY_KEYS_STICKY_KEYS_CONSTANTS_H_ | |
7 | |
8 namespace ash { | |
9 | |
10 // Modifiers supported for sticky keys. | |
11 enum StickyKeyModifier { | |
12 STICKY_KEY_SHIFT, | |
13 STICKY_KEY_ALT, | |
14 STICKY_KEY_CONTROL, | |
15 STICKY_KEY_SEARCH | |
16 }; | |
17 | |
18 // State of an individual modifier key. | |
19 enum StickyKeyState { | |
20 // The sticky key is disabled. Incoming non-modifier key events are not | |
21 // affected. | |
22 STICKY_KEY_STATE_DISABLED, | |
23 // The sticky key is enabled. Incoming non-modifier key down events are | |
24 // modified. After that, sticky key state becomes DISABLED. | |
25 STICKY_KEY_STATE_ENABLED, | |
26 // The sticky key is locked. All incoming non modifier key down events are | |
27 // modified. | |
28 STICKY_KEY_STATE_LOCKED, | |
29 }; | |
30 | |
31 } // ash | |
James Cook
2014/01/15 22:53:53
nit: "namespace ash"
Tim Song
2014/01/16 00:01:59
Done.
| |
32 | |
33 #endif // ASH_WM_STICKY_KEYS_CONTROLLER_H_ | |
OLD | NEW |