X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5558135c4894ec39d39d46a3586df2bb0e89da09..cd4e32afe7023f2ebc97b15674ee3b7def480e45:/include/wx/cocoa/NSView.h diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h index ffff7fdf92..7fdaba8c3a 100644 --- a/include/wx/cocoa/NSView.h +++ b/include/wx/cocoa/NSView.h @@ -16,6 +16,7 @@ #include "wx/cocoa/ObjcAssociate.h" typedef struct _NSRect NSRect; +class wxWindow; WX_DECLARE_OBJC_HASHMAP(NSView); class wxCocoaNSView @@ -28,7 +29,11 @@ public: protected: static void *sm_cocoaObserver; public: + virtual wxWindow* GetWxWindow() const + { return NULL; } virtual void Cocoa_FrameChanged(void) = 0; + virtual bool Cocoa_acceptsFirstMouse(bool &acceptsFirstMouse, WX_NSEvent theEvent) + { return false; } virtual bool Cocoa_drawRect(const NSRect &rect) { return false; } virtual bool Cocoa_mouseDown(WX_NSEvent theEvent) @@ -57,6 +62,7 @@ public: { return false; } virtual bool Cocoa_resetCursorRects() { return false; } + virtual ~wxCocoaNSView() { } }; #endif // _WX_COCOA_NSVIEW_H_