X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2d6c4e485c7fef1c4da20a380423615e8fe19b81..e4277538a535d6d6c049f0b0ead9ed2b07cd93f2:/include/wx/cocoa/NSView.h diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h index f9c023dbb8..7fb9c79dd1 100644 --- a/include/wx/cocoa/NSView.h +++ b/include/wx/cocoa/NSView.h @@ -6,7 +6,7 @@ // Created: 2003/02/15 // RCS-ID: $Id: // Copyright: (c) 2003 David Elliott -// Licence: wxWindows license +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #ifndef __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) @@ -55,6 +60,8 @@ public: { return false; } virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent) { return false; } + virtual bool Cocoa_resetCursorRects() + { return false; } }; #endif // _WX_COCOA_NSVIEW_H_