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_WM_WINDOW_PROPERTIES_H_ | 5 #ifndef ASH_WM_WINDOW_PROPERTIES_H_ |
6 #define ASH_WM_WINDOW_PROPERTIES_H_ | 6 #define ASH_WM_WINDOW_PROPERTIES_H_ |
7 | 7 |
8 #include "ash/wm/property_util.h" | 8 #include "ash/wm/property_util.h" |
9 #include "ash/wm/shadow_types.h" | 9 #include "ash/wm/shadow_types.h" |
10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
(...skipping 15 matching lines...) Expand all Loading... |
26 // A Key to store AlwaysOnTopController per RootWindow. The value is | 26 // A Key to store AlwaysOnTopController per RootWindow. The value is |
27 // owned by the RootWindow. | 27 // owned by the RootWindow. |
28 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const | 28 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const |
29 kAlwaysOnTopControllerKey; | 29 kAlwaysOnTopControllerKey; |
30 | 30 |
31 // Property set on all windows whose child windows' visibility changes are | 31 // Property set on all windows whose child windows' visibility changes are |
32 // animated. | 32 // animated. |
33 extern const aura::WindowProperty<bool>* const | 33 extern const aura::WindowProperty<bool>* const |
34 kChildWindowVisibilityChangesAnimatedKey; | 34 kChildWindowVisibilityChangesAnimatedKey; |
35 | 35 |
| 36 // True if the window is ignored by the shelf layout manager for purposes of |
| 37 // darkening the shelf. |
| 38 extern const aura::WindowProperty<bool>* const |
| 39 kIgnoredByShelfKey; |
| 40 |
36 // Used to remember the show state before the window was minimized. | 41 // Used to remember the show state before the window was minimized. |
37 extern const aura::WindowProperty<ui::WindowShowState>* const | 42 extern const aura::WindowProperty<ui::WindowShowState>* const |
38 kRestoreShowStateKey; | 43 kRestoreShowStateKey; |
39 | 44 |
40 extern const aura::WindowProperty<RootWindowController*>* const | 45 extern const aura::WindowProperty<RootWindowController*>* const |
41 kRootWindowControllerKey; | 46 kRootWindowControllerKey; |
42 | 47 |
43 // A property key describing the drop shadow that should be displayed under the | 48 // A property key describing the drop shadow that should be displayed under the |
44 // window. If unset, no shadow is displayed. | 49 // window. If unset, no shadow is displayed. |
45 extern const aura::WindowProperty<ShadowType>* const kShadowTypeKey; | 50 extern const aura::WindowProperty<ShadowType>* const kShadowTypeKey; |
(...skipping 11 matching lines...) Expand all Loading... |
57 // True if the window is controlled by the workspace manager. | 62 // True if the window is controlled by the workspace manager. |
58 extern const aura::WindowProperty<bool>* const | 63 extern const aura::WindowProperty<bool>* const |
59 kWindowTrackedByWorkspaceKey; | 64 kWindowTrackedByWorkspaceKey; |
60 | 65 |
61 // Alphabetical sort. | 66 // Alphabetical sort. |
62 | 67 |
63 } // namespace internal | 68 } // namespace internal |
64 } // namespace ash | 69 } // namespace ash |
65 | 70 |
66 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 71 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
OLD | NEW |