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"
15 #include "wx/tooltip.h"
16 #include "wx/window.h"
19 #include "wx/cocoa/autorelease.h"
20 #include "wx/cocoa/string.h"
22 #import <AppKit/NSView.h>
23 #import <AppKit/NSEvent.h>
24 #import <AppKit/NSScrollView.h>
25 #import <AppKit/NSColor.h>
26 #import <AppKit/NSClipView.h>
27 #import <Foundation/NSException.h>
29 #include <objc/objc-runtime.h>
31 // Turn this on to paint green over the dummy views for debugging
32 #undef WXCOCOA_FILL_DUMMY_VIEW
34 #ifdef WXCOCOA_FILL_DUMMY_VIEW
35 #import <AppKit/NSBezierPath.h>
36 #endif //def WXCOCOA_FILL_DUMMY_VIEW
38 // A category for methods that are only present in Panther's SDK
39 @interface NSView(wxNSViewPrePantherCompatibility)
40 - (void)getRectsBeingDrawn:(const NSRect **)rects count:(int *)count;
43 // ========================================================================
45 // ========================================================================
46 class wxWindowCocoaHider: protected wxCocoaNSView
48 DECLARE_NO_COPY_CLASS(wxWindowCocoaHider)
50 wxWindowCocoaHider(wxWindow *owner);
51 virtual ~wxWindowCocoaHider();
52 inline WX_NSView GetNSView() { return m_dummyNSView; }
54 wxWindowCocoa *m_owner;
55 WX_NSView m_dummyNSView;
56 virtual void Cocoa_FrameChanged(void);
57 #ifdef WXCOCOA_FILL_DUMMY_VIEW
58 virtual bool Cocoa_drawRect(const NSRect& rect);
59 #endif //def WXCOCOA_FILL_DUMMY_VIEW
64 // ========================================================================
65 // wxWindowCocoaScroller
66 // ========================================================================
67 class wxWindowCocoaScroller: protected wxCocoaNSView
69 DECLARE_NO_COPY_CLASS(wxWindowCocoaScroller)
71 wxWindowCocoaScroller(wxWindow *owner);
72 virtual ~wxWindowCocoaScroller();
73 inline WX_NSScrollView GetNSScrollView() { return m_cocoaNSScrollView; }
74 void ClientSizeToSize(int &width, int &height);
75 void DoGetClientSize(int *x, int *y) const;
79 wxWindowCocoa *m_owner;
80 WX_NSScrollView m_cocoaNSScrollView;
81 virtual void Cocoa_FrameChanged(void);
83 wxWindowCocoaScroller();
86 // ========================================================================
88 // ========================================================================
89 @interface wxDummyNSView : NSView
90 - (NSView *)hitTest:(NSPoint)aPoint;
93 @implementation wxDummyNSView : NSView
94 - (NSView *)hitTest:(NSPoint)aPoint
101 // ========================================================================
102 // wxWindowCocoaHider
103 // ========================================================================
104 wxWindowCocoaHider::wxWindowCocoaHider(wxWindow *owner)
108 wxASSERT(owner->GetNSViewForHiding());
109 m_dummyNSView = [[wxDummyNSView alloc]
110 initWithFrame:[owner->GetNSViewForHiding() frame]];
111 [m_dummyNSView setAutoresizingMask: [owner->GetNSViewForHiding() autoresizingMask]];
112 AssociateNSView(m_dummyNSView);
115 wxWindowCocoaHider::~wxWindowCocoaHider()
117 DisassociateNSView(m_dummyNSView);
118 [m_dummyNSView release];
121 void wxWindowCocoaHider::Cocoa_FrameChanged(void)
123 // Keep the real window in synch with the dummy
124 wxASSERT(m_dummyNSView);
125 [m_owner->GetNSViewForHiding() setFrame:[m_dummyNSView frame]];
129 #ifdef WXCOCOA_FILL_DUMMY_VIEW
130 bool wxWindowCocoaHider::Cocoa_drawRect(const NSRect& rect)
132 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:rect];
133 [[NSColor greenColor] set];
138 #endif //def WXCOCOA_FILL_DUMMY_VIEW
140 // ========================================================================
141 // wxFlippedNSClipView
142 // ========================================================================
143 @interface wxFlippedNSClipView : NSClipView
147 @implementation wxFlippedNSClipView : NSClipView
155 // ========================================================================
156 // wxWindowCocoaScroller
157 // ========================================================================
158 wxWindowCocoaScroller::wxWindowCocoaScroller(wxWindow *owner)
161 wxAutoNSAutoreleasePool pool;
163 wxASSERT(owner->GetNSView());
164 m_cocoaNSScrollView = [[NSScrollView alloc]
165 initWithFrame:[owner->GetNSView() frame]];
166 AssociateNSView(m_cocoaNSScrollView);
168 /* Replace the default NSClipView with a flipped one. This ensures
169 scrolling is "pinned" to the top-left instead of bottom-right. */
170 NSClipView *flippedClip = [[wxFlippedNSClipView alloc]
171 initWithFrame: [[m_cocoaNSScrollView contentView] frame]];
172 [m_cocoaNSScrollView setContentView:flippedClip];
173 [flippedClip release];
175 [m_cocoaNSScrollView setBackgroundColor: [NSColor windowBackgroundColor]];
176 [m_cocoaNSScrollView setHasHorizontalScroller: YES];
177 [m_cocoaNSScrollView setHasVerticalScroller: YES];
181 void wxWindowCocoaScroller::Encapsulate()
183 // Set the scroll view autoresizingMask to match the current NSView
184 [m_cocoaNSScrollView setAutoresizingMask: [m_owner->GetNSView() autoresizingMask]];
185 [m_owner->GetNSView() setAutoresizingMask: NSViewNotSizable];
186 // NOTE: replaceSubView will cause m_cocaNSView to be released
187 // except when it hasn't been added into an NSView hierarchy in which
188 // case it doesn't need to be and this should work out to a no-op
189 m_owner->CocoaReplaceView(m_owner->GetNSView(), m_cocoaNSScrollView);
190 // The NSView is still retained by owner
191 [m_cocoaNSScrollView setDocumentView: m_owner->GetNSView()];
192 // Now it's also retained by the NSScrollView
195 void wxWindowCocoaScroller::Unencapsulate()
197 [m_cocoaNSScrollView setDocumentView: nil];
198 m_owner->CocoaReplaceView(m_cocoaNSScrollView, m_owner->GetNSView());
199 if(![[m_owner->GetNSView() superview] isFlipped])
200 [m_owner->GetNSView() setAutoresizingMask: NSViewMinYMargin];
203 wxWindowCocoaScroller::~wxWindowCocoaScroller()
205 DisassociateNSView(m_cocoaNSScrollView);
206 [m_cocoaNSScrollView release];
209 void wxWindowCocoaScroller::ClientSizeToSize(int &width, int &height)
211 NSSize frameSize = [NSScrollView
212 frameSizeForContentSize: NSMakeSize(width,height)
213 hasHorizontalScroller: [m_cocoaNSScrollView hasHorizontalScroller]
214 hasVerticalScroller: [m_cocoaNSScrollView hasVerticalScroller]
215 borderType: [m_cocoaNSScrollView borderType]];
216 width = (int)frameSize.width;
217 height = (int)frameSize.height;
220 void wxWindowCocoaScroller::DoGetClientSize(int *x, int *y) const
222 NSSize nssize = [m_cocoaNSScrollView contentSize];
224 *x = (int)nssize.width;
226 *y = (int)nssize.height;
229 void wxWindowCocoaScroller::Cocoa_FrameChanged(void)
231 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged"));
232 wxSizeEvent event(m_owner->GetSize(), m_owner->GetId());
233 event.SetEventObject(m_owner);
234 m_owner->GetEventHandler()->ProcessEvent(event);
237 // ========================================================================
239 // ========================================================================
240 // normally the base classes aren't included, but wxWindow is special
241 #ifdef __WXUNIVERSAL__
242 IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase)
244 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
247 BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
250 wxWindow *wxWindowCocoa::sm_capturedWindow = NULL;
253 void wxWindowCocoa::Init()
255 m_cocoaNSView = NULL;
257 m_cocoaScroller = NULL;
258 m_isBeingDeleted = FALSE;
260 m_shouldBeEnabled = true;
264 bool wxWindow::Create(wxWindow *parent, wxWindowID winid,
268 const wxString& name)
270 if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name))
273 // TODO: create the window
274 m_cocoaNSView = NULL;
275 SetNSView([[NSView alloc] initWithFrame: MakeDefaultNSRect(size)]);
276 [m_cocoaNSView release];
280 m_parent->AddChild(this);
281 m_parent->CocoaAddChild(this);
282 SetInitialFrameRect(pos,size);
289 wxWindow::~wxWindow()
291 wxAutoNSAutoreleasePool pool;
294 // Make sure our parent (in the wxWidgets sense) is our superview
295 // before we go removing from it.
296 if(m_parent && m_parent->GetNSView()==[GetNSViewForSuperview() superview])
297 CocoaRemoveFromParent();
299 delete m_cocoaScroller;
305 void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child)
307 NSView *childView = child->GetNSViewForSuperview();
310 [m_cocoaNSView addSubview: childView];
311 child->m_isShown = !m_cocoaHider;
314 void wxWindowCocoa::CocoaRemoveFromParent(void)
316 [GetNSViewForSuperview() removeFromSuperview];
319 void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView)
321 bool need_debug = cocoaNSView || m_cocoaNSView;
322 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d"),this,m_cocoaNSView,[m_cocoaNSView retainCount]);
323 DisassociateNSView(m_cocoaNSView);
324 [cocoaNSView retain];
325 [m_cocoaNSView release];
326 m_cocoaNSView = cocoaNSView;
327 AssociateNSView(m_cocoaNSView);
328 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d"),this,cocoaNSView,[cocoaNSView retainCount]);
331 WX_NSView wxWindowCocoa::GetNSViewForSuperview() const
334 ? m_cocoaHider->GetNSView()
336 ? m_cocoaScroller->GetNSScrollView()
340 WX_NSView wxWindowCocoa::GetNSViewForHiding() const
342 return m_cocoaScroller
343 ? m_cocoaScroller->GetNSScrollView()
347 bool wxWindowCocoa::Cocoa_drawRect(const NSRect &rect)
349 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_drawRect"));
350 // Recursion can happen if the event loop runs from within the paint
351 // handler. For instance, if an assertion dialog is shown.
352 // FIXME: This seems less than ideal.
355 wxLogDebug(wxT("Paint event recursion!"));
360 // Set m_updateRegion
361 const NSRect *rects = ▭ // The bounding box of the region
363 // Try replacing the larger rectangle with a list of smaller ones:
364 if ([GetNSView() respondsToSelector:@selector(getRectsBeingDrawn:count:)])
365 [GetNSView() getRectsBeingDrawn:&rects count:&countRects];
366 m_updateRegion = wxRegion(rects,countRects);
368 wxPaintEvent event(m_windowId);
369 event.SetEventObject(this);
370 bool ret = GetEventHandler()->ProcessEvent(event);
375 void wxWindowCocoa::InitMouseEvent(wxMouseEvent& event, WX_NSEvent cocoaEvent)
377 wxASSERT_MSG([m_cocoaNSView window]==[cocoaEvent window],wxT("Mouse event for different NSWindow"));
378 NSPoint cocoaPoint = [m_cocoaNSView convertPoint:[(NSEvent*)cocoaEvent locationInWindow] fromView:nil];
379 NSRect cocoaRect = [m_cocoaNSView frame];
380 const wxPoint &clientorigin = GetClientAreaOrigin();
381 event.m_x = (wxCoord)cocoaPoint.x - clientorigin.x;
382 event.m_y = (wxCoord)(cocoaRect.size.height - cocoaPoint.y) - clientorigin.y;
384 event.m_shiftDown = [cocoaEvent modifierFlags] & NSShiftKeyMask;
385 event.m_controlDown = [cocoaEvent modifierFlags] & NSControlKeyMask;
386 event.m_altDown = [cocoaEvent modifierFlags] & NSAlternateKeyMask;
387 event.m_metaDown = [cocoaEvent modifierFlags] & NSCommandKeyMask;
389 // TODO: set timestamp?
390 event.SetEventObject(this);
391 event.SetId(GetId());
394 bool wxWindowCocoa::Cocoa_mouseMoved(WX_NSEvent theEvent)
396 wxMouseEvent event(wxEVT_MOTION);
397 InitMouseEvent(event,theEvent);
398 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
399 return GetEventHandler()->ProcessEvent(event);
402 bool wxWindowCocoa::Cocoa_mouseEntered(WX_NSEvent theEvent)
407 bool wxWindowCocoa::Cocoa_mouseExited(WX_NSEvent theEvent)
412 bool wxWindowCocoa::Cocoa_mouseDown(WX_NSEvent theEvent)
414 wxMouseEvent event([theEvent clickCount]<2?wxEVT_LEFT_DOWN:wxEVT_LEFT_DCLICK);
415 InitMouseEvent(event,theEvent);
416 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
417 return GetEventHandler()->ProcessEvent(event);
420 bool wxWindowCocoa::Cocoa_mouseDragged(WX_NSEvent theEvent)
422 wxMouseEvent event(wxEVT_MOTION);
423 InitMouseEvent(event,theEvent);
424 event.m_leftDown = true;
425 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
426 return GetEventHandler()->ProcessEvent(event);
429 bool wxWindowCocoa::Cocoa_mouseUp(WX_NSEvent theEvent)
431 wxMouseEvent event(wxEVT_LEFT_UP);
432 InitMouseEvent(event,theEvent);
433 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
434 return GetEventHandler()->ProcessEvent(event);
437 bool wxWindowCocoa::Cocoa_rightMouseDown(WX_NSEvent theEvent)
439 wxMouseEvent event([theEvent clickCount]<2?wxEVT_RIGHT_DOWN:wxEVT_RIGHT_DCLICK);
440 InitMouseEvent(event,theEvent);
441 wxLogDebug(wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
442 return GetEventHandler()->ProcessEvent(event);
445 bool wxWindowCocoa::Cocoa_rightMouseDragged(WX_NSEvent theEvent)
447 wxMouseEvent event(wxEVT_MOTION);
448 InitMouseEvent(event,theEvent);
449 event.m_rightDown = true;
450 wxLogDebug(wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
451 return GetEventHandler()->ProcessEvent(event);
454 bool wxWindowCocoa::Cocoa_rightMouseUp(WX_NSEvent theEvent)
456 wxMouseEvent event(wxEVT_RIGHT_UP);
457 InitMouseEvent(event,theEvent);
458 wxLogDebug(wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
459 return GetEventHandler()->ProcessEvent(event);
462 bool wxWindowCocoa::Cocoa_otherMouseDown(WX_NSEvent theEvent)
467 bool wxWindowCocoa::Cocoa_otherMouseDragged(WX_NSEvent theEvent)
472 bool wxWindowCocoa::Cocoa_otherMouseUp(WX_NSEvent theEvent)
477 void wxWindowCocoa::Cocoa_FrameChanged(void)
479 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged"));
480 wxSizeEvent event(GetSize(), m_windowId);
481 event.SetEventObject(this);
482 GetEventHandler()->ProcessEvent(event);
485 bool wxWindowCocoa::Cocoa_resetCursorRects()
487 if(!m_cursor.GetNSCursor())
490 [GetNSView() addCursorRect: [GetNSView() visibleRect] cursor: m_cursor.GetNSCursor()];
495 bool wxWindow::Close(bool force)
497 // The only reason this function exists is that it is virtual and
498 // wxTopLevelWindowCocoa will override it.
499 return wxWindowBase::Close(force);
502 void wxWindow::CocoaReplaceView(WX_NSView oldView, WX_NSView newView)
504 [[oldView superview] replaceSubview:oldView with:newView];
507 bool wxWindow::EnableSelfAndChildren(bool enable)
509 // If the state isn't changing, don't do anything
510 if(!wxWindowBase::Enable(enable && m_shouldBeEnabled))
512 // Set the state of the Cocoa window
513 CocoaSetEnabled(m_isEnabled);
514 // Disable all children or (if enabling) return them to their proper state
515 for(wxWindowList::compatibility_iterator node = GetChildren().GetFirst();
516 node; node = node->GetNext())
518 node->GetData()->EnableSelfAndChildren(enable);
523 bool wxWindow::Enable(bool enable)
525 // Keep track of what the window SHOULD be doing
526 m_shouldBeEnabled = enable;
527 // If the parent is disabled for any reason, then this window will be too.
528 if(!IsTopLevel() && GetParent())
530 enable = enable && GetParent()->IsEnabled();
532 return EnableSelfAndChildren(enable);
535 bool wxWindow::Show(bool show)
537 wxAutoNSAutoreleasePool pool;
538 // If the window is marked as visible, then it shouldn't have a dummy view
539 // If the window is marked hidden, then it should have a dummy view
540 // wxSpinCtrl (generic) abuses m_isShown, don't use it for any logic
541 // wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),wxT("wxWindow: m_isShown does not agree with m_dummyNSView"));
542 // Return false if there isn't a window to show or hide
543 NSView *cocoaView = GetNSViewForHiding();
548 // If state isn't changing, return false
551 CocoaReplaceView(m_cocoaHider->GetNSView(), cocoaView);
552 wxASSERT(![m_cocoaHider->GetNSView() superview]);
555 wxASSERT([cocoaView superview]);
559 // If state isn't changing, return false
562 m_cocoaHider = new wxWindowCocoaHider(this);
563 // NOTE: replaceSubview:with will cause m_cocaNSView to be
564 // (auto)released which balances out addSubview
565 CocoaReplaceView(cocoaView, m_cocoaHider->GetNSView());
566 // m_coocaNSView is now only retained by us
567 wxASSERT([m_cocoaHider->GetNSView() superview]);
568 wxASSERT(![cocoaView superview]);
574 void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags)
576 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":".");
577 int currentX, currentY;
578 int currentW, currentH;
579 DoGetPosition(¤tX, ¤tY);
580 DoGetSize(¤tW, ¤tH);
581 if((x==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
583 if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
586 AdjustForParentClientOrigin(x,y,sizeFlags);
590 if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
592 if(sizeFlags&wxSIZE_AUTO_WIDTH)
594 size=DoGetBestSize();
600 if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
602 if(sizeFlags&wxSIZE_AUTO_HEIGHT)
605 size=DoGetBestSize();
611 DoMoveWindow(x,y,width,height);
616 void wxWindowCocoa::DoSetToolTip( wxToolTip *tip )
618 wxWindowBase::DoSetToolTip(tip);
622 m_tooltip->SetWindow((wxWindow *)this);
628 void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
630 wxAutoNSAutoreleasePool pool;
631 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)"),this,x,y,width,height);
633 NSView *nsview = GetNSViewForSuperview();
634 NSView *superview = [nsview superview];
635 wxCHECK_RET(superview,wxT("NSView does not have a superview"));
636 NSRect parentRect = [superview bounds];
638 NSRect cocoaRect = NSMakeRect(x,parentRect.size.height-(y+height),width,height);
639 [nsview setFrame: cocoaRect];
640 // Be sure to redraw the parent to reflect the changed position
641 [superview setNeedsDisplay:YES];
644 void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size)
646 NSView *nsview = GetNSViewForSuperview();
647 NSView *superview = [nsview superview];
648 wxCHECK_RET(superview,wxT("NSView does not have a superview"));
649 NSRect parentRect = [superview bounds];
650 NSRect frameRect = [nsview frame];
652 frameRect.size.width = size.x;
654 frameRect.size.height = size.y;
655 frameRect.origin.x = pos.x;
656 frameRect.origin.y = parentRect.size.height-(pos.y+frameRect.size.height);
657 // Tell Cocoa to change the margin between the bottom of the superview
658 // and the bottom of the control. Keeps the control pinned to the top
659 // of its superview so that its position in the wxWidgets coordinate
660 // system doesn't change.
661 if(![superview isFlipped])
662 [nsview setAutoresizingMask: NSViewMinYMargin];
663 // MUST set the mask before setFrame: which can generate a size event
664 // and cause a scroller to be added!
665 [nsview setFrame: frameRect];
669 void wxWindow::DoGetSize(int *w, int *h) const
671 NSRect cocoaRect = [GetNSViewForSuperview() frame];
673 *w=(int)cocoaRect.size.width;
675 *h=(int)cocoaRect.size.height;
676 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetSize = (%d,%d)"),this,(int)cocoaRect.size.width,(int)cocoaRect.size.height);
679 void wxWindow::DoGetPosition(int *x, int *y) const
681 NSView *nsview = GetNSViewForSuperview();
682 NSView *superview = [nsview superview];
683 wxCHECK_RET(superview,wxT("NSView does not have a superview"));
684 NSRect parentRect = [superview bounds];
686 NSRect cocoaRect = [nsview frame];
688 *x=(int)cocoaRect.origin.x;
690 *y=(int)(parentRect.size.height-(cocoaRect.origin.y+cocoaRect.size.height));
691 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetPosition = (%d,%d)"),this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y);
694 WXWidget wxWindow::GetHandle() const
696 return m_cocoaNSView;
699 wxWindow* wxWindow::GetWxWindow() const
701 return (wxWindow*) this;
704 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
706 [m_cocoaNSView setNeedsDisplay:YES];
709 void wxWindow::SetFocus()
714 [GetNSView() lockFocusIfCanDraw];
716 //Note that the normal lockFocus works on hidden and minimized windows
717 //and has no return value - which probably isn't what we want
721 void wxWindow::DoCaptureMouse()
724 sm_capturedWindow = this;
727 void wxWindow::DoReleaseMouse()
730 sm_capturedWindow = NULL;
733 void wxWindow::DoScreenToClient(int *x, int *y) const
738 void wxWindow::DoClientToScreen(int *x, int *y) const
743 // Get size *available for subwindows* i.e. excluding menu bar etc.
744 void wxWindow::DoGetClientSize(int *x, int *y) const
746 wxLogTrace(wxTRACE_COCOA,wxT("DoGetClientSize:"));
748 m_cocoaScroller->DoGetClientSize(x,y);
750 wxWindowCocoa::DoGetSize(x,y);
753 void wxWindow::DoSetClientSize(int width, int height)
755 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("DoSetClientSize=(%d,%d)"),width,height);
757 m_cocoaScroller->ClientSizeToSize(width,height);
758 CocoaSetWxWindowSize(width,height);
761 void wxWindow::CocoaSetWxWindowSize(int width, int height)
763 wxWindowCocoa::DoSetSize(-1,-1,width,height,wxSIZE_USE_EXISTING);
766 int wxWindow::GetCharHeight() const
772 int wxWindow::GetCharWidth() const
778 void wxWindow::GetTextExtent(const wxString& string, int *x, int *y,
779 int *descent, int *externalLeading, const wxFont *theFont) const
784 // Coordinates relative to the window
785 void wxWindow::WarpPointer (int x_pos, int y_pos)
790 int wxWindow::GetScrollPos(int orient) const
796 // This now returns the whole range, not just the number
797 // of positions that we can scroll.
798 int wxWindow::GetScrollRange(int orient) const
804 int wxWindow::GetScrollThumb(int orient) const
810 void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
815 void wxWindow::CocoaCreateNSScrollView()
819 m_cocoaScroller = new wxWindowCocoaScroller(this);
823 // New function that will replace some of the above.
824 void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
825 int range, bool refresh)
827 CocoaCreateNSScrollView();
831 // Does a physical scroll
832 void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
837 void wxWindow::DoSetVirtualSize( int x, int y )
839 wxWindowBase::DoSetVirtualSize(x,y);
840 CocoaCreateNSScrollView();
841 [m_cocoaNSView setFrameSize:NSMakeSize(m_virtualSize.x,m_virtualSize.y)];
844 bool wxWindow::SetFont(const wxFont& font)
850 static int CocoaRaiseWindowCompareFunction(id first, id second, void *target)
852 // first should be ordered higher
854 return NSOrderedDescending;
855 // second should be ordered higher
857 return NSOrderedAscending;
858 return NSOrderedSame;
861 // Raise the window to the top of the Z order
862 void wxWindow::Raise()
864 // wxAutoNSAutoreleasePool pool;
865 NSView *nsview = GetNSViewForSuperview();
866 [[nsview superview] sortSubviewsUsingFunction:
867 CocoaRaiseWindowCompareFunction
871 static int CocoaLowerWindowCompareFunction(id first, id second, void *target)
873 // first should be ordered lower
875 return NSOrderedAscending;
876 // second should be ordered lower
878 return NSOrderedDescending;
879 return NSOrderedSame;
882 // Lower the window to the bottom of the Z order
883 void wxWindow::Lower()
885 NSView *nsview = GetNSViewForSuperview();
886 [[nsview superview] sortSubviewsUsingFunction:
887 CocoaLowerWindowCompareFunction
891 bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
896 // Get the window with the focus
897 wxWindow *wxWindowBase::DoFindFocus()
899 wxCocoaNSView *win = wxCocoaNSView::GetFromCocoa([NSView focusView]);
904 return win->GetWxWindow();
907 /* static */ wxWindow *wxWindowBase::GetCapture()
910 return wxWindowCocoa::sm_capturedWindow;
913 wxWindow *wxGetActiveWindow()
919 wxPoint wxGetMousePosition()
922 return wxDefaultPosition;
925 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
927 pt = wxGetMousePosition();