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

Side by Side Diff: ui/aura/client/aura_constants.h

Issue 11085053: Improving window auto management between workspaces (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved the entire window (auto) management Created 8 years, 2 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 | Annotate | Revision Log
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 UI_AURA_CLIENT_AURA_CONSTANTS_H_ 5 #ifndef UI_AURA_CLIENT_AURA_CONSTANTS_H_
6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_ 6 #define UI_AURA_CLIENT_AURA_CONSTANTS_H_
7 7
8 #include "ui/aura/aura_export.h" 8 #include "ui/aura/aura_export.h"
9 #include "ui/aura/window.h" 9 #include "ui/aura/window.h"
10 #include "ui/base/ui_base_types.h" 10 #include "ui/base/ui_base_types.h"
(...skipping 27 matching lines...) Expand all
38 // A property key to store the window modality. 38 // A property key to store the window modality.
39 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey; 39 AURA_EXPORT extern const WindowProperty<ui::ModalType>* const kModalKey;
40 40
41 // A property key to store the restore bounds for a window. 41 // A property key to store the restore bounds for a window.
42 AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey; 42 AURA_EXPORT extern const WindowProperty<gfx::Rect*>* const kRestoreBoundsKey;
43 43
44 // A property key to store an input method object that handles a key event. 44 // A property key to store an input method object that handles a key event.
45 AURA_EXPORT extern const WindowProperty<ui::InputMethod*>* const 45 AURA_EXPORT extern const WindowProperty<ui::InputMethod*>* const
46 kRootWindowInputMethodKey; 46 kRootWindowInputMethodKey;
47 47
48 // A property key to remember if a windows position or size was changed by a
49 // user.
50 AURA_EXPORT extern const WindowProperty<bool>* const
sky 2012/10/11 19:50:54 These should be in ash.
Mr4D (OOO till 08-26) 2012/10/12 00:29:18 Done.
51 kUserChangedWindowPositionOrSizeKey;
52
53 // A property key to remember if a windows position can be managed by the
54 // workspace manager or not.
55 AURA_EXPORT extern const WindowProperty<bool>* const
56 kWindowPositionManageableKey;
57
48 // A property key to store ui::WindowShowState for a window. 58 // A property key to store ui::WindowShowState for a window.
49 // See ui/base/ui_base_types.h for its definition. 59 // See ui/base/ui_base_types.h for its definition.
50 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const 60 AURA_EXPORT extern const WindowProperty<ui::WindowShowState>* const
51 kShowStateKey; 61 kShowStateKey;
52 62
53 // Alphabetical sort. 63 // Alphabetical sort.
54 64
55 } // namespace client 65 } // namespace client
56 } // namespace aura 66 } // namespace aura
57 67
58 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ 68 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698