]>
Commit | Line | Data |
---|---|---|
fb896a32 DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/cocoa/window.h | |
3 | // Purpose: wxWindowCocoa | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2002/12/26 | |
7 | // RCS-ID: $Id: | |
8 | // Copyright: (c) 2002 David Elliott | |
65571936 | 9 | // Licence: wxWindows licence |
fb896a32 DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef __WX_COCOA_WINDOW_H__ | |
13 | #define __WX_COCOA_WINDOW_H__ | |
14 | ||
15 | #include "wx/cocoa/NSView.h" | |
16 | ||
d139c3a8 DE |
17 | #ifdef __OBJC__ |
18 | #import <Foundation/NSGeometry.h> | |
19 | #endif //def __OBJC__ | |
20 | ||
9d208085 DE |
21 | DECLARE_WXCOCOA_OBJC_CLASS(NSAffineTransform); |
22 | ||
a82b8141 | 23 | class wxWindowCocoaHider; |
f298b203 | 24 | class wxWindowCocoaScrollView; |
a82b8141 | 25 | |
fb896a32 DE |
26 | // ======================================================================== |
27 | // wxWindowCocoa | |
28 | // ======================================================================== | |
29 | class WXDLLEXPORT wxWindowCocoa: public wxWindowBase, protected wxCocoaNSView | |
30 | { | |
31 | DECLARE_DYNAMIC_CLASS(wxWindowCocoa) | |
32 | DECLARE_NO_COPY_CLASS(wxWindowCocoa) | |
33 | DECLARE_EVENT_TABLE() | |
b9505233 | 34 | friend wxWindow *wxWindowBase::GetCapture(); |
f298b203 | 35 | friend class wxWindowCocoaScrollView; |
fb896a32 DE |
36 | // ------------------------------------------------------------------------ |
37 | // initialization | |
38 | // ------------------------------------------------------------------------ | |
39 | public: | |
40 | wxWindowCocoa() { Init(); } | |
41 | inline wxWindowCocoa(wxWindow *parent, wxWindowID winid, | |
42 | const wxPoint& pos = wxDefaultPosition, | |
43 | const wxSize& size = wxDefaultSize, | |
44 | long style = 0, | |
45 | const wxString& name = wxPanelNameStr) | |
46 | { | |
47 | Init(); | |
48 | Create(parent, winid, pos, size, style, name); | |
49 | } | |
50 | ||
51 | virtual ~wxWindowCocoa(); | |
52 | ||
53 | bool Create(wxWindow *parent, wxWindowID winid, | |
54 | const wxPoint& pos = wxDefaultPosition, | |
55 | const wxSize& size = wxDefaultSize, | |
56 | long style = 0, | |
57 | const wxString& name = wxPanelNameStr); | |
58 | protected: | |
59 | void Init(); | |
60 | // ------------------------------------------------------------------------ | |
61 | // Cocoa specifics | |
62 | // ------------------------------------------------------------------------ | |
63 | public: | |
a82b8141 | 64 | // Returns the content NSView (where children are added, drawing performed) |
fb896a32 | 65 | inline WX_NSView GetNSView() { return m_cocoaNSView; } |
a82b8141 DE |
66 | // Returns the NSView suitable for use as a subview |
67 | WX_NSView GetNSViewForSuperview() const; | |
68 | // Returns the NSView that may be hidden/is being hidden | |
69 | WX_NSView GetNSViewForHiding() const; | |
514e7b7b DE |
70 | // Returns the NSView for non-client drawing |
71 | virtual WX_NSView GetNonClientNSView() { return GetNSViewForSuperview(); } | |
72 | // Add/remove children | |
fb896a32 DE |
73 | void CocoaAddChild(wxWindowCocoa *child); |
74 | void CocoaRemoveFromParent(void); | |
9d208085 DE |
75 | #ifdef __OBJC__ |
76 | // Returns an autoreleased NSAffineTransform which can be applied | |
77 | // to a graphics context currently using the view's coordinate system | |
78 | // (such as the one locked when drawRect is called or after a call | |
79 | // to [NSView lockFocus]) such that further drawing is done using | |
80 | // the wxWidgets coordinate system. | |
81 | WX_NSAffineTransform CocoaGetWxToBoundsTransform(); | |
82 | #endif //def __OBJC__ | |
fb896a32 | 83 | protected: |
adb4816c DE |
84 | // enable==false: disables the control |
85 | // enable==true: enables the control IF it should be enabled | |
86 | bool EnableSelfAndChildren(bool enable); | |
87 | // actually enable/disable the cocoa control, overridden by subclasses | |
88 | virtual void CocoaSetEnabled(bool enable) { } | |
89 | // Reflects the state for THIS window (ignoring disables by parents) | |
90 | bool m_shouldBeEnabled; | |
91 | ||
816c52cf | 92 | void CocoaCreateNSScrollView(); |
69dbb709 | 93 | void InitMouseEvent(wxMouseEvent &event, WX_NSEvent cocoaEvent); |
f7e98dee | 94 | virtual wxWindow* GetWxWindow() const; |
8ea5271e DE |
95 | virtual void Cocoa_FrameChanged(void); |
96 | virtual bool Cocoa_drawRect(const NSRect &rect); | |
69dbb709 DE |
97 | virtual bool Cocoa_mouseDown(WX_NSEvent theEvent); |
98 | virtual bool Cocoa_mouseDragged(WX_NSEvent theEvent); | |
99 | virtual bool Cocoa_mouseUp(WX_NSEvent theEvent); | |
100 | virtual bool Cocoa_mouseMoved(WX_NSEvent theEvent); | |
101 | virtual bool Cocoa_mouseEntered(WX_NSEvent theEvent); | |
102 | virtual bool Cocoa_mouseExited(WX_NSEvent theEvent); | |
103 | virtual bool Cocoa_rightMouseDown(WX_NSEvent theEvent); | |
104 | virtual bool Cocoa_rightMouseDragged(WX_NSEvent theEvent); | |
105 | virtual bool Cocoa_rightMouseUp(WX_NSEvent theEvent); | |
106 | virtual bool Cocoa_otherMouseDown(WX_NSEvent theEvent); | |
107 | virtual bool Cocoa_otherMouseDragged(WX_NSEvent theEvent); | |
108 | virtual bool Cocoa_otherMouseUp(WX_NSEvent theEvent); | |
5558135c | 109 | virtual bool Cocoa_resetCursorRects(); |
fb896a32 DE |
110 | void SetNSView(WX_NSView cocoaNSView); |
111 | WX_NSView m_cocoaNSView; | |
a82b8141 | 112 | wxWindowCocoaHider *m_cocoaHider; |
f298b203 | 113 | wxWindowCocoaScrollView *m_wxCocoaScrollView; |
55c5be5e | 114 | bool m_isInPaint; |
b9505233 | 115 | static wxWindow *sm_capturedWindow; |
a82b8141 | 116 | virtual void CocoaReplaceView(WX_NSView oldView, WX_NSView newView); |
d139c3a8 DE |
117 | void SetInitialFrameRect(const wxPoint& pos, const wxSize& size); |
118 | #ifdef __OBJC__ | |
119 | inline NSRect MakeDefaultNSRect(const wxSize& size) | |
120 | { | |
121 | // NOTE: position is 10,10 to make it "obvious" that it's out of place | |
122 | return NSMakeRect(10.0,10.0,WidthDefault(size.x),HeightDefault(size.y)); | |
123 | } | |
34c9978d DE |
124 | // These functions translate NSPoint or NSRect between the coordinate |
125 | // system of Cocoa's boudns rect and wx's coordinate system. | |
126 | NSPoint CocoaTransformBoundsToWx(NSPoint pointBounds); | |
127 | NSRect CocoaTransformBoundsToWx(NSRect rectBounds); | |
128 | NSPoint CocoaTransformWxToBounds(NSPoint pointWx); | |
129 | NSRect CocoaTransformWxToBounds(NSRect rectWx); | |
d139c3a8 | 130 | #endif //def __OBJC__ |
fb896a32 DE |
131 | // ------------------------------------------------------------------------ |
132 | // Implementation | |
133 | // ------------------------------------------------------------------------ | |
134 | public: | |
135 | /* Pure Virtuals */ | |
136 | // Raise the window to the top of the Z order | |
137 | virtual void Raise(); | |
138 | // Lower the window to the bottom of the Z order | |
139 | virtual void Lower(); | |
140 | // Set the focus to this window | |
141 | virtual void SetFocus(); | |
142 | // Warp the pointer the given position | |
143 | virtual void WarpPointer(int x_pos, int y_pos) ; | |
144 | // Send the window a refresh event | |
145 | virtual void Refresh(bool eraseBack = TRUE, const wxRect *rect = NULL); | |
fb896a32 DE |
146 | // Set/get the window's font |
147 | virtual bool SetFont(const wxFont& f); | |
148 | // inline virtual wxFont& GetFont() const; | |
149 | // Get character size | |
150 | virtual int GetCharHeight() const; | |
151 | virtual int GetCharWidth() const; | |
152 | virtual void GetTextExtent(const wxString& string, int *x, int *y, | |
153 | int *descent = NULL, | |
154 | int *externalLeading = NULL, | |
155 | const wxFont *theFont = NULL) const; | |
156 | // Scroll stuff | |
157 | virtual void SetScrollbar(int orient, int pos, int thumbVisible, | |
158 | int range, bool refresh = TRUE); | |
159 | virtual void SetScrollPos(int orient, int pos, bool refresh = TRUE); | |
160 | virtual int GetScrollPos(int orient) const; | |
161 | virtual int GetScrollThumb(int orient) const; | |
162 | virtual int GetScrollRange(int orient) const; | |
163 | virtual void ScrollWindow(int dx, int dy, const wxRect *rect = NULL); | |
816c52cf | 164 | virtual void DoSetVirtualSize(int x, int y); |
fb896a32 DE |
165 | // Get the private handle (platform-dependent) |
166 | virtual WXWidget GetHandle() const; | |
167 | // Convert client to screen coordinates | |
168 | virtual void DoClientToScreen(int *x, int *y) const; | |
169 | // Convert screen to client coordinates | |
170 | virtual void DoScreenToClient(int *x, int *y) const; | |
171 | // Capture/release mouse | |
172 | virtual void DoCaptureMouse(); | |
173 | virtual void DoReleaseMouse(); | |
174 | // Get window position, relative to parent (or screen if no parent) | |
175 | virtual void DoGetPosition(int *x, int *y) const; | |
176 | // Get overall window size | |
177 | virtual void DoGetSize(int *width, int *height) const; | |
178 | // Get/set client (application-useable) size | |
179 | virtual void DoGetClientSize(int *width, int *height) const; | |
180 | virtual void DoSetClientSize(int width, int size); | |
5558135c RN |
181 | // Set this window's tooltip |
182 | virtual void DoSetToolTip( wxToolTip *tip ); | |
e08efb8d DE |
183 | // Set the size of the wxWindow (the contentView of an NSWindow) |
184 | // wxTopLevelWindow will override this and set the NSWindow size | |
185 | // such that the contentView will be this size | |
186 | virtual void CocoaSetWxWindowSize(int width, int height); | |
fb896a32 DE |
187 | // Set overall size and position |
188 | virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
189 | virtual void DoMoveWindow(int x, int y, int width, int height); | |
190 | // Popup a menu | |
191 | virtual bool DoPopupMenu(wxMenu *menu, int x, int y); | |
192 | ||
193 | /* Other implementation */ | |
194 | ||
195 | // NOTE: typically Close() is not virtual, but we want this for Cocoa | |
196 | virtual bool Close( bool force = false ); | |
197 | virtual bool Show( bool show = true ); | |
adb4816c | 198 | virtual bool Enable( bool enable = true ); |
fb896a32 DE |
199 | }; |
200 | ||
201 | #endif // __WX_COCOA_WINDOW_H__ |