]>
Commit | Line | Data |
---|---|---|
fb896a32 DE |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/cocoa/NSView.h | |
3 | // Purpose: wxCocoaNSView class | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/02/15 | |
7 | // RCS-ID: $Id: | |
8 | // Copyright: (c) 2003 David Elliott | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __WX_COCOA_NSVIEW_H__ | |
13 | #define __WX_COCOA_NSVIEW_H__ | |
14 | ||
15 | #include "wx/hashmap.h" | |
e6686511 | 16 | #include "wx/cocoa/ObjcAssociate.h" |
fb896a32 | 17 | |
8ea5271e DE |
18 | typedef struct _NSRect NSRect; |
19 | ||
fb896a32 DE |
20 | WX_DECLARE_OBJC_HASHMAP(NSView); |
21 | class wxCocoaNSView | |
22 | { | |
23 | /* NSView is a rather special case and requires some extra attention */ | |
24 | WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSView) | |
25 | public: | |
26 | void AssociateNSView(WX_NSView cocoaNSView); | |
27 | void DisassociateNSView(WX_NSView cocoaNSView); | |
28 | protected: | |
29 | static void *sm_cocoaObserver; | |
30 | public: | |
31 | virtual void Cocoa_FrameChanged(void) = 0; | |
2d6c4e48 DE |
32 | virtual bool Cocoa_drawRect(const NSRect &rect) |
33 | { return false; } | |
34 | virtual bool Cocoa_mouseDown(WX_NSEvent theEvent) | |
35 | { return false; } | |
36 | virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent) | |
37 | { return false; } | |
38 | virtual bool Cocoa_mouseUp(WX_NSEvent theEvent) | |
39 | { return false; } | |
40 | virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent) | |
41 | { return false; } | |
42 | virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent) | |
43 | { return false; } | |
44 | virtual bool Cocoa_mouseExited(WX_NSEvent theEvent) | |
45 | { return false; } | |
46 | virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent) | |
47 | { return false; } | |
48 | virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent) | |
49 | { return false; } | |
50 | virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent) | |
51 | { return false; } | |
52 | virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent) | |
53 | { return false; } | |
54 | virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent) | |
55 | { return false; } | |
56 | virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent) | |
57 | { return false; } | |
fb896a32 DE |
58 | }; |
59 | ||
60 | #endif // _WX_COCOA_NSVIEW_H_ |