1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/window.mm
3 // Purpose: wxWindowCocoa
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 #include "wx/window.h"
21 #include "wx/tooltip.h"
23 #include "wx/cocoa/autorelease.h"
24 #include "wx/cocoa/string.h"
26 #import <AppKit/NSView.h>
27 #import <AppKit/NSEvent.h>
28 #import <AppKit/NSScrollView.h>
29 #import <AppKit/NSColor.h>
30 #import <AppKit/NSClipView.h>
31 #import <Foundation/NSException.h>
32 #import <AppKit/NSApplication.h>
33 #import <AppKit/NSWindow.h>
35 // Turn this on to paint green over the dummy views for debugging
36 #undef WXCOCOA_FILL_DUMMY_VIEW
38 #ifdef WXCOCOA_FILL_DUMMY_VIEW
39 #import <AppKit/NSBezierPath.h>
40 #endif //def WXCOCOA_FILL_DUMMY_VIEW
42 // A category for methods that are only present in Panther's SDK
43 @interface NSView(wxNSViewPrePantherCompatibility)
44 - (void)getRectsBeingDrawn:(const NSRect **)rects count:(int *)count;
47 NSPoint CocoaTransformNSViewBoundsToWx(NSView *nsview, NSPoint pointBounds)
49 wxCHECK_MSG(nsview, pointBounds, wxT("Need to have a Cocoa view to do translation"));
50 if([nsview isFlipped])
52 NSRect ourBounds = [nsview bounds];
55 , ourBounds.size.height - pointBounds.y
59 NSRect CocoaTransformNSViewBoundsToWx(NSView *nsview, NSRect rectBounds)
61 wxCHECK_MSG(nsview, rectBounds, wxT("Need to have a Cocoa view to do translation"));
62 if([nsview isFlipped])
64 NSRect ourBounds = [nsview bounds];
67 , ourBounds.size.height - (rectBounds.origin.y + rectBounds.size.height)
68 , rectBounds.size.width
69 , rectBounds.size.height
73 NSPoint CocoaTransformNSViewWxToBounds(NSView *nsview, NSPoint pointWx)
75 wxCHECK_MSG(nsview, pointWx, wxT("Need to have a Cocoa view to do translation"));
76 if([nsview isFlipped])
78 NSRect ourBounds = [nsview bounds];
81 , ourBounds.size.height - pointWx.y
85 NSRect CocoaTransformNSViewWxToBounds(NSView *nsview, NSRect rectWx)
87 wxCHECK_MSG(nsview, rectWx, wxT("Need to have a Cocoa view to do translation"));
88 if([nsview isFlipped])
90 NSRect ourBounds = [nsview bounds];
93 , ourBounds.size.height - (rectWx.origin.y + rectWx.size.height)
99 // ========================================================================
100 // wxWindowCocoaHider
101 // ========================================================================
102 class wxWindowCocoaHider: protected wxCocoaNSView
104 DECLARE_NO_COPY_CLASS(wxWindowCocoaHider)
106 wxWindowCocoaHider(wxWindow *owner);
107 virtual ~wxWindowCocoaHider();
108 inline WX_NSView GetNSView() { return m_dummyNSView; }
110 wxWindowCocoa *m_owner;
111 WX_NSView m_dummyNSView;
112 virtual void Cocoa_FrameChanged(void);
113 #ifdef WXCOCOA_FILL_DUMMY_VIEW
114 virtual bool Cocoa_drawRect(const NSRect& rect);
115 #endif //def WXCOCOA_FILL_DUMMY_VIEW
117 wxWindowCocoaHider();
120 // ========================================================================
121 // wxWindowCocoaScrollView
122 // ========================================================================
123 class wxWindowCocoaScrollView: protected wxCocoaNSView
125 DECLARE_NO_COPY_CLASS(wxWindowCocoaScrollView)
127 wxWindowCocoaScrollView(wxWindow *owner);
128 virtual ~wxWindowCocoaScrollView();
129 inline WX_NSScrollView GetNSScrollView() { return m_cocoaNSScrollView; }
130 void ClientSizeToSize(int &width, int &height);
131 void DoGetClientSize(int *x, int *y) const;
133 void Unencapsulate();
135 wxWindowCocoa *m_owner;
136 WX_NSScrollView m_cocoaNSScrollView;
137 virtual void Cocoa_FrameChanged(void);
139 wxWindowCocoaScrollView();
142 // ========================================================================
144 // ========================================================================
145 @interface wxDummyNSView : NSView
146 - (NSView *)hitTest:(NSPoint)aPoint;
149 @implementation wxDummyNSView : NSView
150 - (NSView *)hitTest:(NSPoint)aPoint
157 // ========================================================================
158 // wxWindowCocoaHider
159 // ========================================================================
160 wxWindowCocoaHider::wxWindowCocoaHider(wxWindow *owner)
164 wxASSERT(owner->GetNSViewForHiding());
165 m_dummyNSView = [[wxDummyNSView alloc]
166 initWithFrame:[owner->GetNSViewForHiding() frame]];
167 [m_dummyNSView setAutoresizingMask: [owner->GetNSViewForHiding() autoresizingMask]];
168 AssociateNSView(m_dummyNSView);
171 wxWindowCocoaHider::~wxWindowCocoaHider()
173 DisassociateNSView(m_dummyNSView);
174 [m_dummyNSView release];
177 void wxWindowCocoaHider::Cocoa_FrameChanged(void)
179 // Keep the real window in synch with the dummy
180 wxASSERT(m_dummyNSView);
181 [m_owner->GetNSViewForHiding() setFrame:[m_dummyNSView frame]];
185 #ifdef WXCOCOA_FILL_DUMMY_VIEW
186 bool wxWindowCocoaHider::Cocoa_drawRect(const NSRect& rect)
188 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:rect];
189 [[NSColor greenColor] set];
194 #endif //def WXCOCOA_FILL_DUMMY_VIEW
196 // ========================================================================
197 // wxFlippedNSClipView
198 // ========================================================================
199 @interface wxFlippedNSClipView : NSClipView
203 @implementation wxFlippedNSClipView : NSClipView
211 // ========================================================================
212 // wxWindowCocoaScrollView
213 // ========================================================================
214 wxWindowCocoaScrollView::wxWindowCocoaScrollView(wxWindow *owner)
217 wxAutoNSAutoreleasePool pool;
219 wxASSERT(owner->GetNSView());
220 m_cocoaNSScrollView = [[NSScrollView alloc]
221 initWithFrame:[owner->GetNSView() frame]];
222 AssociateNSView(m_cocoaNSScrollView);
224 /* Replace the default NSClipView with a flipped one. This ensures
225 scrolling is "pinned" to the top-left instead of bottom-right. */
226 NSClipView *flippedClip = [[wxFlippedNSClipView alloc]
227 initWithFrame: [[m_cocoaNSScrollView contentView] frame]];
228 [m_cocoaNSScrollView setContentView:flippedClip];
229 [flippedClip release];
231 [m_cocoaNSScrollView setBackgroundColor: [NSColor windowBackgroundColor]];
232 [m_cocoaNSScrollView setHasHorizontalScroller: YES];
233 [m_cocoaNSScrollView setHasVerticalScroller: YES];
237 void wxWindowCocoaScrollView::Encapsulate()
239 // Set the scroll view autoresizingMask to match the current NSView
240 [m_cocoaNSScrollView setAutoresizingMask: [m_owner->GetNSView() autoresizingMask]];
241 [m_owner->GetNSView() setAutoresizingMask: NSViewNotSizable];
242 // NOTE: replaceSubView will cause m_cocaNSView to be released
243 // except when it hasn't been added into an NSView hierarchy in which
244 // case it doesn't need to be and this should work out to a no-op
245 m_owner->CocoaReplaceView(m_owner->GetNSView(), m_cocoaNSScrollView);
246 // The NSView is still retained by owner
247 [m_cocoaNSScrollView setDocumentView: m_owner->GetNSView()];
248 // Now it's also retained by the NSScrollView
251 void wxWindowCocoaScrollView::Unencapsulate()
253 [m_cocoaNSScrollView setDocumentView: nil];
254 m_owner->CocoaReplaceView(m_cocoaNSScrollView, m_owner->GetNSView());
255 if(![[m_owner->GetNSView() superview] isFlipped])
256 [m_owner->GetNSView() setAutoresizingMask: NSViewMinYMargin];
259 wxWindowCocoaScrollView::~wxWindowCocoaScrollView()
261 DisassociateNSView(m_cocoaNSScrollView);
262 [m_cocoaNSScrollView release];
265 void wxWindowCocoaScrollView::ClientSizeToSize(int &width, int &height)
267 NSSize frameSize = [NSScrollView
268 frameSizeForContentSize: NSMakeSize(width,height)
269 hasHorizontalScroller: [m_cocoaNSScrollView hasHorizontalScroller]
270 hasVerticalScroller: [m_cocoaNSScrollView hasVerticalScroller]
271 borderType: [m_cocoaNSScrollView borderType]];
272 width = (int)frameSize.width;
273 height = (int)frameSize.height;
276 void wxWindowCocoaScrollView::DoGetClientSize(int *x, int *y) const
278 NSSize nssize = [m_cocoaNSScrollView contentSize];
280 *x = (int)nssize.width;
282 *y = (int)nssize.height;
285 void wxWindowCocoaScrollView::Cocoa_FrameChanged(void)
287 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged"));
288 wxSizeEvent event(m_owner->GetSize(), m_owner->GetId());
289 event.SetEventObject(m_owner);
290 m_owner->GetEventHandler()->ProcessEvent(event);
293 // ========================================================================
295 // ========================================================================
296 // normally the base classes aren't included, but wxWindow is special
297 #ifdef __WXUNIVERSAL__
298 IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase)
300 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
303 BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
306 wxWindow *wxWindowCocoa::sm_capturedWindow = NULL;
309 void wxWindowCocoa::Init()
311 m_cocoaNSView = NULL;
313 m_wxCocoaScrollView = NULL;
314 m_isBeingDeleted = false;
319 bool wxWindow::Create(wxWindow *parent, wxWindowID winid,
323 const wxString& name)
325 if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name))
328 // TODO: create the window
329 m_cocoaNSView = NULL;
330 SetNSView([[NSView alloc] initWithFrame: MakeDefaultNSRect(size)]);
331 [m_cocoaNSView release];
335 m_parent->AddChild(this);
336 m_parent->CocoaAddChild(this);
337 SetInitialFrameRect(pos,size);
344 wxWindow::~wxWindow()
346 wxAutoNSAutoreleasePool pool;
349 // Make sure our parent (in the wxWidgets sense) is our superview
350 // before we go removing from it.
351 if(m_parent && m_parent->GetNSView()==[GetNSViewForSuperview() superview])
352 CocoaRemoveFromParent();
354 delete m_wxCocoaScrollView;
360 void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child)
362 NSView *childView = child->GetNSViewForSuperview();
365 [m_cocoaNSView addSubview: childView];
366 child->m_isShown = !m_cocoaHider;
369 void wxWindowCocoa::CocoaRemoveFromParent(void)
371 [GetNSViewForSuperview() removeFromSuperview];
374 void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView)
376 bool need_debug = cocoaNSView || m_cocoaNSView;
377 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d"),this,m_cocoaNSView,[m_cocoaNSView retainCount]);
378 DisassociateNSView(m_cocoaNSView);
379 [cocoaNSView retain];
380 [m_cocoaNSView release];
381 m_cocoaNSView = cocoaNSView;
382 AssociateNSView(m_cocoaNSView);
383 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d"),this,cocoaNSView,[cocoaNSView retainCount]);
386 WX_NSView wxWindowCocoa::GetNSViewForSuperview() const
389 ? m_cocoaHider->GetNSView()
390 : m_wxCocoaScrollView
391 ? m_wxCocoaScrollView->GetNSScrollView()
395 WX_NSView wxWindowCocoa::GetNSViewForHiding() const
397 return m_wxCocoaScrollView
398 ? m_wxCocoaScrollView->GetNSScrollView()
402 NSPoint wxWindowCocoa::CocoaTransformBoundsToWx(NSPoint pointBounds)
404 // TODO: Handle scrolling offset
405 return CocoaTransformNSViewBoundsToWx(GetNSView(), pointBounds);
408 NSRect wxWindowCocoa::CocoaTransformBoundsToWx(NSRect rectBounds)
410 // TODO: Handle scrolling offset
411 return CocoaTransformNSViewBoundsToWx(GetNSView(), rectBounds);
414 NSPoint wxWindowCocoa::CocoaTransformWxToBounds(NSPoint pointWx)
416 // TODO: Handle scrolling offset
417 return CocoaTransformNSViewWxToBounds(GetNSView(), pointWx);
420 NSRect wxWindowCocoa::CocoaTransformWxToBounds(NSRect rectWx)
422 // TODO: Handle scrolling offset
423 return CocoaTransformNSViewWxToBounds(GetNSView(), rectWx);
426 WX_NSAffineTransform wxWindowCocoa::CocoaGetWxToBoundsTransform()
428 // TODO: Handle scrolling offset
429 NSAffineTransform *transform = wxDC::CocoaGetWxToBoundsTransform([GetNSView() isFlipped], [GetNSView() bounds].size.height);
433 bool wxWindowCocoa::Cocoa_drawRect(const NSRect &rect)
435 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_drawRect"));
436 // Recursion can happen if the event loop runs from within the paint
437 // handler. For instance, if an assertion dialog is shown.
438 // FIXME: This seems less than ideal.
441 wxLogDebug(wxT("Paint event recursion!"));
446 // Set m_updateRegion
447 const NSRect *rects = ▭ // The bounding box of the region
449 // Try replacing the larger rectangle with a list of smaller ones:
450 if ([GetNSView() respondsToSelector:@selector(getRectsBeingDrawn:count:)])
451 [GetNSView() getRectsBeingDrawn:&rects count:&countRects];
453 NSRect *transformedRects = (NSRect*)malloc(sizeof(NSRect)*countRects);
454 for(int i=0; i<countRects; i++)
456 transformedRects[i] = CocoaTransformBoundsToWx(rects[i]);
458 m_updateRegion = wxRegion(transformedRects,countRects);
459 free(transformedRects);
461 wxPaintEvent event(m_windowId);
462 event.SetEventObject(this);
463 bool ret = GetEventHandler()->ProcessEvent(event);
468 void wxWindowCocoa::InitMouseEvent(wxMouseEvent& event, WX_NSEvent cocoaEvent)
470 wxASSERT_MSG([m_cocoaNSView window]==[cocoaEvent window],wxT("Mouse event for different NSWindow"));
471 // Mouse events happen at the NSWindow level so we need to convert
472 // into our bounds coordinates then convert to wx coordinates.
473 NSPoint cocoaPoint = [m_cocoaNSView convertPoint:[(NSEvent*)cocoaEvent locationInWindow] fromView:nil];
474 NSPoint pointWx = CocoaTransformBoundsToWx(cocoaPoint);
475 // FIXME: Should we be adjusting for client area origin?
476 const wxPoint &clientorigin = GetClientAreaOrigin();
477 event.m_x = (wxCoord)pointWx.x - clientorigin.x;
478 event.m_y = (wxCoord)pointWx.y - clientorigin.y;
480 event.m_shiftDown = [cocoaEvent modifierFlags] & NSShiftKeyMask;
481 event.m_controlDown = [cocoaEvent modifierFlags] & NSControlKeyMask;
482 event.m_altDown = [cocoaEvent modifierFlags] & NSAlternateKeyMask;
483 event.m_metaDown = [cocoaEvent modifierFlags] & NSCommandKeyMask;
485 // TODO: set timestamp?
486 event.SetEventObject(this);
487 event.SetId(GetId());
490 bool wxWindowCocoa::Cocoa_mouseMoved(WX_NSEvent theEvent)
492 wxMouseEvent event(wxEVT_MOTION);
493 InitMouseEvent(event,theEvent);
494 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
495 return GetEventHandler()->ProcessEvent(event);
498 bool wxWindowCocoa::Cocoa_mouseEntered(WX_NSEvent theEvent)
503 bool wxWindowCocoa::Cocoa_mouseExited(WX_NSEvent theEvent)
508 bool wxWindowCocoa::Cocoa_mouseDown(WX_NSEvent theEvent)
510 wxMouseEvent event([theEvent clickCount]<2?wxEVT_LEFT_DOWN:wxEVT_LEFT_DCLICK);
511 InitMouseEvent(event,theEvent);
512 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
513 return GetEventHandler()->ProcessEvent(event);
516 bool wxWindowCocoa::Cocoa_mouseDragged(WX_NSEvent theEvent)
518 wxMouseEvent event(wxEVT_MOTION);
519 InitMouseEvent(event,theEvent);
520 event.m_leftDown = true;
521 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
522 return GetEventHandler()->ProcessEvent(event);
525 bool wxWindowCocoa::Cocoa_mouseUp(WX_NSEvent theEvent)
527 wxMouseEvent event(wxEVT_LEFT_UP);
528 InitMouseEvent(event,theEvent);
529 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
530 return GetEventHandler()->ProcessEvent(event);
533 bool wxWindowCocoa::Cocoa_rightMouseDown(WX_NSEvent theEvent)
535 wxMouseEvent event([theEvent clickCount]<2?wxEVT_RIGHT_DOWN:wxEVT_RIGHT_DCLICK);
536 InitMouseEvent(event,theEvent);
537 wxLogDebug(wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
538 return GetEventHandler()->ProcessEvent(event);
541 bool wxWindowCocoa::Cocoa_rightMouseDragged(WX_NSEvent theEvent)
543 wxMouseEvent event(wxEVT_MOTION);
544 InitMouseEvent(event,theEvent);
545 event.m_rightDown = true;
546 wxLogDebug(wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
547 return GetEventHandler()->ProcessEvent(event);
550 bool wxWindowCocoa::Cocoa_rightMouseUp(WX_NSEvent theEvent)
552 wxMouseEvent event(wxEVT_RIGHT_UP);
553 InitMouseEvent(event,theEvent);
554 wxLogDebug(wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
555 return GetEventHandler()->ProcessEvent(event);
558 bool wxWindowCocoa::Cocoa_otherMouseDown(WX_NSEvent theEvent)
563 bool wxWindowCocoa::Cocoa_otherMouseDragged(WX_NSEvent theEvent)
568 bool wxWindowCocoa::Cocoa_otherMouseUp(WX_NSEvent theEvent)
573 void wxWindowCocoa::Cocoa_FrameChanged(void)
575 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged"));
576 wxSizeEvent event(GetSize(), m_windowId);
577 event.SetEventObject(this);
578 GetEventHandler()->ProcessEvent(event);
581 bool wxWindowCocoa::Cocoa_resetCursorRects()
583 if(!m_cursor.GetNSCursor())
586 [GetNSView() addCursorRect: [GetNSView() visibleRect] cursor: m_cursor.GetNSCursor()];
591 bool wxWindow::Close(bool force)
593 // The only reason this function exists is that it is virtual and
594 // wxTopLevelWindowCocoa will override it.
595 return wxWindowBase::Close(force);
598 void wxWindow::CocoaReplaceView(WX_NSView oldView, WX_NSView newView)
600 [[oldView superview] replaceSubview:oldView with:newView];
603 void wxWindow::DoEnable(bool enable)
605 CocoaSetEnabled(enable);
608 bool wxWindow::Show(bool show)
610 wxAutoNSAutoreleasePool pool;
611 // If the window is marked as visible, then it shouldn't have a dummy view
612 // If the window is marked hidden, then it should have a dummy view
613 // wxSpinCtrl (generic) abuses m_isShown, don't use it for any logic
614 // wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),wxT("wxWindow: m_isShown does not agree with m_dummyNSView"));
615 // Return false if there isn't a window to show or hide
616 NSView *cocoaView = GetNSViewForHiding();
621 // If state isn't changing, return false
624 CocoaReplaceView(m_cocoaHider->GetNSView(), cocoaView);
625 wxASSERT(![m_cocoaHider->GetNSView() superview]);
628 wxASSERT([cocoaView superview]);
632 // If state isn't changing, return false
635 m_cocoaHider = new wxWindowCocoaHider(this);
636 // NOTE: replaceSubview:with will cause m_cocaNSView to be
637 // (auto)released which balances out addSubview
638 CocoaReplaceView(cocoaView, m_cocoaHider->GetNSView());
639 // m_coocaNSView is now only retained by us
640 wxASSERT([m_cocoaHider->GetNSView() superview]);
641 wxASSERT(![cocoaView superview]);
647 void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags)
649 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("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":".");
650 int currentX, currentY;
651 int currentW, currentH;
652 DoGetPosition(¤tX, ¤tY);
653 DoGetSize(¤tW, ¤tH);
654 if((x==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
656 if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
659 AdjustForParentClientOrigin(x,y,sizeFlags);
661 wxSize size(wxDefaultSize);
663 if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
665 if(sizeFlags&wxSIZE_AUTO_WIDTH)
667 size=DoGetBestSize();
673 if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
675 if(sizeFlags&wxSIZE_AUTO_HEIGHT)
678 size=DoGetBestSize();
684 DoMoveWindow(x,y,width,height);
689 void wxWindowCocoa::DoSetToolTip( wxToolTip *tip )
691 wxWindowBase::DoSetToolTip(tip);
695 m_tooltip->SetWindow((wxWindow *)this);
701 void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
703 wxAutoNSAutoreleasePool pool;
704 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)"),this,x,y,width,height);
706 NSView *nsview = GetNSViewForSuperview();
707 NSView *superview = [nsview superview];
709 wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent"));
711 NSRect oldFrameRect = [nsview frame];
712 NSRect newFrameRect = GetParent()->CocoaTransformWxToBounds(NSMakeRect(x,y,width,height));
713 [nsview setFrame:newFrameRect];
714 // Be sure to redraw the parent to reflect the changed position
715 [superview setNeedsDisplayInRect:oldFrameRect];
716 [superview setNeedsDisplayInRect:newFrameRect];
719 void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size)
721 NSView *nsview = GetNSViewForSuperview();
722 NSView *superview = [nsview superview];
723 wxCHECK_RET(superview,wxT("NSView does not have a superview"));
724 wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent"));
725 NSRect frameRect = [nsview frame];
727 frameRect.size.width = size.x;
729 frameRect.size.height = size.y;
730 frameRect.origin.x = pos.x;
731 frameRect.origin.y = pos.y;
732 // Tell Cocoa to change the margin between the bottom of the superview
733 // and the bottom of the control. Keeps the control pinned to the top
734 // of its superview so that its position in the wxWidgets coordinate
735 // system doesn't change.
736 if(![superview isFlipped])
737 [nsview setAutoresizingMask: NSViewMinYMargin];
738 // MUST set the mask before setFrame: which can generate a size event
739 // and cause a scroller to be added!
740 frameRect = GetParent()->CocoaTransformWxToBounds(frameRect);
741 [nsview setFrame: frameRect];
745 void wxWindow::DoGetSize(int *w, int *h) const
747 NSRect cocoaRect = [GetNSViewForSuperview() frame];
749 *w=(int)cocoaRect.size.width;
751 *h=(int)cocoaRect.size.height;
752 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetSize = (%d,%d)"),this,(int)cocoaRect.size.width,(int)cocoaRect.size.height);
755 void wxWindow::DoGetPosition(int *x, int *y) const
757 NSView *nsview = GetNSViewForSuperview();
759 NSRect cocoaRect = [nsview frame];
760 NSRect rectWx = GetParent()->CocoaTransformBoundsToWx(cocoaRect);
762 *x=(int)rectWx.origin.x;
764 *y=(int)rectWx.origin.y;
765 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetPosition = (%d,%d)"),this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y);
768 WXWidget wxWindow::GetHandle() const
770 return m_cocoaNSView;
773 wxWindow* wxWindow::GetWxWindow() const
775 return (wxWindow*) this;
778 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
780 [m_cocoaNSView setNeedsDisplay:YES];
783 void wxWindow::SetFocus()
785 if([GetNSView() acceptsFirstResponder])
786 [[GetNSView() window] makeFirstResponder: GetNSView()];
789 void wxWindow::DoCaptureMouse()
792 sm_capturedWindow = this;
795 void wxWindow::DoReleaseMouse()
798 sm_capturedWindow = NULL;
801 void wxWindow::DoScreenToClient(int *x, int *y) const
806 void wxWindow::DoClientToScreen(int *x, int *y) const
811 // Get size *available for subwindows* i.e. excluding menu bar etc.
812 void wxWindow::DoGetClientSize(int *x, int *y) const
814 wxLogTrace(wxTRACE_COCOA,wxT("DoGetClientSize:"));
815 if(m_wxCocoaScrollView)
816 m_wxCocoaScrollView->DoGetClientSize(x,y);
818 wxWindowCocoa::DoGetSize(x,y);
821 void wxWindow::DoSetClientSize(int width, int height)
823 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("DoSetClientSize=(%d,%d)"),width,height);
824 if(m_wxCocoaScrollView)
825 m_wxCocoaScrollView->ClientSizeToSize(width,height);
826 CocoaSetWxWindowSize(width,height);
829 void wxWindow::CocoaSetWxWindowSize(int width, int height)
831 wxWindowCocoa::DoSetSize(wxDefaultCoord,wxDefaultCoord,width,height,wxSIZE_USE_EXISTING);
834 void wxWindow::SetLabel(const wxString& WXUNUSED(label))
839 wxString wxWindow::GetLabel() const
842 return wxEmptyString;
845 int wxWindow::GetCharHeight() const
851 int wxWindow::GetCharWidth() const
857 void wxWindow::GetTextExtent(const wxString& string, int *x, int *y,
858 int *descent, int *externalLeading, const wxFont *theFont) const
863 // Coordinates relative to the window
864 void wxWindow::WarpPointer (int x_pos, int y_pos)
869 int wxWindow::GetScrollPos(int orient) const
875 // This now returns the whole range, not just the number
876 // of positions that we can scroll.
877 int wxWindow::GetScrollRange(int orient) const
883 int wxWindow::GetScrollThumb(int orient) const
889 void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
894 void wxWindow::CocoaCreateNSScrollView()
896 if(!m_wxCocoaScrollView)
898 m_wxCocoaScrollView = new wxWindowCocoaScrollView(this);
902 // New function that will replace some of the above.
903 void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
904 int range, bool refresh)
906 CocoaCreateNSScrollView();
910 // Does a physical scroll
911 void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
916 void wxWindow::DoSetVirtualSize( int x, int y )
918 wxWindowBase::DoSetVirtualSize(x,y);
919 CocoaCreateNSScrollView();
920 [m_cocoaNSView setFrameSize:NSMakeSize(m_virtualSize.x,m_virtualSize.y)];
923 bool wxWindow::SetFont(const wxFont& font)
929 static int CocoaRaiseWindowCompareFunction(id first, id second, void *target)
931 // first should be ordered higher
933 return NSOrderedDescending;
934 // second should be ordered higher
936 return NSOrderedAscending;
937 return NSOrderedSame;
940 // Raise the window to the top of the Z order
941 void wxWindow::Raise()
943 // wxAutoNSAutoreleasePool pool;
944 NSView *nsview = GetNSViewForSuperview();
945 [[nsview superview] sortSubviewsUsingFunction:
946 CocoaRaiseWindowCompareFunction
950 static int CocoaLowerWindowCompareFunction(id first, id second, void *target)
952 // first should be ordered lower
954 return NSOrderedAscending;
955 // second should be ordered lower
957 return NSOrderedDescending;
958 return NSOrderedSame;
961 // Lower the window to the bottom of the Z order
962 void wxWindow::Lower()
964 NSView *nsview = GetNSViewForSuperview();
965 [[nsview superview] sortSubviewsUsingFunction:
966 CocoaLowerWindowCompareFunction
970 bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
975 // Get the window with the focus
976 wxWindow *wxWindowBase::DoFindFocus()
978 // Basically we are somewhat emulating the responder chain here except
979 // we are only loking for the first responder in the key window or
980 // upon failing to find one if the main window is different we look
981 // for the first responder in the main window.
983 // Note that the firstResponder doesn't necessarily have to be an
984 // NSView but wxCocoaNSView::GetFromCocoa() will simply return
985 // NULL unless it finds its argument in its hash map.
989 NSWindow *keyWindow = [[NSApplication sharedApplication] keyWindow];
990 win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([keyWindow firstResponder]));
992 return win->GetWxWindow();
994 NSWindow *mainWindow = [[NSApplication sharedApplication] keyWindow];
995 if(mainWindow == keyWindow)
997 win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([mainWindow firstResponder]));
999 return win->GetWxWindow();
1004 /* static */ wxWindow *wxWindowBase::GetCapture()
1007 return wxWindowCocoa::sm_capturedWindow;
1010 wxWindow *wxGetActiveWindow()
1016 wxPoint wxGetMousePosition()
1019 return wxDefaultPosition;
1022 wxMouseState wxGetMouseState()
1029 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
1031 pt = wxGetMousePosition();