#include "wx/cocoa/ObjcAssociate.h"
typedef struct _NSRect NSRect;
+class wxWindow;
WX_DECLARE_OBJC_HASHMAP(NSView);
class wxCocoaNSView
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)
{ return false; }
{ return false; }
virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent)
{ return false; }
+ virtual bool Cocoa_resetCursorRects()
+ { return false; }
};
#endif // _WX_COCOA_NSVIEW_H_