]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/NSView.h
making cocoa build again
[wxWidgets.git] / include / wx / cocoa / NSView.h
index 7c9fabbbfd29aa2d872e5088858538d7b23643ce..7fdaba8c3a7cb00772770b70fc8f44c0a1de61dc 100644 (file)
@@ -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,9 @@ public:
     {   return false; }
     virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent)
     {   return false; }
+    virtual bool Cocoa_resetCursorRects()
+    {  return false; }
+    virtual ~wxCocoaNSView() { }
 };
 
 #endif // _WX_COCOA_NSVIEW_H_