OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "ui/aura/aura_export.h" | 9 #include "ui/aura/aura_export.h" |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
43 AURA_EXPORT extern const char kRootWindowDragDropClientKey[]; | 43 AURA_EXPORT extern const char kRootWindowDragDropClientKey[]; |
44 | 44 |
45 // A property key to store a client that handles window parenting. The type of | 45 // A property key to store a client that handles window parenting. The type of |
46 // the value is |aura::client::StackingClient*|. | 46 // the value is |aura::client::StackingClient*|. |
47 AURA_EXPORT extern const char kRootWindowStackingClient[]; | 47 AURA_EXPORT extern const char kRootWindowStackingClient[]; |
48 | 48 |
49 // A property key to store the tooltip client for the root window. The type of | 49 // A property key to store the tooltip client for the root window. The type of |
50 // the value is |aura::TooltipClient*|. | 50 // the value is |aura::TooltipClient*|. |
51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[]; | 51 AURA_EXPORT extern const char kRootWindowTooltipClientKey[]; |
52 | 52 |
53 // A property key to store an input method object that handles a key event. The | |
54 // type of the value is |ui::InputMethod*|. | |
55 AURA_EXPORT extern const char kRootWindowInputMethod[]; | |
Ben Goodger (Google)
2011/12/20 21:02:02
this list is alphabetically sorted.
Yusuke Sato
2011/12/21 16:57:27
Done.
| |
56 | |
53 // A property key for a value from aura::ShadowType describing the drop shadow | 57 // A property key for a value from aura::ShadowType describing the drop shadow |
54 // that should be displayed under the window. If unset, no shadow is displayed. | 58 // that should be displayed under the window. If unset, no shadow is displayed. |
55 AURA_EXPORT extern const char kShadowTypeKey[]; | 59 AURA_EXPORT extern const char kShadowTypeKey[]; |
56 | 60 |
57 // A property key to store ui::WindowShowState for a window. | 61 // A property key to store ui::WindowShowState for a window. |
58 // See ui/base/ui_base_types.h for its definition. | 62 // See ui/base/ui_base_types.h for its definition. |
59 AURA_EXPORT extern const char kShowStateKey[]; | 63 AURA_EXPORT extern const char kShowStateKey[]; |
60 | 64 |
61 // A property key to store tooltip text for a window. The type of the value | 65 // A property key to store tooltip text for a window. The type of the value |
62 // is |string16*|. | 66 // is |string16*|. |
63 AURA_EXPORT extern const char kTooltipTextKey[]; | 67 AURA_EXPORT extern const char kTooltipTextKey[]; |
64 | 68 |
65 // Alphabetical sort. | 69 // Alphabetical sort. |
66 | 70 |
67 } // namespace aura | 71 } // namespace aura |
68 | 72 |
69 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ | 73 #endif // UI_AURA_CLIENT_AURA_CONSTANTS_H_ |
OLD | NEW |