OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_MAC_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_ |
6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
10 #include "ui/views/widget/native_widget_private.h" | 10 #include "ui/views/widget/native_widget_private.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 // Retrieves the bridge associated with the given NSWindow. Returns null if | 31 // Retrieves the bridge associated with the given NSWindow. Returns null if |
32 // the supplied handle has no associated Widget. | 32 // the supplied handle has no associated Widget. |
33 static BridgedNativeWidget* GetBridgeForNativeWindow( | 33 static BridgedNativeWidget* GetBridgeForNativeWindow( |
34 gfx::NativeWindow window); | 34 gfx::NativeWindow window); |
35 | 35 |
36 // Return true if the delegate's modal type is window-modal. These display as | 36 // Return true if the delegate's modal type is window-modal. These display as |
37 // a native window "sheet", and have a different lifetime to regular windows. | 37 // a native window "sheet", and have a different lifetime to regular windows. |
38 bool IsWindowModalSheet() const; | 38 bool IsWindowModalSheet() const; |
39 | 39 |
40 // Deletes |bridge_| and informs |delegate_| that the native widget is | 40 // Deletes |bridge_| and informs |delegate_| that the native widget is |
41 // destroyed. | 41 // destroyed. This is usually called from the NSWindowDelegate. |
42 // This is usually called from the NSWindowDelegate. A derived class can | 42 void OnWindowWillClose(); |
43 // override this method for an early hook into the native window teardown. | |
44 virtual void OnWindowWillClose(); | |
45 | 43 |
46 // Returns the vertical position that sheets should be anchored, in pixels | 44 // Returns the vertical position that sheets should be anchored, in pixels |
47 // from the bottom of the window. | 45 // from the bottom of the window. |
48 virtual int SheetPositionY(); | 46 virtual int SheetPositionY(); |
49 | 47 |
50 // internal::NativeWidgetPrivate: | 48 // internal::NativeWidgetPrivate: |
51 void InitNativeWidget(const Widget::InitParams& params) override; | 49 void InitNativeWidget(const Widget::InitParams& params) override; |
52 void OnWidgetInitDone() override; | 50 void OnWidgetInitDone() override; |
53 NonClientFrameView* CreateNonClientFrameView() override; | 51 NonClientFrameView* CreateNonClientFrameView() override; |
54 bool ShouldUseNativeFrame() const override; | 52 bool ShouldUseNativeFrame() const override; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 | 152 |
155 // Internal name. | 153 // Internal name. |
156 std::string name_; | 154 std::string name_; |
157 | 155 |
158 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMac); | 156 DISALLOW_COPY_AND_ASSIGN(NativeWidgetMac); |
159 }; | 157 }; |
160 | 158 |
161 } // namespace views | 159 } // namespace views |
162 | 160 |
163 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_ | 161 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_MAC_H_ |
OLD | NEW |