X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8ea5271ee74fc4a1e39326af3112f5ed9dcd432f..f888d61444c1549c5e8a593055f0159dd07eca86:/include/wx/cocoa/NSView.h?ds=inline diff --git a/include/wx/cocoa/NSView.h b/include/wx/cocoa/NSView.h index 3fc6c7904f..c6e0493916 100644 --- a/include/wx/cocoa/NSView.h +++ b/include/wx/cocoa/NSView.h @@ -13,7 +13,7 @@ #define __WX_COCOA_NSVIEW_H__ #include "wx/hashmap.h" -#include "wx/cocoa/ObjcPose.h" +#include "wx/cocoa/ObjcAssociate.h" typedef struct _NSRect NSRect; @@ -30,6 +30,18 @@ protected: public: virtual void Cocoa_FrameChanged(void) = 0; virtual bool Cocoa_drawRect(const NSRect &rect) = 0; + virtual bool Cocoa_mouseDown(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_mouseUp(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_mouseExited(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent) = 0; + virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent) = 0; }; #endif // _WX_COCOA_NSVIEW_H_