Chromium Code Reviews| 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 UI_VIEWS_WIDGET_WIDGET_H_ | 5 #ifndef UI_VIEWS_WIDGET_WIDGET_H_ |
| 6 #define UI_VIEWS_WIDGET_WIDGET_H_ | 6 #define UI_VIEWS_WIDGET_WIDGET_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <stack> | 9 #include <stack> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 187 Type type; | 187 Type type; |
| 188 // If NULL, a default implementation will be constructed. | 188 // If NULL, a default implementation will be constructed. |
| 189 WidgetDelegate* delegate; | 189 WidgetDelegate* delegate; |
| 190 bool child; | 190 bool child; |
| 191 // If TRANSLUCENT_WINDOW, the widget may be fully or partially transparent. | 191 // If TRANSLUCENT_WINDOW, the widget may be fully or partially transparent. |
| 192 // If OPAQUE_WINDOW, we can perform optimizations based on the widget being | 192 // If OPAQUE_WINDOW, we can perform optimizations based on the widget being |
| 193 // fully opaque. Defaults to TRANSLUCENT_WINDOW if | 193 // fully opaque. Defaults to TRANSLUCENT_WINDOW if |
| 194 // ViewsDelegate::UseTransparentWindows(). Defaults to OPAQUE_WINDOW for | 194 // ViewsDelegate::UseTransparentWindows(). Defaults to OPAQUE_WINDOW for |
| 195 // non-window widgets. | 195 // non-window widgets. |
| 196 WindowOpacity opacity; | 196 WindowOpacity opacity; |
| 197 bool accept_events; | 197 bool accept_events; |
|
pkotwicz
2014/05/20 00:14:53
Scott, do you have a suggestion for a comment for
sky
2014/05/20 15:02:55
If we correctly query CanActivate at the right pla
| |
| 198 Activatable activatable; | 198 Activatable activatable; |
| 199 bool keep_on_top; | 199 bool keep_on_top; |
| 200 bool visible_on_all_workspaces; | 200 bool visible_on_all_workspaces; |
| 201 Ownership ownership; | 201 Ownership ownership; |
| 202 bool mirror_origin_in_rtl; | 202 bool mirror_origin_in_rtl; |
| 203 bool has_dropshadow; | 203 bool has_dropshadow; |
| 204 // Specifies that the system default caption and icon should not be | 204 // Specifies that the system default caption and icon should not be |
| 205 // rendered, and that the client area should be equivalent to the window | 205 // rendered, and that the client area should be equivalent to the window |
| 206 // area. Only used on some platforms (Windows and Linux). | 206 // area. Only used on some platforms (Windows and Linux). |
| 207 bool remove_standard_frame; | 207 bool remove_standard_frame; |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 875 bool widget_closed_; | 875 bool widget_closed_; |
| 876 | 876 |
| 877 // The saved "show" state for this window. See note in SetInitialBounds | 877 // The saved "show" state for this window. See note in SetInitialBounds |
| 878 // that explains why we save this. | 878 // that explains why we save this. |
| 879 ui::WindowShowState saved_show_state_; | 879 ui::WindowShowState saved_show_state_; |
| 880 | 880 |
| 881 // The restored bounds used for the initial show. This is only used if | 881 // The restored bounds used for the initial show. This is only used if |
| 882 // |saved_show_state_| is maximized. | 882 // |saved_show_state_| is maximized. |
| 883 gfx::Rect initial_restored_bounds_; | 883 gfx::Rect initial_restored_bounds_; |
| 884 | 884 |
| 885 // True if the widget can be activated. | |
| 886 bool can_activate_; | |
| 887 | |
| 888 // Focus is automatically set to the view provided by the delegate | 885 // Focus is automatically set to the view provided by the delegate |
| 889 // when the widget is shown. Set this value to false to override | 886 // when the widget is shown. Set this value to false to override |
| 890 // initial focus for the widget. | 887 // initial focus for the widget. |
| 891 bool focus_on_creation_; | 888 bool focus_on_creation_; |
| 892 | 889 |
| 893 mutable scoped_ptr<InputMethod> input_method_; | 890 mutable scoped_ptr<InputMethod> input_method_; |
| 894 | 891 |
| 895 // See |is_top_level()| accessor. | 892 // See |is_top_level()| accessor. |
| 896 bool is_top_level_; | 893 bool is_top_level_; |
| 897 | 894 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 930 bool movement_disabled_; | 927 bool movement_disabled_; |
| 931 | 928 |
| 932 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; | 929 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_; |
| 933 | 930 |
| 934 DISALLOW_COPY_AND_ASSIGN(Widget); | 931 DISALLOW_COPY_AND_ASSIGN(Widget); |
| 935 }; | 932 }; |
| 936 | 933 |
| 937 } // namespace views | 934 } // namespace views |
| 938 | 935 |
| 939 #endif // UI_VIEWS_WIDGET_WIDGET_H_ | 936 #endif // UI_VIEWS_WIDGET_WIDGET_H_ |
| OLD | NEW |