OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 ASH_SHELL_WINDOW_IDS_H_ | 5 #ifndef ASH_SHELL_WINDOW_IDS_H_ |
6 #define ASH_SHELL_WINDOW_IDS_H_ | 6 #define ASH_SHELL_WINDOW_IDS_H_ |
7 | 7 |
8 // Declarations of ids of special shell windows. | 8 // Declarations of ids of special shell windows. |
9 | 9 |
10 namespace ash { | 10 namespace ash { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 // The container for the lock screen. | 67 // The container for the lock screen. |
68 const int kShellWindowId_LockScreenContainer = 15; | 68 const int kShellWindowId_LockScreenContainer = 15; |
69 | 69 |
70 // The container for the lock screen modal windows. | 70 // The container for the lock screen modal windows. |
71 const int kShellWindowId_LockSystemModalContainer = 16; | 71 const int kShellWindowId_LockSystemModalContainer = 16; |
72 | 72 |
73 // The container for the status area. | 73 // The container for the status area. |
74 const int kShellWindowId_StatusContainer = 17; | 74 const int kShellWindowId_StatusContainer = 17; |
75 | 75 |
| 76 // A parent container that holds the virtual keyboard container. This is to |
| 77 // ensure that the virtual keyboard is stacked above most containers but below |
| 78 // the mouse cursor, context menus and the power off animation. |
| 79 const int kShellWindowId_VirtualKeyboardParentContainer = 18; |
| 80 |
76 // The container for menus. | 81 // The container for menus. |
77 const int kShellWindowId_MenuContainer = 18; | 82 const int kShellWindowId_MenuContainer = 19; |
78 | 83 |
79 // The container for drag/drop images and tooltips. | 84 // The container for drag/drop images and tooltips. |
80 const int kShellWindowId_DragImageAndTooltipContainer = 19; | 85 const int kShellWindowId_DragImageAndTooltipContainer = 20; |
81 | 86 |
82 // The container for bubbles briefly overlaid onscreen to show settings changes | 87 // The container for bubbles briefly overlaid onscreen to show settings changes |
83 // (volume, brightness, input method bubbles, etc.). | 88 // (volume, brightness, input method bubbles, etc.). |
84 const int kShellWindowId_SettingBubbleContainer = 20; | 89 const int kShellWindowId_SettingBubbleContainer = 21; |
85 | 90 |
86 // The container for special components overlaid onscreen, such as the | 91 // The container for special components overlaid onscreen, such as the |
87 // region selector for partial screenshots. | 92 // region selector for partial screenshots. |
88 const int kShellWindowId_OverlayContainer = 21; | 93 const int kShellWindowId_OverlayContainer = 22; |
89 | 94 |
90 // ID of the window created by PhantomWindowController or DragWindowController. | 95 // ID of the window created by PhantomWindowController or DragWindowController. |
91 const int kShellWindowId_PhantomWindow = 22; | 96 const int kShellWindowId_PhantomWindow = 23; |
92 | |
93 // A parent container that holds the virtual keyboard container. This is to | |
94 // ensure that the virtual keyboard is stacked above most containers but below | |
95 // the mouse cursor and the power off animation. | |
96 const int kShellWindowId_VirtualKeyboardParentContainer = 23; | |
97 | 97 |
98 // The container for mouse cursor. | 98 // The container for mouse cursor. |
99 const int kShellWindowId_MouseCursorContainer = 24; | 99 const int kShellWindowId_MouseCursorContainer = 24; |
100 | 100 |
101 // The topmost container, used for power off animation. | 101 // The topmost container, used for power off animation. |
102 const int kShellWindowId_PowerButtonAnimationContainer = 25; | 102 const int kShellWindowId_PowerButtonAnimationContainer = 25; |
103 | 103 |
104 } // namespace ash | 104 } // namespace ash |
105 | 105 |
106 | 106 |
107 #endif // ASH_SHELL_WINDOW_IDS_H_ | 107 #endif // ASH_SHELL_WINDOW_IDS_H_ |
OLD | NEW |