| 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 17 matching lines...) Expand all Loading... |
| 28 // A property key to indicate that an in progress drag should be continued | 28 // A property key to indicate that an in progress drag should be continued |
| 29 // after the window is reparented to another container. | 29 // after the window is reparented to another container. |
| 30 extern const aura::WindowProperty<bool>* const kContinueDragAfterReparent; | 30 extern const aura::WindowProperty<bool>* const kContinueDragAfterReparent; |
| 31 | 31 |
| 32 // A property key to indicate whether there is any chrome at all that cannot be | 32 // A property key to indicate whether there is any chrome at all that cannot be |
| 33 // hidden when the window is fullscreen. This is unrelated to whether the full | 33 // hidden when the window is fullscreen. This is unrelated to whether the full |
| 34 // chrome can be revealed by hovering the mouse at the top of the screen. | 34 // chrome can be revealed by hovering the mouse at the top of the screen. |
| 35 ASH_EXPORT extern const aura::WindowProperty<bool>* const | 35 ASH_EXPORT extern const aura::WindowProperty<bool>* const |
| 36 kFullscreenUsesMinimalChromeKey; | 36 kFullscreenUsesMinimalChromeKey; |
| 37 | 37 |
| 38 // A property key to disable the frame painter policy for solo windows. | |
| 39 // It is only available for root windows. | |
| 40 ASH_EXPORT extern const aura::WindowProperty<bool>* const | |
| 41 kIgnoreSoloWindowFramePainterPolicy; | |
| 42 | |
| 43 // True if the window is ignored by the shelf layout manager for purposes of | 38 // True if the window is ignored by the shelf layout manager for purposes of |
| 44 // darkening the shelf. | 39 // darkening the shelf. |
| 45 extern const aura::WindowProperty<bool>* const | 40 extern const aura::WindowProperty<bool>* const |
| 46 kIgnoredByShelfKey; | 41 kIgnoredByShelfKey; |
| 47 | 42 |
| 48 // True if this window is an attached panel. | 43 // True if this window is an attached panel. |
| 49 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; | 44 ASH_EXPORT extern const aura::WindowProperty<bool>* const kPanelAttachedKey; |
| 50 | 45 |
| 51 // If this is set to true, the window stays in the same root window | 46 // If this is set to true, the window stays in the same root window |
| 52 // even if the bounds outside of its root window is set. | 47 // even if the bounds outside of its root window is set. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 80 // True if the window is controlled by the workspace manager. | 75 // True if the window is controlled by the workspace manager. |
| 81 extern const aura::WindowProperty<bool>* const | 76 extern const aura::WindowProperty<bool>* const |
| 82 kWindowTrackedByWorkspaceKey; | 77 kWindowTrackedByWorkspaceKey; |
| 83 | 78 |
| 84 // Alphabetical sort. | 79 // Alphabetical sort. |
| 85 | 80 |
| 86 } // namespace internal | 81 } // namespace internal |
| 87 } // namespace ash | 82 } // namespace ash |
| 88 | 83 |
| 89 #endif // ASH_WM_WINDOW_PROPERTIES_H_ | 84 #endif // ASH_WM_WINDOW_PROPERTIES_H_ |
| OLD | NEW |