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 | 76 // A parent container that holds the virtual keyboard container and ime windows |
77 // ensure that the virtual keyboard is stacked above most containers but below | 77 // if any. This is to ensure that the virtual keyboard or ime window is stacked |
78 // the mouse cursor, context menus and the power off animation. | 78 // above most containers but below the mouse cursor and the power off animation. |
79 const int kShellWindowId_VirtualKeyboardParentContainer = 18; | 79 const int kShellWindowId_ImeWindowParentContainer = 18; |
80 | 80 |
81 // The container for menus. | 81 // The container for menus. |
82 const int kShellWindowId_MenuContainer = 19; | 82 const int kShellWindowId_MenuContainer = 19; |
83 | 83 |
84 // The container for drag/drop images and tooltips. | 84 // The container for drag/drop images and tooltips. |
85 const int kShellWindowId_DragImageAndTooltipContainer = 20; | 85 const int kShellWindowId_DragImageAndTooltipContainer = 20; |
86 | 86 |
87 // The container for bubbles briefly overlaid onscreen to show settings changes | 87 // The container for bubbles briefly overlaid onscreen to show settings changes |
88 // (volume, brightness, input method bubbles, etc.). | 88 // (volume, brightness, input method bubbles, etc.). |
89 const int kShellWindowId_SettingBubbleContainer = 21; | 89 const int kShellWindowId_SettingBubbleContainer = 21; |
90 | 90 |
91 // The container for special components overlaid onscreen, such as the | 91 // The container for special components overlaid onscreen, such as the |
92 // region selector for partial screenshots. | 92 // region selector for partial screenshots. |
93 const int kShellWindowId_OverlayContainer = 22; | 93 const int kShellWindowId_OverlayContainer = 22; |
94 | 94 |
95 // ID of the window created by PhantomWindowController or DragWindowController. | 95 // ID of the window created by PhantomWindowController or DragWindowController. |
96 const int kShellWindowId_PhantomWindow = 23; | 96 const int kShellWindowId_PhantomWindow = 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 |