X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/fb896a322a2ed53d393ee738765ddd3f72cee004..bae90c4cd512c351cc2b4b663e0ac1a649911746:/include/wx/cocoa/NSView.h diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h index 10a172fa81..f9c023dbb8 100644 --- a/include/wx/cocoa/NSView.h +++ b/include/wx/cocoa/NSView.h @@ -13,7 +13,9 @@ #define __WX_COCOA_NSVIEW_H__ #include "wx/hashmap.h" -#include "wx/cocoa/ObjcPose.h" +#include "wx/cocoa/ObjcAssociate.h" + +typedef struct _NSRect NSRect; WX_DECLARE_OBJC_HASHMAP(NSView); class wxCocoaNSView @@ -27,6 +29,32 @@ protected: static void *sm_cocoaObserver; public: virtual void Cocoa_FrameChanged(void) = 0; + virtual bool Cocoa_drawRect(const NSRect &rect) + { return false; } + virtual bool Cocoa_mouseDown(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_mouseUp(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_mouseExited(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent) + { return false; } + virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent) + { return false; } }; #endif // _WX_COCOA_NSVIEW_H_