]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/cocoa/NSView.h
do platform-specific checks after ensuring that the symbols we use are defined; extra...
[wxWidgets.git] / include / wx / cocoa / NSView.h
... / ...
CommitLineData
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 licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef __WX_COCOA_NSVIEW_H__
13#define __WX_COCOA_NSVIEW_H__
14
15#include "wx/hashmap.h"
16#include "wx/cocoa/ObjcAssociate.h"
17
18#if defined(__LP64__) || defined(NS_BUILD_32_LIKE_64)
19typedef struct CGRect NSRect;
20#else
21typedef struct _NSRect NSRect;
22#endif
23
24class wxWindow;
25
26WX_DECLARE_OBJC_HASHMAP(NSView);
27class wxCocoaNSView
28{
29/* NSView is a rather special case and requires some extra attention */
30 WX_DECLARE_OBJC_INTERFACE_HASHMAP(NSView)
31public:
32 void AssociateNSView(WX_NSView cocoaNSView);
33 void DisassociateNSView(WX_NSView cocoaNSView);
34protected:
35 static void *sm_cocoaObserver;
36public:
37 virtual wxWindow* GetWxWindow() const
38 { return NULL; }
39 virtual void Cocoa_FrameChanged(void) = 0;
40 virtual void Cocoa_synthesizeMouseMoved(void) = 0;
41 virtual bool Cocoa_acceptsFirstMouse(bool &acceptsFirstMouse, WX_NSEvent theEvent)
42 { return false; }
43 virtual bool Cocoa_drawRect(const NSRect &rect)
44 { return false; }
45 virtual bool Cocoa_mouseDown(WX_NSEvent theEvent)
46 { return false; }
47 virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent)
48 { return false; }
49 virtual bool Cocoa_mouseUp(WX_NSEvent theEvent)
50 { return false; }
51 virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent)
52 { return false; }
53 virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent)
54 { return false; }
55 virtual bool Cocoa_mouseExited(WX_NSEvent theEvent)
56 { return false; }
57 virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent)
58 { return false; }
59 virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent)
60 { return false; }
61 virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent)
62 { return false; }
63 virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent)
64 { return false; }
65 virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent)
66 { return false; }
67 virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent)
68 { return false; }
69 virtual bool Cocoa_resetCursorRects()
70 { return false; }
71 virtual bool Cocoa_viewDidMoveToWindow()
72 { return false; }
73 virtual bool Cocoa_viewWillMoveToWindow(WX_NSWindow newWindow)
74 { return false; }
75 virtual ~wxCocoaNSView() { }
76};
77
78#endif
79 // __WX_COCOA_NSVIEW_H__