| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 kIgnoreSoloWindowFramePainterPolicy; | 50 kIgnoreSoloWindowFramePainterPolicy; |
| 51 | 51 |
| 52 // True if the window is ignored by the shelf layout manager for purposes of | 52 // True if the window is ignored by the shelf layout manager for purposes of |
| 53 // darkening the shelf. | 53 // darkening the shelf. |
| 54 extern const aura::WindowProperty<bool>* const | 54 extern const aura::WindowProperty<bool>* const |
| 55 kIgnoredByShelfKey; | 55 kIgnoredByShelfKey; |
| 56 | 56 |
| 57 // True if this window is an attached panel. | 57 // True if this window is an attached panel. |
| 58 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; | 58 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; |
| 59 | 59 |
| 60 // Used to remember the show state before the window was minimized. | |
| 61 extern const aura::WindowProperty<ui::WindowShowState>* const | |
| 62 kRestoreShowStateKey; | |
| 63 | |
| 64 extern const aura::WindowProperty<RootWindowController*>* const | 60 extern const aura::WindowProperty<RootWindowController*>* const |
| 65 kRootWindowControllerKey; | 61 kRootWindowControllerKey; |
| 66 | 62 |
| 67 // RootWindow property to indicate if the window in the active workspace should | 63 // RootWindow property to indicate if the window in the active workspace should |
| 68 // use the transparent "solo-window" header style. | 64 // use the transparent "solo-window" header style. |
| 69 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 65 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 70 kSoloWindowHeaderKey; | 66 kSoloWindowHeaderKey; |
| 71 | 67 |
| 72 // If this is set to true, the window stays in the same root window | 68 // If this is set to true, the window stays in the same root window |
| 73 // even if the bounds outside of its root window is set. | 69 // even if the bounds outside of its root window is set. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 104 // True if the window is controlled by the workspace manager. | 100 // True if the window is controlled by the workspace manager. |
| 105 extern const aura::WindowProperty<bool>* const | 101 extern const aura::WindowProperty<bool>* const |
| 106 kWindowTrackedByWorkspaceKey; | 102 kWindowTrackedByWorkspaceKey; |
| 107 | 103 |
| 108 // Alphabetical sort. | 104 // Alphabetical sort. |
| 109 | 105 |
| 110 } // namespace internal | 106 } // namespace internal |
| 111 } // namespace ash | 107 } // namespace ash |
| 112 | 108 |
| 113 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 109 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |