]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/NSView.h
include "wx/module.h" for wxModule
[wxWidgets.git] / include / wx / cocoa / NSView.h
index 10a172fa81fbeb64a3e71edb991c632ba00b01d9..c6e04939161cd17d77310ec7eacc9ee2f43e8e73 100644 (file)
@@ -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,19 @@ protected:
     static void *sm_cocoaObserver;
 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_