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_NATIVE_WIDGET_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 104 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
105 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 105 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
106 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; | 106 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; |
107 virtual void StackAtTop() OVERRIDE; | 107 virtual void StackAtTop() OVERRIDE; |
108 virtual void StackBelow(gfx::NativeView native_view) OVERRIDE; | 108 virtual void StackBelow(gfx::NativeView native_view) OVERRIDE; |
109 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE; | 109 virtual void SetShape(gfx::NativeRegion shape) OVERRIDE; |
110 virtual void Close() OVERRIDE; | 110 virtual void Close() OVERRIDE; |
111 virtual void CloseNow() OVERRIDE; | 111 virtual void CloseNow() OVERRIDE; |
112 virtual void Show() OVERRIDE; | 112 virtual void Show() OVERRIDE; |
113 virtual void Hide() OVERRIDE; | 113 virtual void Hide() OVERRIDE; |
| 114 virtual void HideAndClose() OVERRIDE; |
114 virtual void ShowMaximizedWithBounds( | 115 virtual void ShowMaximizedWithBounds( |
115 const gfx::Rect& restored_bounds) OVERRIDE; | 116 const gfx::Rect& restored_bounds) OVERRIDE; |
116 virtual void ShowWithWindowState(ui::WindowShowState show_state) OVERRIDE; | 117 virtual void ShowWithWindowState(ui::WindowShowState show_state) OVERRIDE; |
117 virtual bool IsVisible() const OVERRIDE; | 118 virtual bool IsVisible() const OVERRIDE; |
118 virtual void Activate() OVERRIDE; | 119 virtual void Activate() OVERRIDE; |
119 virtual void Deactivate() OVERRIDE; | 120 virtual void Deactivate() OVERRIDE; |
120 virtual bool IsActive() const OVERRIDE; | 121 virtual bool IsActive() const OVERRIDE; |
121 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; | 122 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; |
122 virtual void Maximize() OVERRIDE; | 123 virtual void Maximize() OVERRIDE; |
123 virtual void Minimize() OVERRIDE; | 124 virtual void Minimize() OVERRIDE; |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 bool has_non_client_view_; | 262 bool has_non_client_view_; |
262 | 263 |
263 scoped_ptr<HWNDMessageHandler> message_handler_; | 264 scoped_ptr<HWNDMessageHandler> message_handler_; |
264 | 265 |
265 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); | 266 DISALLOW_COPY_AND_ASSIGN(NativeWidgetWin); |
266 }; | 267 }; |
267 | 268 |
268 } // namespace views | 269 } // namespace views |
269 | 270 |
270 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ | 271 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_WIN_H_ |
OLD | NEW |