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/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "ash/wm/property_util.h" | 9 #include "ash/wm/property_util.h" |
10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 | 22 |
23 // Shell-specific window property keys. | 23 // Shell-specific window property keys. |
24 | 24 |
25 // Alphabetical sort. | 25 // Alphabetical sort. |
26 | 26 |
27 // A Key to store AlwaysOnTopController per RootWindow. The value is | 27 // A Key to store AlwaysOnTopController per RootWindow. The value is |
28 // owned by the RootWindow. | 28 // owned by the RootWindow. |
29 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const | 29 extern const aura::WindowProperty<internal::AlwaysOnTopController*>* const |
30 kAlwaysOnTopControllerKey; | 30 kAlwaysOnTopControllerKey; |
31 | 31 |
| 32 // A property key to indicate that the user is cycling through workspaces. |
| 33 // The property should only be set on the root window. |
| 34 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 35 kCyclingThroughWorkspacesKey; |
| 36 |
32 // A property key to disable the frame painter policy for solo windows. | 37 // A property key to disable the frame painter policy for solo windows. |
33 // It is only available for root windows. | 38 // It is only available for root windows. |
34 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 39 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
35 kIgnoreSoloWindowFramePainterPolicy; | 40 kIgnoreSoloWindowFramePainterPolicy; |
36 | 41 |
37 // True if the window is ignored by the shelf layout manager for purposes of | 42 // True if the window is ignored by the shelf layout manager for purposes of |
38 // darkening the shelf. | 43 // darkening the shelf. |
39 extern const aura::WindowProperty<bool>* const | 44 extern const aura::WindowProperty<bool>* const |
40 kIgnoredByShelfKey; | 45 kIgnoredByShelfKey; |
41 | 46 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // True if the window is controlled by the workspace manager. | 97 // True if the window is controlled by the workspace manager. |
93 extern const aura::WindowProperty<bool>* const | 98 extern const aura::WindowProperty<bool>* const |
94 kWindowTrackedByWorkspaceKey; | 99 kWindowTrackedByWorkspaceKey; |
95 | 100 |
96 // Alphabetical sort. | 101 // Alphabetical sort. |
97 | 102 |
98 } // namespace internal | 103 } // namespace internal |
99 } // namespace ash | 104 } // namespace ash |
100 | 105 |
101 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 106 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
OLD | NEW |