Constructor now takes a wxTopLevelWindow * = NULL so that the new

GetWxTopLevelWindow() method can be used.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26046 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2004-03-03 03:35:06 +00:00
parent fb89cfc537
commit 7a8691eec8
2 changed files with 7 additions and 2 deletions

View File

@@ -18,6 +18,7 @@
WX_DECLARE_OBJC_HASHMAP(NSWindow);
class WXDLLEXPORT wxMenuBar;
class WXDLLEXPORT wxTopLevelWindow;
DECLARE_WXCOCOA_OBJC_CLASS(NSMenuItem);
DECLARE_WXCOCOA_OBJC_CLASS(wxNSWindowDelegate);
@@ -40,10 +41,13 @@ public:
virtual void CocoaDelegate_wxMenuItemAction(WX_NSMenuItem menuItem) = 0;
virtual bool CocoaDelegate_validateMenuItem(WX_NSMenuItem menuItem) = 0;
virtual wxMenuBar* GetAppMenuBar(wxCocoaNSWindow *win);
inline wxTopLevelWindow* GetWxTopLevelWindow()
{ return m_wxTopLevelWindow; }
protected:
wxCocoaNSWindow();
wxCocoaNSWindow(wxTopLevelWindow *tlw = NULL);
virtual ~wxCocoaNSWindow();
WX_wxNSWindowDelegate m_cocoaDelegate;
wxTopLevelWindow *m_wxTopLevelWindow;
};
#endif // _WX_COCOA_NSWINDOW_H_