Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(262)

Side by Side Diff: ash/shell_window_ids.h

Issue 13896026: Stick windows to sides of workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Dock with zero width (rebase) Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/wm/activation_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // kShellWindowId_WorkspaceContainer. 43 // kShellWindowId_WorkspaceContainer.
44 const int kShellWindowId_DefaultContainer = 5; 44 const int kShellWindowId_DefaultContainer = 5;
45 45
46 // Used by Worskpace2 for each workspace. Contains standard top-level windows. 46 // Used by Worskpace2 for each workspace. Contains standard top-level windows.
47 // WARNING: there may be more than one container with this id. 47 // WARNING: there may be more than one container with this id.
48 const int kShellWindowId_WorkspaceContainer = 6; 48 const int kShellWindowId_WorkspaceContainer = 6;
49 49
50 // The container for top-level windows with the 'always-on-top' flag set. 50 // The container for top-level windows with the 'always-on-top' flag set.
51 const int kShellWindowId_AlwaysOnTopContainer = 7; 51 const int kShellWindowId_AlwaysOnTopContainer = 7;
52 52
53 // The container for windows docked to either side of the desktop.
54 const int kShellWindowId_DockedContainer = 8;
55
53 // The container for panel windows. 56 // The container for panel windows.
54 const int kShellWindowId_PanelContainer = 8; 57 const int kShellWindowId_PanelContainer = 9;
55 58
56 // The container for the shelf. 59 // The container for the shelf.
57 const int kShellWindowId_ShelfContainer = 9; 60 const int kShellWindowId_ShelfContainer = 10;
58 61
59 // The container for the app list. 62 // The container for the app list.
60 const int kShellWindowId_AppListContainer = 10; 63 const int kShellWindowId_AppListContainer = 11;
61 64
62 // The container for user-specific modal windows. 65 // The container for user-specific modal windows.
63 const int kShellWindowId_SystemModalContainer = 11; 66 const int kShellWindowId_SystemModalContainer = 12;
64 67
65 // The container for input method components such like candidate windows. They 68 // The container for input method components such like candidate windows. They
66 // are almost panels but have no activations/focus, and they should appear over 69 // are almost panels but have no activations/focus, and they should appear over
67 // the AppList and SystemModal dialogs. 70 // the AppList and SystemModal dialogs.
68 const int kShellWindowId_InputMethodContainer = 12; 71 const int kShellWindowId_InputMethodContainer = 13;
69 72
70 // The container for the lock screen background. 73 // The container for the lock screen background.
71 const int kShellWindowId_LockScreenBackgroundContainer = 13; 74 const int kShellWindowId_LockScreenBackgroundContainer = 14;
72 75
73 // The container for the lock screen. 76 // The container for the lock screen.
74 const int kShellWindowId_LockScreenContainer = 14; 77 const int kShellWindowId_LockScreenContainer = 15;
75 78
76 // The container for the lock screen modal windows. 79 // The container for the lock screen modal windows.
77 const int kShellWindowId_LockSystemModalContainer = 15; 80 const int kShellWindowId_LockSystemModalContainer = 16;
78 81
79 // The container for the status area. 82 // The container for the status area.
80 const int kShellWindowId_StatusContainer = 16; 83 const int kShellWindowId_StatusContainer = 17;
81 84
82 // The container for menus. 85 // The container for menus.
83 const int kShellWindowId_MenuContainer = 17; 86 const int kShellWindowId_MenuContainer = 18;
84 87
85 // The container for drag/drop images and tooltips. 88 // The container for drag/drop images and tooltips.
86 const int kShellWindowId_DragImageAndTooltipContainer = 18; 89 const int kShellWindowId_DragImageAndTooltipContainer = 19;
87 90
88 // The container for bubbles briefly overlaid onscreen to show settings changes 91 // The container for bubbles briefly overlaid onscreen to show settings changes
89 // (volume, brightness, etc.). 92 // (volume, brightness, etc.).
90 const int kShellWindowId_SettingBubbleContainer = 19; 93 const int kShellWindowId_SettingBubbleContainer = 20;
91 94
92 // The container for special components overlaid onscreen, such as the 95 // The container for special components overlaid onscreen, such as the
93 // region selector for partial screenshots. 96 // region selector for partial screenshots.
94 const int kShellWindowId_OverlayContainer = 20; 97 const int kShellWindowId_OverlayContainer = 21;
95 98
96 // ID of the window created by PhantomWindowController or DragWindowController. 99 // ID of the window created by PhantomWindowController or DragWindowController.
97 const int kShellWindowId_PhantomWindow = 21; 100 const int kShellWindowId_PhantomWindow = 22;
98 101
99 // The topmost container, used for power off animation. 102 // The topmost container, used for power off animation.
100 const int kShellWindowId_PowerButtonAnimationContainer = 22; 103 const int kShellWindowId_PowerButtonAnimationContainer = 23;
101 104
102 } // namespace internal 105 } // namespace internal
103 106
104 } // namespace ash 107 } // namespace ash
105 108
106 109
107 #endif // ASH_SHELL_WINDOW_IDS_H_ 110 #endif // ASH_SHELL_WINDOW_IDS_H_
OLDNEW
« no previous file with comments | « ash/root_window_controller.cc ('k') | ash/wm/activation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698