]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/NSView.h
Applied patch [ 1218833 ] [wxMSW] wxListBox optimisation for XP
[wxWidgets.git] / include / wx / cocoa / NSView.h
index 3fc6c7904f2d49987123e55e7b107b984fbd0cfc..50a583c5d2f0f0492cb903fe0944849dadc01ea2 100644 (file)
@@ -6,16 +6,17 @@
 // Created:     2003/02/15
 // RCS-ID:      $Id: 
 // Copyright:   (c) 2003 David Elliott
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #ifndef __WX_COCOA_NSVIEW_H__
 #define __WX_COCOA_NSVIEW_H__
 
 #include "wx/hashmap.h"
-#include "wx/cocoa/ObjcPose.h"
+#include "wx/cocoa/ObjcAssociate.h"
 
 typedef struct _NSRect NSRect;
+class wxWindow;
 
 WX_DECLARE_OBJC_HASHMAP(NSView);
 class wxCocoaNSView
@@ -28,8 +29,37 @@ public:
 protected:
     static void *sm_cocoaObserver;
 public:
+    virtual wxWindow* GetWxWindow() const
+    {  return NULL;    }
     virtual void Cocoa_FrameChanged(void) = 0;
-    virtual bool Cocoa_drawRect(const NSRect &rect) = 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; }
+    virtual bool Cocoa_resetCursorRects()
+    {  return false; }
 };
 
 #endif // _WX_COCOA_NSVIEW_H_