]>
Commit | Line | Data |
---|---|---|
fb896a32 DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/cocoa/window.mm | |
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 | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/window.h" | |
13 | #include "wx/log.h" | |
14 | ||
15 | #import <Appkit/NSView.h> | |
16 | ||
17 | // normally the base classes aren't included, but wxWindow is special | |
18 | #ifdef __WXUNIVERSAL__ | |
19 | IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase) | |
20 | #else | |
21 | IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase) | |
22 | #endif | |
23 | ||
24 | BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase) | |
25 | END_EVENT_TABLE() | |
26 | ||
27 | // Constructor | |
28 | void wxWindowCocoa::Init() | |
29 | { | |
30 | InitBase(); | |
31 | ||
32 | m_cocoaNSView = NULL; | |
33 | m_dummyNSView = NULL; | |
34 | m_isBeingDeleted = FALSE; | |
35 | } | |
36 | ||
37 | // Constructor | |
38 | bool wxWindow::Create(wxWindow *parent, wxWindowID winid, | |
39 | const wxPoint& pos, | |
40 | const wxSize& size, | |
41 | long style, | |
42 | const wxString& name) | |
43 | { | |
44 | if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name)) | |
45 | return false; | |
46 | ||
47 | // TODO: create the window | |
48 | NSRect cocoaRect = NSMakeRect(10,10,20,20); | |
49 | m_cocoaNSView = NULL; | |
50 | SetNSView([[NSView alloc] initWithFrame: cocoaRect]); | |
51 | [m_cocoaNSView release]; | |
52 | ||
53 | if (m_parent) | |
54 | { | |
55 | m_parent->AddChild(this); | |
56 | m_parent->CocoaAddChild(this); | |
57 | } | |
58 | ||
59 | return TRUE; | |
60 | } | |
61 | ||
62 | // Destructor | |
63 | wxWindow::~wxWindow() | |
64 | { | |
65 | DestroyChildren(); | |
66 | ||
67 | if(m_parent) | |
68 | m_parent->RemoveChild(this); | |
69 | ||
70 | CocoaRemoveFromParent(); | |
71 | SetNSView(NULL); | |
72 | } | |
73 | ||
74 | void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child) | |
75 | { | |
76 | [child->m_cocoaNSView retain]; | |
77 | // NOTE: addSubView takes ownership of, but does not retain the subview | |
78 | // Upon a removeFromView or closing the super view, the child WILL be | |
79 | // released!!! I think the idea here is that normally you would alloc | |
80 | // the subview and add it to the superview and this way you don't have | |
81 | // to release what you just alloced. Unfortunately, that doesn't | |
82 | // make sense for wxCocoa, so we do this instead. | |
83 | [m_cocoaNSView addSubview: child->m_cocoaNSView]; | |
84 | wxASSERT(!child->m_dummyNSView); | |
85 | child->m_isShown = true; | |
86 | } | |
87 | ||
88 | void wxWindowCocoa::CocoaRemoveFromParent(void) | |
89 | { | |
fb896a32 DE |
90 | if(m_dummyNSView) |
91 | { | |
c1f7d193 | 92 | wxASSERT(m_cocoaNSView); |
fb896a32 DE |
93 | // balances the alloc |
94 | [m_dummyNSView removeFromSuperview]; | |
95 | // But since we also retained it ourselves | |
96 | [m_dummyNSView release]; | |
97 | m_dummyNSView = nil; | |
98 | // m_cocoaNSView has of course already been removed by virtue of | |
99 | // replaceSubview: m_cocoaNSView with: m_dummyNSView | |
100 | } | |
101 | else | |
102 | [m_cocoaNSView removeFromSuperview]; | |
103 | } | |
104 | ||
105 | void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView) | |
106 | { | |
107 | bool need_debug = cocoaNSView || m_cocoaNSView; | |
108 | if(need_debug) wxLogDebug("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d",this,m_cocoaNSView,[m_cocoaNSView retainCount]); | |
109 | if(m_cocoaNSView) | |
110 | DisassociateNSView(m_cocoaNSView); | |
111 | [cocoaNSView retain]; | |
112 | [m_cocoaNSView release]; | |
113 | m_cocoaNSView = cocoaNSView; | |
114 | if(m_cocoaNSView) | |
115 | AssociateNSView(m_cocoaNSView); | |
116 | if(need_debug) wxLogDebug("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d",this,cocoaNSView,[cocoaNSView retainCount]); | |
117 | } | |
118 | ||
119 | void wxWindowCocoa::Cocoa_FrameChanged(void) | |
120 | { | |
121 | wxLogDebug("Cocoa_FrameChanged"); | |
122 | wxSizeEvent event(GetSize(), m_windowId); | |
123 | event.SetEventObject(this); | |
124 | GetEventHandler()->ProcessEvent(event); | |
125 | } | |
126 | ||
127 | bool wxWindow::Close(bool force) | |
128 | { | |
129 | return false; | |
130 | } | |
131 | ||
132 | bool wxWindow::Show(bool show) | |
133 | { | |
134 | // If the window is marked as visible, then it shouldn't have a dummy view | |
135 | // If the window is marked hidden, then it should have a dummy view | |
136 | wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),"wxWindow: m_isShown does not agree with m_dummyNSView"); | |
137 | // Return false if there isn't a window to show or hide | |
138 | if(!m_cocoaNSView) | |
139 | return false; | |
140 | // Return false if the state isn't changing | |
141 | if( show == m_isShown ) | |
142 | return false; | |
143 | if(show) | |
144 | { | |
145 | // replaceSubView releases m_dummyNSView, balancing the alloc | |
146 | [m_cocoaNSView retain]; | |
147 | [[m_dummyNSView superview] replaceSubview:m_dummyNSView with:m_cocoaNSView]; | |
148 | // But since we also retained it ourselves | |
149 | [m_dummyNSView release]; | |
150 | m_dummyNSView = nil; | |
151 | return true; | |
152 | } | |
153 | else | |
154 | { | |
155 | m_dummyNSView = [[NSView alloc] initWithFrame: [m_cocoaNSView frame]]; | |
156 | [m_dummyNSView retain]; | |
157 | // NOTE: replaceSubView will cause m_cocaNSView to be released | |
158 | [[m_cocoaNSView superview] replaceSubview:m_cocoaNSView with:m_dummyNSView]; | |
159 | // m_coocaNSView is now only retained by us | |
160 | return true; | |
161 | } | |
162 | } | |
163 | ||
164 | void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags) | |
165 | { | |
166 | wxLogDebug("wxWindow=%p::DoSetSizeWindow(%d,%d,%d,%d,Auto: %s%s)",this,x,y,width,height,(sizeFlags&wxSIZE_AUTO_WIDTH)?"W":".",sizeFlags&wxSIZE_AUTO_HEIGHT?"H":"."); | |
167 | int currentX, currentY; | |
168 | int currentW, currentH; | |
169 | DoGetPosition(¤tX, ¤tY); | |
170 | DoGetSize(¤tW, ¤tH); | |
171 | if((x==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
172 | x=currentX; | |
173 | if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
174 | y=currentY; | |
175 | ||
176 | AdjustForParentClientOrigin(x,y,sizeFlags); | |
177 | ||
178 | wxSize size(-1,-1); | |
179 | ||
180 | if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
181 | { | |
182 | if(sizeFlags&wxSIZE_AUTO_WIDTH) | |
183 | { | |
184 | size=DoGetBestSize(); | |
185 | width=size.x; | |
186 | } | |
187 | else | |
188 | width=currentW; | |
189 | } | |
190 | if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE)) | |
191 | { | |
192 | if(sizeFlags&wxSIZE_AUTO_HEIGHT) | |
193 | { | |
194 | if(size.x==-1) | |
195 | size=DoGetBestSize(); | |
196 | height=size.y; | |
197 | } | |
198 | else | |
199 | height=currentH; | |
200 | } | |
201 | DoMoveWindow(x,y,width,height); | |
202 | } | |
203 | ||
204 | void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height) | |
205 | { | |
206 | wxLogDebug("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)",this,x,y,width,height); | |
207 | ||
208 | NSView *superview = [m_cocoaNSView superview]; | |
209 | wxCHECK_RET(superview,"NSView does not have a superview"); | |
210 | NSRect parentRect = [superview frame]; | |
211 | ||
212 | NSRect cocoaRect = NSMakeRect(x,parentRect.size.height-(y+height),width,height); | |
213 | [m_cocoaNSView setFrame: cocoaRect]; | |
214 | // Also change the dummy's size | |
215 | if(m_dummyNSView) | |
216 | [m_dummyNSView setFrame: cocoaRect]; | |
217 | } | |
218 | ||
219 | // Get total size | |
220 | void wxWindow::DoGetSize(int *w, int *h) const | |
221 | { | |
222 | NSRect cocoaRect = [m_cocoaNSView frame]; | |
223 | if(w) | |
224 | *w=(int)cocoaRect.size.width; | |
225 | if(h) | |
226 | *h=(int)cocoaRect.size.height; | |
227 | wxLogDebug("wxWindow=%p::DoGetSize = (%d,%d)",this,(int)cocoaRect.size.width,(int)cocoaRect.size.height); | |
228 | } | |
229 | ||
230 | void wxWindow::DoGetPosition(int *x, int *y) const | |
231 | { | |
232 | NSView *superview = [m_cocoaNSView superview]; | |
233 | wxCHECK_RET(superview,"NSView does not have a superview"); | |
234 | NSRect parentRect = [superview frame]; | |
235 | ||
236 | NSRect cocoaRect = [m_cocoaNSView frame]; | |
237 | if(x) | |
238 | *x=(int)cocoaRect.origin.x; | |
239 | if(y) | |
240 | *y=(int)(parentRect.size.height-(cocoaRect.origin.y+cocoaRect.size.height)); | |
241 | wxLogDebug("wxWindow=%p::DoGetPosition = (%d,%d)",this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y); | |
242 | } | |
243 | ||
244 | WXWidget wxWindow::GetHandle() const | |
245 | { | |
246 | return m_cocoaNSView; | |
247 | } | |
248 | ||
249 | void wxWindow::SetFocus() | |
250 | { | |
251 | // TODO | |
252 | } | |
253 | ||
254 | void wxWindow::DoCaptureMouse() | |
255 | { | |
256 | // TODO | |
257 | } | |
258 | ||
259 | void wxWindow::DoReleaseMouse() | |
260 | { | |
261 | // TODO | |
262 | } | |
263 | ||
264 | void wxWindow::DoScreenToClient(int *x, int *y) const | |
265 | { | |
266 | // TODO | |
267 | } | |
268 | ||
269 | void wxWindow::DoClientToScreen(int *x, int *y) const | |
270 | { | |
271 | // TODO | |
272 | } | |
273 | ||
274 | // Get size *available for subwindows* i.e. excluding menu bar etc. | |
275 | void wxWindow::DoGetClientSize(int *x, int *y) const | |
276 | { | |
277 | wxLogDebug("DoGetClientSize:"); | |
278 | wxWindowCocoa::DoGetSize(x,y); | |
279 | // TODO: Actually account for menubar, borders, etc... | |
280 | } | |
281 | ||
282 | void wxWindow::DoSetClientSize(int width, int height) | |
283 | { | |
284 | wxLogDebug("DoSetClientSize=(%d,%d)",width,height); | |
285 | // TODO | |
286 | } | |
287 | ||
288 | int wxWindow::GetCharHeight() const | |
289 | { | |
290 | // TODO | |
291 | return 0; | |
292 | } | |
293 | ||
294 | int wxWindow::GetCharWidth() const | |
295 | { | |
296 | // TODO | |
297 | return 0; | |
298 | } | |
299 | ||
300 | void wxWindow::GetTextExtent(const wxString& string, int *x, int *y, | |
301 | int *descent, int *externalLeading, const wxFont *theFont) const | |
302 | { | |
303 | // TODO | |
304 | } | |
305 | ||
306 | void wxWindow::Refresh(bool eraseBack, const wxRect *rect) | |
307 | { | |
308 | // TODO | |
309 | } | |
310 | ||
311 | // Coordinates relative to the window | |
312 | void wxWindow::WarpPointer (int x_pos, int y_pos) | |
313 | { | |
314 | // TODO | |
315 | } | |
316 | ||
317 | int wxWindow::GetScrollPos(int orient) const | |
318 | { | |
319 | // TODO | |
320 | return 0; | |
321 | } | |
322 | ||
323 | // This now returns the whole range, not just the number | |
324 | // of positions that we can scroll. | |
325 | int wxWindow::GetScrollRange(int orient) const | |
326 | { | |
327 | // TODO | |
328 | return 0; | |
329 | } | |
330 | ||
331 | int wxWindow::GetScrollThumb(int orient) const | |
332 | { | |
333 | // TODO | |
334 | return 0; | |
335 | } | |
336 | ||
337 | void wxWindow::SetScrollPos(int orient, int pos, bool refresh) | |
338 | { | |
339 | // TODO | |
340 | } | |
341 | ||
342 | // New function that will replace some of the above. | |
343 | void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible, | |
344 | int range, bool refresh) | |
345 | { | |
346 | // TODO | |
347 | } | |
348 | ||
349 | // Does a physical scroll | |
350 | void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect) | |
351 | { | |
352 | // TODO | |
353 | } | |
354 | ||
355 | bool wxWindow::SetFont(const wxFont& font) | |
356 | { | |
357 | // TODO | |
358 | return TRUE; | |
359 | } | |
360 | ||
361 | void wxWindow::Clear() | |
362 | { | |
363 | // TODO | |
364 | } | |
365 | ||
366 | // Raise the window to the top of the Z order | |
367 | void wxWindow::Raise() | |
368 | { | |
369 | // TODO | |
370 | } | |
371 | ||
372 | // Lower the window to the bottom of the Z order | |
373 | void wxWindow::Lower() | |
374 | { | |
375 | // TODO | |
376 | } | |
377 | ||
378 | bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y) | |
379 | { | |
380 | return FALSE; | |
381 | } | |
382 | ||
383 | // Get the window with the focus | |
384 | wxWindow *wxWindowBase::FindFocus() | |
385 | { | |
386 | // TODO | |
387 | return NULL; | |
388 | } | |
389 | ||
390 | /* static */ wxWindow *wxWindowBase::GetCapture() | |
391 | { | |
392 | // TODO | |
393 | return NULL; | |
394 | } | |
395 | ||
396 | wxWindow *wxGetActiveWindow() | |
397 | { | |
398 | // TODO | |
399 | return NULL; | |
400 | } | |
401 |