[Android] Additional forward_variables_from conversions.
[chromium-blink-merge.git] / ash / shell_window_ids.h
blob88a923b3ca21f12347bf568447b9278b4e26e182
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
3 // found in the LICENSE file.
5 #ifndef ASH_SHELL_WINDOW_IDS_H_
6 #define ASH_SHELL_WINDOW_IDS_H_
8 // Declarations of ids of special shell windows.
10 namespace ash {
12 // A higher-level container that holds all of the containers stacked below
13 // kShellWindowId_LockScreenContainer. Only used by PowerButtonController for
14 // animating lower-level containers.
15 const int kShellWindowId_NonLockScreenContainersContainer = 0;
17 // A higher-level container that holds containers that hold lock-screen
18 // windows. Only used by PowerButtonController for animating lower-level
19 // containers.
20 const int kShellWindowId_LockScreenContainersContainer = 1;
22 // A higher-level container that holds containers that hold lock-screen-related
23 // windows (which we want to display while the screen is locked; effectively
24 // containers stacked above kShellWindowId_LockSystemModalContainer). Only used
25 // by PowerButtonController for animating lower-level containers.
26 const int kShellWindowId_LockScreenRelatedContainersContainer = 2;
28 // A container used for windows of WINDOW_TYPE_CONTROL that have no parent.
29 // This container is not visible.
30 const int kShellWindowId_UnparentedControlContainer = 3;
32 // The desktop background window.
33 const int kShellWindowId_DesktopBackgroundContainer = 4;
35 // The virtual keyboard container.
36 const int kShellWindowId_VirtualKeyboardContainer = 5;
38 // TODO(sky): rename kShellWindowId_DefaultContainer.
40 // The container for standard top-level windows.
41 const int kShellWindowId_DefaultContainer = 6;
43 // The container for top-level windows with the 'always-on-top' flag set.
44 const int kShellWindowId_AlwaysOnTopContainer = 7;
46 // The container for windows docked to either side of the desktop.
47 const int kShellWindowId_DockedContainer = 8;
49 // The container for the shelf.
50 const int kShellWindowId_ShelfContainer = 9;
52 // The container for bubbles which float over the shelf.
53 const int kShellWindowId_ShelfBubbleContainer = 10;
55 // The container for panel windows.
56 const int kShellWindowId_PanelContainer = 11;
58 // The container for the app list.
59 const int kShellWindowId_AppListContainer = 12;
61 // The container for user-specific modal windows.
62 const int kShellWindowId_SystemModalContainer = 13;
64 // The container for the lock screen background.
65 const int kShellWindowId_LockScreenBackgroundContainer = 14;
67 // The container for the lock screen.
68 const int kShellWindowId_LockScreenContainer = 15;
70 // The container for the lock screen modal windows.
71 const int kShellWindowId_LockSystemModalContainer = 16;
73 // The container for the status area.
74 const int kShellWindowId_StatusContainer = 17;
76 // A parent container that holds the virtual keyboard container and ime windows
77 // if any. This is to ensure that the virtual keyboard or ime window is stacked
78 // above most containers but below the mouse cursor and the power off animation.
79 const int kShellWindowId_ImeWindowParentContainer = 18;
81 // The container for menus.
82 const int kShellWindowId_MenuContainer = 19;
84 // The container for drag/drop images and tooltips.
85 const int kShellWindowId_DragImageAndTooltipContainer = 20;
87 // The container for bubbles briefly overlaid onscreen to show settings changes
88 // (volume, brightness, input method bubbles, etc.).
89 const int kShellWindowId_SettingBubbleContainer = 21;
91 // The container for special components overlaid onscreen, such as the
92 // region selector for partial screenshots.
93 const int kShellWindowId_OverlayContainer = 22;
95 // ID of the window created by PhantomWindowController or DragWindowController.
96 const int kShellWindowId_PhantomWindow = 23;
98 // The container for mouse cursor.
99 const int kShellWindowId_MouseCursorContainer = 24;
101 // The topmost container, used for power off animation.
102 const int kShellWindowId_PowerButtonAnimationContainer = 25;
104 } // namespace ash
107 #endif // ASH_SHELL_WINDOW_IDS_H_