X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0092ef0d5396ecd6e41bd0ecdfe8e9fd37526449..e9717bd5d8ff2e3ff91d99d44850b1d2485f5edf:/include/wx/cocoa/NSWindow.h?ds=sidebyside diff --git a/include/wx/cocoa/NSWindow.h b/include/wx/cocoa/NSWindow.h index 65f702041b..fd61cd250d 100644 --- a/include/wx/cocoa/NSWindow.h +++ b/include/wx/cocoa/NSWindow.h @@ -4,9 +4,9 @@ // Author: David Elliott // Modified by: // Created: 2003/03/16 -// RCS-ID: $Id: +// RCS-ID: $Id$ // Copyright: (c) 2003 David Elliott -// Licence: wxWindows license +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef __WX_COCOA_NSWINDOW_H__ @@ -17,19 +17,21 @@ WX_DECLARE_OBJC_HASHMAP(NSWindow); -class WXDLLEXPORT wxMenuBar; -class WXDLLEXPORT wxTopLevelWindowCocoa; +class WXDLLIMPEXP_FWD_CORE wxMenuBar; +class WXDLLIMPEXP_FWD_CORE wxTopLevelWindowCocoa; DECLARE_WXCOCOA_OBJC_CLASS(NSMenuItem); DECLARE_WXCOCOA_OBJC_CLASS(wxNSWindowDelegate); -class wxCocoaNSWindow +class WXDLLIMPEXP_CORE wxCocoaNSWindow { /* NSWindow is a rather special case and requires some extra attention */ WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSWindow) public: void AssociateNSWindow(WX_NSWindow cocoaNSWindow); void DisassociateNSWindow(WX_NSWindow cocoaNSWindow); + virtual bool Cocoa_canBecomeKeyWindow(bool &canBecome) + { return false; } virtual bool Cocoa_canBecomeMainWindow(bool &canBecome) { return false; } virtual bool CocoaDelegate_windowShouldClose(void) = 0;