1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/window.mm
3 // Purpose: wxWindowCocoa
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/window.h"
15 #import <Appkit/NSView.h>
17 // normally the base classes aren't included, but wxWindow is special
18 #ifdef __WXUNIVERSAL__
19 IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase)
21 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
24 BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
28 void wxWindowCocoa::Init()
34 m_isBeingDeleted = FALSE;
38 bool wxWindow::Create(wxWindow *parent, wxWindowID winid,
44 if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name))
47 // TODO: create the window
48 NSRect cocoaRect = NSMakeRect(10,10,20,20);
50 SetNSView([[NSView alloc] initWithFrame: cocoaRect]);
51 [m_cocoaNSView release];
55 m_parent->AddChild(this);
56 m_parent->CocoaAddChild(this);
68 m_parent->RemoveChild(this);
70 CocoaRemoveFromParent();
74 void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child)
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;
88 void wxWindowCocoa::CocoaRemoveFromParent(void)
92 wxASSERT(m_cocoaNSView);
94 [m_dummyNSView removeFromSuperview];
95 // But since we also retained it ourselves
96 [m_dummyNSView release];
98 // m_cocoaNSView has of course already been removed by virtue of
99 // replaceSubview: m_cocoaNSView with: m_dummyNSView
102 [m_cocoaNSView removeFromSuperview];
105 void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView)
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]);
110 DisassociateNSView(m_cocoaNSView);
111 [cocoaNSView retain];
112 [m_cocoaNSView release];
113 m_cocoaNSView = cocoaNSView;
115 AssociateNSView(m_cocoaNSView);
116 if(need_debug) wxLogDebug("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d",this,cocoaNSView,[cocoaNSView retainCount]);
119 void wxWindowCocoa::Cocoa_FrameChanged(void)
121 wxLogDebug("Cocoa_FrameChanged");
122 wxSizeEvent event(GetSize(), m_windowId);
123 event.SetEventObject(this);
124 GetEventHandler()->ProcessEvent(event);
127 bool wxWindow::Close(bool force)
132 bool wxWindow::Show(bool show)
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
140 // Return false if the state isn't changing
141 if( show == m_isShown )
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];
154 m_dummyNSView = [[NSView alloc] initWithFrame: [m_cocoaNSView frame]];
155 [m_dummyNSView retain];
156 // NOTE: replaceSubView will cause m_cocaNSView to be released
157 [[m_cocoaNSView superview] replaceSubview:m_cocoaNSView with:m_dummyNSView];
158 // m_coocaNSView is now only retained by us
164 void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags)
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))
173 if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
176 AdjustForParentClientOrigin(x,y,sizeFlags);
180 if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
182 if(sizeFlags&wxSIZE_AUTO_WIDTH)
184 size=DoGetBestSize();
190 if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
192 if(sizeFlags&wxSIZE_AUTO_HEIGHT)
195 size=DoGetBestSize();
201 DoMoveWindow(x,y,width,height);
204 void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
206 wxLogDebug("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)",this,x,y,width,height);
208 NSView *nsview = m_dummyNSView?m_dummyNSView:m_cocoaNSView;
209 NSView *superview = [nsview superview];
210 wxCHECK_RET(superview,"NSView does not have a superview");
211 NSRect parentRect = [superview frame];
213 NSRect cocoaRect = NSMakeRect(x,parentRect.size.height-(y+height),width,height);
214 [m_cocoaNSView setFrame: cocoaRect];
215 // Also change the dummy's size
217 [m_dummyNSView setFrame: cocoaRect];
221 void wxWindow::DoGetSize(int *w, int *h) const
223 NSRect cocoaRect = [m_cocoaNSView frame];
225 *w=(int)cocoaRect.size.width;
227 *h=(int)cocoaRect.size.height;
228 wxLogDebug("wxWindow=%p::DoGetSize = (%d,%d)",this,(int)cocoaRect.size.width,(int)cocoaRect.size.height);
231 void wxWindow::DoGetPosition(int *x, int *y) const
233 NSView *nsview = m_dummyNSView?m_dummyNSView:m_cocoaNSView;
234 NSView *superview = [nsview superview];
235 wxCHECK_RET(superview,"NSView does not have a superview");
236 NSRect parentRect = [superview frame];
238 NSRect cocoaRect = [nsview frame];
240 *x=(int)cocoaRect.origin.x;
242 *y=(int)(parentRect.size.height-(cocoaRect.origin.y+cocoaRect.size.height));
243 wxLogDebug("wxWindow=%p::DoGetPosition = (%d,%d)",this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y);
246 WXWidget wxWindow::GetHandle() const
248 return m_cocoaNSView;
251 void wxWindow::SetFocus()
256 void wxWindow::DoCaptureMouse()
261 void wxWindow::DoReleaseMouse()
266 void wxWindow::DoScreenToClient(int *x, int *y) const
271 void wxWindow::DoClientToScreen(int *x, int *y) const
276 // Get size *available for subwindows* i.e. excluding menu bar etc.
277 void wxWindow::DoGetClientSize(int *x, int *y) const
279 wxLogDebug("DoGetClientSize:");
280 wxWindowCocoa::DoGetSize(x,y);
281 // TODO: Actually account for menubar, borders, etc...
284 void wxWindow::DoSetClientSize(int width, int height)
286 wxLogDebug("DoSetClientSize=(%d,%d)",width,height);
290 int wxWindow::GetCharHeight() const
296 int wxWindow::GetCharWidth() const
302 void wxWindow::GetTextExtent(const wxString& string, int *x, int *y,
303 int *descent, int *externalLeading, const wxFont *theFont) const
308 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
313 // Coordinates relative to the window
314 void wxWindow::WarpPointer (int x_pos, int y_pos)
319 int wxWindow::GetScrollPos(int orient) const
325 // This now returns the whole range, not just the number
326 // of positions that we can scroll.
327 int wxWindow::GetScrollRange(int orient) const
333 int wxWindow::GetScrollThumb(int orient) const
339 void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
344 // New function that will replace some of the above.
345 void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
346 int range, bool refresh)
351 // Does a physical scroll
352 void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
357 bool wxWindow::SetFont(const wxFont& font)
363 void wxWindow::Clear()
368 // Raise the window to the top of the Z order
369 void wxWindow::Raise()
374 // Lower the window to the bottom of the Z order
375 void wxWindow::Lower()
380 bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
385 // Get the window with the focus
386 wxWindow *wxWindowBase::FindFocus()
392 /* static */ wxWindow *wxWindowBase::GetCapture()
398 wxWindow *wxGetActiveWindow()