X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..34a34b020f1c8defacb299a0fa5c480fa65b8597:/include/wx/cocoa/NSView.h?ds=inline diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h index 7c9fabbbfd..50a583c5d2 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,6 +29,8 @@ public: protected: static void *sm_cocoaObserver; public: + virtual wxWindow* GetWxWindow() const + { return NULL; } virtual void Cocoa_FrameChanged(void) = 0; virtual bool Cocoa_drawRect(const NSRect &rect) { return false; } @@ -55,6 +58,8 @@ public: { return false; } virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent) { return false; } + virtual bool Cocoa_resetCursorRects() + { return false; } }; #endif // _WX_COCOA_NSVIEW_H_