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"
25 #include "wx/cocoa/trackingrectmanager.h"
26 #include "wx/mac/corefoundation/cfref.h"
28 #import <Foundation/NSArray.h>
29 #import <Foundation/NSRunLoop.h>
30 #include "wx/cocoa/objc/NSView.h"
31 #import <AppKit/NSEvent.h>
32 #import <AppKit/NSScrollView.h>
33 #import <AppKit/NSColor.h>
34 #import <AppKit/NSClipView.h>
35 #import <Foundation/NSException.h>
36 #import <AppKit/NSApplication.h>
37 #import <AppKit/NSWindow.h>
38 #import <AppKit/NSScreen.h>
40 // Turn this on to paint green over the dummy views for debugging
41 #undef WXCOCOA_FILL_DUMMY_VIEW
43 #ifdef WXCOCOA_FILL_DUMMY_VIEW
44 #import <AppKit/NSBezierPath.h>
45 #endif //def WXCOCOA_FILL_DUMMY_VIEW
47 // STL list used by wxCocoaMouseMovedEventSynthesizer
50 /* NSComparisonResult is typedef'd as an enum pre-Leopard but typedef'd as
51 * NSInteger post-Leopard. Pre-Leopard the Cocoa toolkit expects a function
52 * returning int and not NSComparisonResult. Post-Leopard the Cocoa toolkit
53 * expects a function returning the new non-enum NSComparsionResult.
54 * Hence we create a typedef named CocoaWindowCompareFunctionResult.
56 #if defined(NSINTEGER_DEFINED)
57 typedef NSComparisonResult CocoaWindowCompareFunctionResult;
59 typedef int CocoaWindowCompareFunctionResult;
62 // A category for methods that are only present in Panther's SDK
63 @interface NSView(wxNSViewPrePantherCompatibility)
64 - (void)getRectsBeingDrawn:(const NSRect **)rects count:(int *)count;
67 // ========================================================================
68 // Helper functions for converting to/from wxWidgets coordinates and a
69 // specified NSView's coordinate system.
70 // ========================================================================
71 NSPoint CocoaTransformNSViewBoundsToWx(NSView *nsview, NSPoint pointBounds)
73 wxCHECK_MSG(nsview, pointBounds, wxT("Need to have a Cocoa view to do translation"));
74 if([nsview isFlipped])
76 NSRect ourBounds = [nsview bounds];
79 , ourBounds.size.height - pointBounds.y
83 NSRect CocoaTransformNSViewBoundsToWx(NSView *nsview, NSRect rectBounds)
85 wxCHECK_MSG(nsview, rectBounds, wxT("Need to have a Cocoa view to do translation"));
86 if([nsview isFlipped])
88 NSRect ourBounds = [nsview bounds];
91 , ourBounds.size.height - (rectBounds.origin.y + rectBounds.size.height)
92 , rectBounds.size.width
93 , rectBounds.size.height
97 NSPoint CocoaTransformNSViewWxToBounds(NSView *nsview, NSPoint pointWx)
99 wxCHECK_MSG(nsview, pointWx, wxT("Need to have a Cocoa view to do translation"));
100 if([nsview isFlipped])
102 NSRect ourBounds = [nsview bounds];
105 , ourBounds.size.height - pointWx.y
109 NSRect CocoaTransformNSViewWxToBounds(NSView *nsview, NSRect rectWx)
111 wxCHECK_MSG(nsview, rectWx, wxT("Need to have a Cocoa view to do translation"));
112 if([nsview isFlipped])
114 NSRect ourBounds = [nsview bounds];
117 , ourBounds.size.height - (rectWx.origin.y + rectWx.size.height)
123 // ============================================================================
124 // Screen coordinate helpers
125 // ============================================================================
128 General observation about Cocoa screen coordinates:
129 It is documented that the first object of the [NSScreen screens] array is the screen with the menubar.
131 It is not documented (but true as far as I can tell) that (0,0) in Cocoa screen coordinates is always
132 the BOTTOM-right corner of this screen. Recall that Cocoa uses cartesian coordinates so y-increase is up.
134 It isn't clearly documented but visibleFrame returns a rectangle in screen coordinates, not a rectangle
135 relative to that screen's frame. The only real way to test this is to configure two screens one atop
136 the other such that the menubar screen is on top. The Dock at the bottom of the screen will then
137 eat into the visibleFrame of screen 1 by incrementing it's y-origin. Thus if you arrange two
138 1920x1200 screens top/bottom then screen 1 (the bottom screen) will have frame origin (0,-1200) and
139 visibleFrame origin (0,-1149) which is exactly 51 pixels higher than the full frame origin.
141 In wxCocoa, we somewhat arbitrarily declare that wx (0,0) is the TOP-left of screen 0's frame (the entire screen).
142 However, this isn't entirely arbitrary because the Quartz Display Services (CGDisplay) uses this same scheme.
143 This works out nicely because wxCocoa's wxDisplay is implemented using Quartz Display Services instead of NSScreen.
146 namespace { // file namespace
148 class wxCocoaPrivateScreenCoordinateTransformer
150 DECLARE_NO_COPY_CLASS(wxCocoaPrivateScreenCoordinateTransformer)
152 wxCocoaPrivateScreenCoordinateTransformer();
153 ~wxCocoaPrivateScreenCoordinateTransformer();
154 wxPoint OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates(NSRect windowFrame);
155 NSPoint OriginInCocoaScreenCoordinatesForRectInWxDisplayCoordinates(wxCoord x, wxCoord y, wxCoord width, wxCoord height, bool keepOriginVisible);
158 NSScreen *m_screenZero;
159 NSRect m_screenZeroFrame;
162 // NOTE: This is intended to be a short-lived object. A future enhancment might
163 // make it a global and reconfigure it upon some notification that the screen layout
165 inline wxCocoaPrivateScreenCoordinateTransformer::wxCocoaPrivateScreenCoordinateTransformer()
167 NSArray *screens = [NSScreen screens];
172 if(screens != nil && [screens count] > 0)
173 m_screenZero = [[screens objectAtIndex:0] retain];
177 if(m_screenZero != nil)
178 m_screenZeroFrame = [m_screenZero frame];
181 wxLogWarning(wxT("Can't translate to/from wx screen coordinates and Cocoa screen coordinates"));
182 // Just blindly assume 1024x768 so that at least we can sort of flip things around into
183 // Cocoa coordinates.
184 // NOTE: Theoretically this case should never happen anyway.
185 m_screenZeroFrame = NSMakeRect(0,0,1024,768);
189 inline wxCocoaPrivateScreenCoordinateTransformer::~wxCocoaPrivateScreenCoordinateTransformer()
191 [m_screenZero release];
195 inline wxPoint wxCocoaPrivateScreenCoordinateTransformer::OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates(NSRect windowFrame)
197 // x and y are in wx screen coordinates which we're going to arbitrarily define such that
198 // (0,0) is the TOP-left of screen 0 (the one with the menubar)
199 // NOTE WELL: This means that (0,0) is _NOT_ an appropriate position for a window.
203 // Working in Cocoa's screen coordinates we must realize that the x coordinate we want is
204 // the distance between the left side (origin.x) of the window's frame and the left side of
205 // screen zero's frame.
206 theWxOrigin.x = windowFrame.origin.x - m_screenZeroFrame.origin.x;
208 // Working in Cocoa's screen coordinates we must realize that the y coordinate we want is
209 // actually the distance between the top-left of the screen zero frame and the top-left
210 // of the window's frame.
212 theWxOrigin.y = (m_screenZeroFrame.origin.y + m_screenZeroFrame.size.height) - (windowFrame.origin.y + windowFrame.size.height);
217 inline NSPoint wxCocoaPrivateScreenCoordinateTransformer::OriginInCocoaScreenCoordinatesForRectInWxDisplayCoordinates(wxCoord x, wxCoord y, wxCoord width, wxCoord height, bool keepOriginVisible)
219 NSPoint theCocoaOrigin;
221 // The position is in wx screen coordinates which we're going to arbitrarily define such that
222 // (0,0) is the TOP-left of screen 0 (the one with the menubar)
224 // NOTE: The usable rectangle is smaller and hence we have the keepOriginVisible flag
225 // which will move the origin downward and/or left as necessary if the origin is
226 // inside the screen0 rectangle (i.e. x/y >= 0 in wx coordinates) and outside the
227 // visible frame (i.e. x/y < the top/left of the screen0 visible frame in wx coordinates)
228 // We don't munge origin coordinates < 0 because it actually is possible that the menubar is on
229 // the top of the bottom screen and thus that origin is completely valid!
230 if(keepOriginVisible && (m_screenZero != nil))
232 // Do al of this in wx coordinates because it's far simpler since we're dealing with top/left points
233 wxPoint visibleOrigin = OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates([m_screenZero visibleFrame]);
234 if(x >= 0 && x < visibleOrigin.x)
236 if(y >= 0 && y < visibleOrigin.y)
240 // The x coordinate is simple as it's just relative to screen zero's frame
241 theCocoaOrigin.x = m_screenZeroFrame.origin.x + x;
242 // Working in Cocoa's coordinates think to start at the bottom of screen zero's frame and add
243 // the height of that rect which gives us the coordinate for the top of the visible rect. Now realize that
244 // the wx coordinates are flipped so if y is say 10 then we want to be 10 pixels down from that and thus
245 // we subtract y. But then we still need to take into account the size of the window which is h and subtract
246 // that to get the bottom-left origin of the rectangle.
247 theCocoaOrigin.y = m_screenZeroFrame.origin.y + m_screenZeroFrame.size.height - y - height;
249 return theCocoaOrigin;
254 wxPoint wxWindowCocoa::OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates(NSRect windowFrame)
256 wxCocoaPrivateScreenCoordinateTransformer transformer;
257 return transformer.OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates(windowFrame);
260 NSPoint wxWindowCocoa::OriginInCocoaScreenCoordinatesForRectInWxDisplayCoordinates(wxCoord x, wxCoord y, wxCoord width, wxCoord height, bool keepOriginVisible)
262 wxCocoaPrivateScreenCoordinateTransformer transformer;
263 return transformer.OriginInCocoaScreenCoordinatesForRectInWxDisplayCoordinates(x,y,width,height,keepOriginVisible);
266 // ========================================================================
267 // wxWindowCocoaHider
268 // ========================================================================
269 class wxWindowCocoaHider: protected wxCocoaNSView
271 DECLARE_NO_COPY_CLASS(wxWindowCocoaHider)
273 wxWindowCocoaHider(wxWindow *owner);
274 virtual ~wxWindowCocoaHider();
275 inline WX_NSView GetNSView() { return m_dummyNSView; }
277 wxWindowCocoa *m_owner;
278 WX_NSView m_dummyNSView;
279 virtual void Cocoa_FrameChanged(void);
280 virtual void Cocoa_synthesizeMouseMoved(void) {}
281 #ifdef WXCOCOA_FILL_DUMMY_VIEW
282 virtual bool Cocoa_drawRect(const NSRect& rect);
283 #endif //def WXCOCOA_FILL_DUMMY_VIEW
285 wxWindowCocoaHider();
288 // ========================================================================
289 // wxWindowCocoaScrollView
290 // ========================================================================
291 class wxWindowCocoaScrollView: protected wxCocoaNSView
293 DECLARE_NO_COPY_CLASS(wxWindowCocoaScrollView)
295 wxWindowCocoaScrollView(wxWindow *owner);
296 virtual ~wxWindowCocoaScrollView();
297 inline WX_NSScrollView GetNSScrollView() { return m_cocoaNSScrollView; }
298 void ClientSizeToSize(int &width, int &height);
299 void DoGetClientSize(int *x, int *y) const;
301 void Unencapsulate();
303 wxWindowCocoa *m_owner;
304 WX_NSScrollView m_cocoaNSScrollView;
305 virtual void Cocoa_FrameChanged(void);
306 virtual void Cocoa_synthesizeMouseMoved(void) {}
308 wxWindowCocoaScrollView();
311 // ========================================================================
313 // ========================================================================
314 @interface wxDummyNSView : NSView
315 - (NSView *)hitTest:(NSPoint)aPoint;
317 WX_DECLARE_GET_OBJC_CLASS(wxDummyNSView,NSView)
319 @implementation wxDummyNSView : NSView
320 - (NSView *)hitTest:(NSPoint)aPoint
326 WX_IMPLEMENT_GET_OBJC_CLASS(wxDummyNSView,NSView)
328 // ========================================================================
329 // wxWindowCocoaHider
330 // ========================================================================
331 wxWindowCocoaHider::wxWindowCocoaHider(wxWindow *owner)
335 wxASSERT(owner->GetNSViewForHiding());
336 m_dummyNSView = [[WX_GET_OBJC_CLASS(wxDummyNSView) alloc]
337 initWithFrame:[owner->GetNSViewForHiding() frame]];
338 [m_dummyNSView setAutoresizingMask: [owner->GetNSViewForHiding() autoresizingMask]];
339 AssociateNSView(m_dummyNSView);
342 wxWindowCocoaHider::~wxWindowCocoaHider()
344 DisassociateNSView(m_dummyNSView);
345 [m_dummyNSView release];
348 void wxWindowCocoaHider::Cocoa_FrameChanged(void)
350 // Keep the real window in synch with the dummy
351 wxASSERT(m_dummyNSView);
352 [m_owner->GetNSViewForHiding() setFrame:[m_dummyNSView frame]];
356 #ifdef WXCOCOA_FILL_DUMMY_VIEW
357 bool wxWindowCocoaHider::Cocoa_drawRect(const NSRect& rect)
359 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:rect];
360 [[NSColor greenColor] set];
365 #endif //def WXCOCOA_FILL_DUMMY_VIEW
367 // ========================================================================
368 // wxFlippedNSClipView
369 // ========================================================================
370 @interface wxFlippedNSClipView : NSClipView
373 WX_DECLARE_GET_OBJC_CLASS(wxFlippedNSClipView,NSClipView)
375 @implementation wxFlippedNSClipView : NSClipView
382 WX_IMPLEMENT_GET_OBJC_CLASS(wxFlippedNSClipView,NSClipView)
384 // ========================================================================
385 // wxWindowCocoaScrollView
386 // ========================================================================
387 wxWindowCocoaScrollView::wxWindowCocoaScrollView(wxWindow *owner)
390 wxAutoNSAutoreleasePool pool;
392 wxASSERT(owner->GetNSView());
393 m_cocoaNSScrollView = [[NSScrollView alloc]
394 initWithFrame:[owner->GetNSView() frame]];
395 AssociateNSView(m_cocoaNSScrollView);
397 /* Replace the default NSClipView with a flipped one. This ensures
398 scrolling is "pinned" to the top-left instead of bottom-right. */
399 NSClipView *flippedClip = [[WX_GET_OBJC_CLASS(wxFlippedNSClipView) alloc]
400 initWithFrame: [[m_cocoaNSScrollView contentView] frame]];
401 [m_cocoaNSScrollView setContentView:flippedClip];
402 [flippedClip release];
404 [m_cocoaNSScrollView setBackgroundColor: [NSColor windowBackgroundColor]];
405 [m_cocoaNSScrollView setHasHorizontalScroller: YES];
406 [m_cocoaNSScrollView setHasVerticalScroller: YES];
410 void wxWindowCocoaScrollView::Encapsulate()
412 // Set the scroll view autoresizingMask to match the current NSView
413 [m_cocoaNSScrollView setAutoresizingMask: [m_owner->GetNSView() autoresizingMask]];
414 [m_owner->GetNSView() setAutoresizingMask: NSViewNotSizable];
415 // NOTE: replaceSubView will cause m_cocaNSView to be released
416 // except when it hasn't been added into an NSView hierarchy in which
417 // case it doesn't need to be and this should work out to a no-op
418 m_owner->CocoaReplaceView(m_owner->GetNSView(), m_cocoaNSScrollView);
419 // The NSView is still retained by owner
420 [m_cocoaNSScrollView setDocumentView: m_owner->GetNSView()];
421 // Now it's also retained by the NSScrollView
424 void wxWindowCocoaScrollView::Unencapsulate()
426 [m_cocoaNSScrollView setDocumentView: nil];
427 m_owner->CocoaReplaceView(m_cocoaNSScrollView, m_owner->GetNSView());
428 if(![[m_owner->GetNSView() superview] isFlipped])
429 [m_owner->GetNSView() setAutoresizingMask: NSViewMinYMargin];
432 wxWindowCocoaScrollView::~wxWindowCocoaScrollView()
434 DisassociateNSView(m_cocoaNSScrollView);
435 [m_cocoaNSScrollView release];
438 void wxWindowCocoaScrollView::ClientSizeToSize(int &width, int &height)
440 NSSize frameSize = [NSScrollView
441 frameSizeForContentSize: NSMakeSize(width,height)
442 hasHorizontalScroller: [m_cocoaNSScrollView hasHorizontalScroller]
443 hasVerticalScroller: [m_cocoaNSScrollView hasVerticalScroller]
444 borderType: [m_cocoaNSScrollView borderType]];
445 width = (int)frameSize.width;
446 height = (int)frameSize.height;
449 void wxWindowCocoaScrollView::DoGetClientSize(int *x, int *y) const
451 NSSize nssize = [m_cocoaNSScrollView contentSize];
453 *x = (int)nssize.width;
455 *y = (int)nssize.height;
458 void wxWindowCocoaScrollView::Cocoa_FrameChanged(void)
460 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_FrameChanged"));
461 wxSizeEvent event(m_owner->GetSize(), m_owner->GetId());
462 event.SetEventObject(m_owner);
463 m_owner->GetEventHandler()->ProcessEvent(event);
466 // ========================================================================
468 // ========================================================================
469 // normally the base classes aren't included, but wxWindow is special
470 #ifdef __WXUNIVERSAL__
471 IMPLEMENT_ABSTRACT_CLASS(wxWindowCocoa, wxWindowBase)
473 IMPLEMENT_DYNAMIC_CLASS(wxWindow, wxWindowBase)
476 BEGIN_EVENT_TABLE(wxWindowCocoa, wxWindowBase)
479 wxWindow *wxWindowCocoa::sm_capturedWindow = NULL;
482 void wxWindowCocoa::Init()
484 m_cocoaNSView = NULL;
486 m_wxCocoaScrollView = NULL;
487 m_isBeingDeleted = false;
489 m_visibleTrackingRectManager = NULL;
493 bool wxWindow::Create(wxWindow *parent, wxWindowID winid,
497 const wxString& name)
499 if(!CreateBase(parent,winid,pos,size,style,wxDefaultValidator,name))
502 // TODO: create the window
503 m_cocoaNSView = NULL;
504 SetNSView([[WX_GET_OBJC_CLASS(WXNSView) alloc] initWithFrame: MakeDefaultNSRect(size)]);
505 [m_cocoaNSView release];
509 m_parent->AddChild(this);
510 m_parent->CocoaAddChild(this);
511 SetInitialFrameRect(pos,size);
518 wxWindow::~wxWindow()
520 wxAutoNSAutoreleasePool pool;
523 // Make sure our parent (in the wxWidgets sense) is our superview
524 // before we go removing from it.
525 if(m_parent && m_parent->GetNSView()==[GetNSViewForSuperview() superview])
526 CocoaRemoveFromParent();
528 delete m_wxCocoaScrollView;
534 void wxWindowCocoa::CocoaAddChild(wxWindowCocoa *child)
536 // Pool here due to lack of one during wx init phase
537 wxAutoNSAutoreleasePool pool;
539 NSView *childView = child->GetNSViewForSuperview();
542 [m_cocoaNSView addSubview: childView];
543 child->m_isShown = !m_cocoaHider;
546 void wxWindowCocoa::CocoaRemoveFromParent(void)
548 [GetNSViewForSuperview() removeFromSuperview];
551 void wxWindowCocoa::SetNSView(WX_NSView cocoaNSView)
553 // Clear the visible area tracking rect if we have one.
554 delete m_visibleTrackingRectManager;
555 m_visibleTrackingRectManager = NULL;
557 bool need_debug = cocoaNSView || m_cocoaNSView;
558 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d"),this,m_cocoaNSView,[m_cocoaNSView retainCount]);
559 DisassociateNSView(m_cocoaNSView);
560 [cocoaNSView retain];
561 [m_cocoaNSView release];
562 m_cocoaNSView = cocoaNSView;
563 AssociateNSView(m_cocoaNSView);
564 if(need_debug) wxLogTrace(wxTRACE_COCOA_RetainRelease,wxT("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d"),this,cocoaNSView,[cocoaNSView retainCount]);
567 WX_NSView wxWindowCocoa::GetNSViewForSuperview() const
570 ? m_cocoaHider->GetNSView()
571 : m_wxCocoaScrollView
572 ? m_wxCocoaScrollView->GetNSScrollView()
576 WX_NSView wxWindowCocoa::GetNSViewForHiding() const
578 return m_wxCocoaScrollView
579 ? m_wxCocoaScrollView->GetNSScrollView()
583 NSPoint wxWindowCocoa::CocoaTransformBoundsToWx(NSPoint pointBounds)
585 // TODO: Handle scrolling offset
586 return CocoaTransformNSViewBoundsToWx(GetNSView(), pointBounds);
589 NSRect wxWindowCocoa::CocoaTransformBoundsToWx(NSRect rectBounds)
591 // TODO: Handle scrolling offset
592 return CocoaTransformNSViewBoundsToWx(GetNSView(), rectBounds);
595 NSPoint wxWindowCocoa::CocoaTransformWxToBounds(NSPoint pointWx)
597 // TODO: Handle scrolling offset
598 return CocoaTransformNSViewWxToBounds(GetNSView(), pointWx);
601 NSRect wxWindowCocoa::CocoaTransformWxToBounds(NSRect rectWx)
603 // TODO: Handle scrolling offset
604 return CocoaTransformNSViewWxToBounds(GetNSView(), rectWx);
607 WX_NSAffineTransform wxWindowCocoa::CocoaGetWxToBoundsTransform()
609 // TODO: Handle scrolling offset
610 NSAffineTransform *transform = wxDC::CocoaGetWxToBoundsTransform([GetNSView() isFlipped], [GetNSView() bounds].size.height);
614 bool wxWindowCocoa::Cocoa_drawRect(const NSRect &rect)
616 wxLogTrace(wxTRACE_COCOA,wxT("Cocoa_drawRect"));
617 // Recursion can happen if the event loop runs from within the paint
618 // handler. For instance, if an assertion dialog is shown.
619 // FIXME: This seems less than ideal.
622 wxLogDebug(wxT("Paint event recursion!"));
627 // Set m_updateRegion
628 const NSRect *rects = ▭ // The bounding box of the region
629 NSInteger countRects = 1;
630 // Try replacing the larger rectangle with a list of smaller ones:
631 if ([GetNSView() respondsToSelector:@selector(getRectsBeingDrawn:count:)])
632 [GetNSView() getRectsBeingDrawn:&rects count:&countRects];
634 NSRect *transformedRects = (NSRect*)malloc(sizeof(NSRect)*countRects);
635 for(int i=0; i<countRects; i++)
637 transformedRects[i] = CocoaTransformBoundsToWx(rects[i]);
639 m_updateRegion = wxRegion(transformedRects,countRects);
640 free(transformedRects);
642 wxPaintEvent event(m_windowId);
643 event.SetEventObject(this);
644 bool ret = GetEventHandler()->ProcessEvent(event);
649 void wxWindowCocoa::InitMouseEvent(wxMouseEvent& event, WX_NSEvent cocoaEvent)
651 wxASSERT_MSG([m_cocoaNSView window]==[cocoaEvent window],wxT("Mouse event for different NSWindow"));
652 // Mouse events happen at the NSWindow level so we need to convert
653 // into our bounds coordinates then convert to wx coordinates.
654 NSPoint cocoaPoint = [m_cocoaNSView convertPoint:[(NSEvent*)cocoaEvent locationInWindow] fromView:nil];
655 NSPoint pointWx = CocoaTransformBoundsToWx(cocoaPoint);
656 // FIXME: Should we be adjusting for client area origin?
657 const wxPoint &clientorigin = GetClientAreaOrigin();
658 event.m_x = (wxCoord)pointWx.x - clientorigin.x;
659 event.m_y = (wxCoord)pointWx.y - clientorigin.y;
661 event.m_shiftDown = [cocoaEvent modifierFlags] & NSShiftKeyMask;
662 event.m_controlDown = [cocoaEvent modifierFlags] & NSControlKeyMask;
663 event.m_altDown = [cocoaEvent modifierFlags] & NSAlternateKeyMask;
664 event.m_metaDown = [cocoaEvent modifierFlags] & NSCommandKeyMask;
666 // TODO: set timestamp?
667 event.SetEventObject(this);
668 event.SetId(GetId());
671 bool wxWindowCocoa::Cocoa_mouseMoved(WX_NSEvent theEvent)
673 wxMouseEvent event(wxEVT_MOTION);
674 InitMouseEvent(event,theEvent);
675 wxLogTrace(wxTRACE_COCOA,wxT("wxWindow=%p::Cocoa_mouseMoved @%d,%d"),this,event.m_x,event.m_y);
676 return GetEventHandler()->ProcessEvent(event);
679 void wxWindowCocoa::Cocoa_synthesizeMouseMoved()
681 wxMouseEvent event(wxEVT_MOTION);
682 NSWindow *window = [GetNSView() window];
683 NSPoint locationInWindow = [window mouseLocationOutsideOfEventStream];
684 NSPoint cocoaPoint = [m_cocoaNSView convertPoint:locationInWindow fromView:nil];
686 NSPoint pointWx = CocoaTransformBoundsToWx(cocoaPoint);
687 // FIXME: Should we be adjusting for client area origin?
688 const wxPoint &clientorigin = GetClientAreaOrigin();
689 event.m_x = (wxCoord)pointWx.x - clientorigin.x;
690 event.m_y = (wxCoord)pointWx.y - clientorigin.y;
692 // TODO: Handle shift, control, alt, meta flags
693 event.SetEventObject(this);
694 event.SetId(GetId());
696 wxLogTrace(wxTRACE_COCOA,wxT("wxwin=%p Synthesized Mouse Moved @%d,%d"),this,event.m_x,event.m_y);
697 GetEventHandler()->ProcessEvent(event);
700 bool wxWindowCocoa::Cocoa_mouseEntered(WX_NSEvent theEvent)
702 if(m_visibleTrackingRectManager != NULL && m_visibleTrackingRectManager->IsOwnerOfEvent(theEvent))
704 m_visibleTrackingRectManager->BeginSynthesizingEvents();
706 // Although we synthesize the mouse moved events we don't poll for them but rather send them only when
707 // some other event comes in. That other event is (guess what) mouse moved events that will be sent
708 // to the NSWindow which will forward them on to the first responder. We are not likely to be the
709 // first responder, so the mouseMoved: events are effectively discarded.
710 [[GetNSView() window] setAcceptsMouseMovedEvents:YES];
712 wxMouseEvent event(wxEVT_ENTER_WINDOW);
713 InitMouseEvent(event,theEvent);
714 wxLogTrace(wxTRACE_COCOA_TrackingRect,wxT("wxwin=%p Mouse Entered TR#%d @%d,%d"),this,[theEvent trackingNumber], event.m_x,event.m_y);
715 return GetEventHandler()->ProcessEvent(event);
721 bool wxWindowCocoa::Cocoa_mouseExited(WX_NSEvent theEvent)
723 if(m_visibleTrackingRectManager != NULL && m_visibleTrackingRectManager->IsOwnerOfEvent(theEvent))
725 m_visibleTrackingRectManager->StopSynthesizingEvents();
727 wxMouseEvent event(wxEVT_LEAVE_WINDOW);
728 InitMouseEvent(event,theEvent);
729 wxLogTrace(wxTRACE_COCOA_TrackingRect,wxT("wxwin=%p Mouse Exited TR#%d @%d,%d"),this,[theEvent trackingNumber],event.m_x,event.m_y);
730 return GetEventHandler()->ProcessEvent(event);
736 bool wxWindowCocoa::Cocoa_mouseDown(WX_NSEvent theEvent)
738 wxMouseEvent event([theEvent clickCount]<2?wxEVT_LEFT_DOWN:wxEVT_LEFT_DCLICK);
739 InitMouseEvent(event,theEvent);
740 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
741 return GetEventHandler()->ProcessEvent(event);
744 bool wxWindowCocoa::Cocoa_mouseDragged(WX_NSEvent theEvent)
746 wxMouseEvent event(wxEVT_MOTION);
747 InitMouseEvent(event,theEvent);
748 event.m_leftDown = true;
749 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
750 return GetEventHandler()->ProcessEvent(event);
753 bool wxWindowCocoa::Cocoa_mouseUp(WX_NSEvent theEvent)
755 wxMouseEvent event(wxEVT_LEFT_UP);
756 InitMouseEvent(event,theEvent);
757 wxLogTrace(wxTRACE_COCOA,wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
758 return GetEventHandler()->ProcessEvent(event);
761 bool wxWindowCocoa::Cocoa_rightMouseDown(WX_NSEvent theEvent)
763 wxMouseEvent event([theEvent clickCount]<2?wxEVT_RIGHT_DOWN:wxEVT_RIGHT_DCLICK);
764 InitMouseEvent(event,theEvent);
765 wxLogDebug(wxT("Mouse Down @%d,%d num clicks=%d"),event.m_x,event.m_y,[theEvent clickCount]);
766 return GetEventHandler()->ProcessEvent(event);
769 bool wxWindowCocoa::Cocoa_rightMouseDragged(WX_NSEvent theEvent)
771 wxMouseEvent event(wxEVT_MOTION);
772 InitMouseEvent(event,theEvent);
773 event.m_rightDown = true;
774 wxLogDebug(wxT("Mouse Drag @%d,%d"),event.m_x,event.m_y);
775 return GetEventHandler()->ProcessEvent(event);
778 bool wxWindowCocoa::Cocoa_rightMouseUp(WX_NSEvent theEvent)
780 wxMouseEvent event(wxEVT_RIGHT_UP);
781 InitMouseEvent(event,theEvent);
782 wxLogDebug(wxT("Mouse Up @%d,%d"),event.m_x,event.m_y);
783 return GetEventHandler()->ProcessEvent(event);
786 bool wxWindowCocoa::Cocoa_otherMouseDown(WX_NSEvent theEvent)
791 bool wxWindowCocoa::Cocoa_otherMouseDragged(WX_NSEvent theEvent)
796 bool wxWindowCocoa::Cocoa_otherMouseUp(WX_NSEvent theEvent)
801 void wxWindowCocoa::Cocoa_FrameChanged(void)
803 wxLogTrace(wxTRACE_COCOA,wxT("wxWindow=%p::Cocoa_FrameChanged"),this);
804 if(m_visibleTrackingRectManager != NULL)
805 m_visibleTrackingRectManager->RebuildTrackingRect();
806 wxSizeEvent event(GetSize(), m_windowId);
807 event.SetEventObject(this);
808 GetEventHandler()->ProcessEvent(event);
811 bool wxWindowCocoa::Cocoa_resetCursorRects()
813 wxLogTrace(wxTRACE_COCOA,wxT("wxWindow=%p::Cocoa_resetCursorRects"),this);
815 // When we are called there may be a queued tracking rect event (mouse entered or exited) and
816 // we won't know it. A specific example is wxGenericHyperlinkCtrl changing the cursor from its
817 // mouse exited event. If the control happens to share the edge with its parent window which is
818 // also tracking mouse events then Cocoa receives two mouse exited events from the window server.
819 // The first one will cause wxGenericHyperlinkCtrl to call wxWindow::SetCursor which will
820 // invaildate the cursor rect causing Cocoa to schedule cursor rect reset with the run loop
821 // which willl in turn call us before exiting for the next user event.
823 // If we are the parent window then rebuilding our tracking rectangle will cause us to miss
824 // our mouse exited event because the already queued event will have the old tracking rect
825 // tag. The simple solution is to only rebuild our tracking rect if we need to.
827 if(m_visibleTrackingRectManager != NULL)
828 m_visibleTrackingRectManager->RebuildTrackingRectIfNeeded();
830 if(!m_cursor.GetNSCursor())
833 [GetNSView() addCursorRect: [GetNSView() visibleRect] cursor: m_cursor.GetNSCursor()];
838 bool wxWindowCocoa::SetCursor(const wxCursor &cursor)
840 if(!wxWindowBase::SetCursor(cursor))
843 // Set up the cursor rect so that invalidateCursorRectsForView: will destroy it.
844 // If we don't do this then Cocoa thinks (rightly) that we don't have any cursor
845 // rects and thus won't ever call resetCursorRects.
846 [GetNSView() addCursorRect: [GetNSView() visibleRect] cursor: m_cursor.GetNSCursor()];
848 // Invalidate the cursor rects so the cursor will change
849 // Note that it is not enough to remove the old one (if any) and add the new one.
850 // For the rects to work properly, Cocoa itself must call resetCursorRects.
851 [[GetNSView() window] invalidateCursorRectsForView:GetNSView()];
855 bool wxWindowCocoa::Cocoa_viewDidMoveToWindow()
857 wxLogTrace(wxTRACE_COCOA,wxT("wxWindow=%p::viewDidMoveToWindow"),this);
858 // Set up new tracking rects. I am reasonably sure the new window must be set before doing this.
859 if(m_visibleTrackingRectManager != NULL)
860 m_visibleTrackingRectManager->BuildTrackingRect();
864 bool wxWindowCocoa::Cocoa_viewWillMoveToWindow(WX_NSWindow newWindow)
866 wxLogTrace(wxTRACE_COCOA,wxT("wxWindow=%p::viewWillMoveToWindow:%p"),this, newWindow);
867 // Clear tracking rects. It is imperative this be done before the new window is set.
868 if(m_visibleTrackingRectManager != NULL)
869 m_visibleTrackingRectManager->ClearTrackingRect();
873 bool wxWindow::Close(bool force)
875 // The only reason this function exists is that it is virtual and
876 // wxTopLevelWindowCocoa will override it.
877 return wxWindowBase::Close(force);
880 void wxWindow::CocoaReplaceView(WX_NSView oldView, WX_NSView newView)
882 [[oldView superview] replaceSubview:oldView with:newView];
885 void wxWindow::DoEnable(bool enable)
887 CocoaSetEnabled(enable);
890 bool wxWindow::Show(bool show)
892 wxAutoNSAutoreleasePool pool;
893 // If the window is marked as visible, then it shouldn't have a dummy view
894 // If the window is marked hidden, then it should have a dummy view
895 // wxSpinCtrl (generic) abuses m_isShown, don't use it for any logic
896 // wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),wxT("wxWindow: m_isShown does not agree with m_dummyNSView"));
897 // Return false if there isn't a window to show or hide
898 NSView *cocoaView = GetNSViewForHiding();
903 // If state isn't changing, return false
906 CocoaReplaceView(m_cocoaHider->GetNSView(), cocoaView);
907 wxASSERT(![m_cocoaHider->GetNSView() superview]);
910 wxASSERT([cocoaView superview]);
914 // If state isn't changing, return false
917 m_cocoaHider = new wxWindowCocoaHider(this);
918 // NOTE: replaceSubview:with will cause m_cocaNSView to be
919 // (auto)released which balances out addSubview
920 CocoaReplaceView(cocoaView, m_cocoaHider->GetNSView());
921 // m_coocaNSView is now only retained by us
922 wxASSERT([m_cocoaHider->GetNSView() superview]);
923 wxASSERT(![cocoaView superview]);
929 void wxWindowCocoa::DoSetSize(int x, int y, int width, int height, int sizeFlags)
931 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":".");
932 int currentX, currentY;
933 int currentW, currentH;
934 DoGetPosition(¤tX, ¤tY);
935 DoGetSize(¤tW, ¤tH);
936 if((x==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
938 if((y==-1) && !(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
941 AdjustForParentClientOrigin(x,y,sizeFlags);
943 wxSize size(wxDefaultSize);
945 if((width==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
947 if(sizeFlags&wxSIZE_AUTO_WIDTH)
949 size=DoGetBestSize();
955 if((height==-1)&&!(sizeFlags&wxSIZE_ALLOW_MINUS_ONE))
957 if(sizeFlags&wxSIZE_AUTO_HEIGHT)
960 size=DoGetBestSize();
966 DoMoveWindow(x,y,width,height);
971 void wxWindowCocoa::DoSetToolTip( wxToolTip *tip )
973 wxWindowBase::DoSetToolTip(tip);
977 m_tooltip->SetWindow((wxWindow *)this);
983 void wxWindowCocoa::DoMoveWindow(int x, int y, int width, int height)
985 wxAutoNSAutoreleasePool pool;
986 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoMoveWindow(%d,%d,%d,%d)"),this,x,y,width,height);
988 NSView *nsview = GetNSViewForSuperview();
989 NSView *superview = [nsview superview];
991 wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent"));
993 NSRect oldFrameRect = [nsview frame];
994 NSRect newFrameRect = GetParent()->CocoaTransformWxToBounds(NSMakeRect(x,y,width,height));
995 [nsview setFrame:newFrameRect];
996 // Be sure to redraw the parent to reflect the changed position
997 [superview setNeedsDisplayInRect:oldFrameRect];
998 [superview setNeedsDisplayInRect:newFrameRect];
1001 void wxWindowCocoa::SetInitialFrameRect(const wxPoint& pos, const wxSize& size)
1003 NSView *nsview = GetNSViewForSuperview();
1004 NSView *superview = [nsview superview];
1005 wxCHECK_RET(superview,wxT("NSView does not have a superview"));
1006 wxCHECK_RET(GetParent(), wxT("Window can only be placed correctly when it has a parent"));
1007 NSRect frameRect = [nsview frame];
1009 frameRect.size.width = size.x;
1011 frameRect.size.height = size.y;
1012 frameRect.origin.x = pos.x;
1013 frameRect.origin.y = pos.y;
1014 // Tell Cocoa to change the margin between the bottom of the superview
1015 // and the bottom of the control. Keeps the control pinned to the top
1016 // of its superview so that its position in the wxWidgets coordinate
1017 // system doesn't change.
1018 if(![superview isFlipped])
1019 [nsview setAutoresizingMask: NSViewMinYMargin];
1020 // MUST set the mask before setFrame: which can generate a size event
1021 // and cause a scroller to be added!
1022 frameRect = GetParent()->CocoaTransformWxToBounds(frameRect);
1023 [nsview setFrame: frameRect];
1027 void wxWindow::DoGetSize(int *w, int *h) const
1029 NSRect cocoaRect = [GetNSViewForSuperview() frame];
1031 *w=(int)cocoaRect.size.width;
1033 *h=(int)cocoaRect.size.height;
1034 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetSize = (%d,%d)"),this,(int)cocoaRect.size.width,(int)cocoaRect.size.height);
1037 void wxWindow::DoGetPosition(int *x, int *y) const
1039 NSView *nsview = GetNSViewForSuperview();
1041 NSRect cocoaRect = [nsview frame];
1042 NSRect rectWx = GetParent()->CocoaTransformBoundsToWx(cocoaRect);
1044 *x=(int)rectWx.origin.x;
1046 *y=(int)rectWx.origin.y;
1047 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("wxWindow=%p::DoGetPosition = (%d,%d)"),this,(int)cocoaRect.origin.x,(int)cocoaRect.origin.y);
1050 WXWidget wxWindow::GetHandle() const
1052 return m_cocoaNSView;
1055 wxWindow* wxWindow::GetWxWindow() const
1057 return (wxWindow*) this;
1060 void wxWindow::Refresh(bool eraseBack, const wxRect *rect)
1062 [m_cocoaNSView setNeedsDisplay:YES];
1065 void wxWindow::SetFocus()
1067 if([GetNSView() acceptsFirstResponder])
1068 [[GetNSView() window] makeFirstResponder: GetNSView()];
1071 void wxWindow::DoCaptureMouse()
1074 sm_capturedWindow = this;
1077 void wxWindow::DoReleaseMouse()
1080 sm_capturedWindow = NULL;
1083 void wxWindow::DoScreenToClient(int *x, int *y) const
1085 // Point in cocoa screen coordinates:
1086 NSPoint cocoaScreenPoint = OriginInCocoaScreenCoordinatesForRectInWxDisplayCoordinates(x!=NULL?*x:0, y!=NULL?*y:0, 0, 0, false);
1087 NSView *clientView = const_cast<wxWindow*>(this)->GetNSView();
1088 NSWindow *theWindow = [clientView window];
1090 // Point in window's base coordinate system:
1091 NSPoint windowPoint = [theWindow convertScreenToBase:cocoaScreenPoint];
1092 // Point in view's bounds coordinate system
1093 NSPoint boundsPoint = [clientView convertPoint:windowPoint fromView:nil];
1094 // Point in wx client coordinates:
1095 NSPoint theWxClientPoint = CocoaTransformNSViewBoundsToWx(clientView, boundsPoint);
1097 *x = theWxClientPoint.x;
1099 *y = theWxClientPoint.y;
1102 void wxWindow::DoClientToScreen(int *x, int *y) const
1104 // Point in wx client coordinates
1105 NSPoint theWxClientPoint = NSMakePoint(x!=NULL?*x:0, y!=NULL?*y:0);
1107 NSView *clientView = const_cast<wxWindow*>(this)->GetNSView();
1109 // Point in the view's bounds coordinate system
1110 NSPoint boundsPoint = CocoaTransformNSViewWxToBounds(clientView, theWxClientPoint);
1112 // Point in the window's base coordinate system
1113 NSPoint windowPoint = [clientView convertPoint:boundsPoint toView:nil];
1115 NSWindow *theWindow = [clientView window];
1116 // Point in Cocoa's screen coordinates
1117 NSPoint screenPoint = [theWindow convertBaseToScreen:windowPoint];
1119 // Act as though this was the origin of a 0x0 rectangle
1120 NSRect screenPointRect = NSMakeRect(screenPoint.x, screenPoint.y, 0, 0);
1122 // Convert that rectangle to wx coordinates
1123 wxPoint theWxScreenPoint = OriginInWxDisplayCoordinatesForRectInCocoaScreenCoordinates(screenPointRect);
1125 *x = theWxScreenPoint.x;
1127 *y = theWxScreenPoint.y;
1130 // Get size *available for subwindows* i.e. excluding menu bar etc.
1131 void wxWindow::DoGetClientSize(int *x, int *y) const
1133 wxLogTrace(wxTRACE_COCOA,wxT("DoGetClientSize:"));
1134 if(m_wxCocoaScrollView)
1135 m_wxCocoaScrollView->DoGetClientSize(x,y);
1137 wxWindowCocoa::DoGetSize(x,y);
1140 void wxWindow::DoSetClientSize(int width, int height)
1142 wxLogTrace(wxTRACE_COCOA_Window_Size,wxT("DoSetClientSize=(%d,%d)"),width,height);
1143 if(m_wxCocoaScrollView)
1144 m_wxCocoaScrollView->ClientSizeToSize(width,height);
1145 CocoaSetWxWindowSize(width,height);
1148 void wxWindow::CocoaSetWxWindowSize(int width, int height)
1150 wxWindowCocoa::DoSetSize(wxDefaultCoord,wxDefaultCoord,width,height,wxSIZE_USE_EXISTING);
1153 void wxWindow::SetLabel(const wxString& WXUNUSED(label))
1155 // Intentional no-op.
1158 wxString wxWindow::GetLabel() const
1160 // General Get/Set of labels is implemented in wxControlBase
1161 wxLogDebug(wxT("wxWindow::GetLabel: Should be overridden if needed."));
1162 return wxEmptyString;
1165 int wxWindow::GetCharHeight() const
1171 int wxWindow::GetCharWidth() const
1177 void wxWindow::GetTextExtent(const wxString& string, int *x, int *y,
1178 int *descent, int *externalLeading, const wxFont *theFont) const
1183 // Coordinates relative to the window
1184 void wxWindow::WarpPointer (int x_pos, int y_pos)
1189 int wxWindow::GetScrollPos(int orient) const
1195 // This now returns the whole range, not just the number
1196 // of positions that we can scroll.
1197 int wxWindow::GetScrollRange(int orient) const
1203 int wxWindow::GetScrollThumb(int orient) const
1209 void wxWindow::SetScrollPos(int orient, int pos, bool refresh)
1214 void wxWindow::CocoaCreateNSScrollView()
1216 if(!m_wxCocoaScrollView)
1218 m_wxCocoaScrollView = new wxWindowCocoaScrollView(this);
1222 // New function that will replace some of the above.
1223 void wxWindow::SetScrollbar(int orient, int pos, int thumbVisible,
1224 int range, bool refresh)
1226 CocoaCreateNSScrollView();
1230 // Does a physical scroll
1231 void wxWindow::ScrollWindow(int dx, int dy, const wxRect *rect)
1236 void wxWindow::DoSetVirtualSize( int x, int y )
1238 wxWindowBase::DoSetVirtualSize(x,y);
1239 CocoaCreateNSScrollView();
1240 [m_cocoaNSView setFrameSize:NSMakeSize(m_virtualSize.x,m_virtualSize.y)];
1243 bool wxWindow::SetFont(const wxFont& font)
1245 // FIXME: We may need to handle wx font inheritance.
1246 return wxWindowBase::SetFont(font);
1249 #if 0 // these are used when debugging the algorithm.
1250 static char const * const comparisonresultStrings[] =
1257 class CocoaWindowCompareContext
1259 DECLARE_NO_COPY_CLASS(CocoaWindowCompareContext)
1261 CocoaWindowCompareContext(); // Not implemented
1262 CocoaWindowCompareContext(NSView *target, NSArray *subviews)
1265 // Cocoa sorts subviews in-place.. make a copy
1266 m_subviews = [subviews copy];
1268 ~CocoaWindowCompareContext()
1269 { // release the copy
1270 [m_subviews release];
1273 { return m_target; }
1275 { return m_subviews; }
1276 /* Helper function that returns the comparison based off of the original ordering */
1277 CocoaWindowCompareFunctionResult CompareUsingOriginalOrdering(id first, id second)
1279 NSUInteger firstI = [m_subviews indexOfObjectIdenticalTo:first];
1280 NSUInteger secondI = [m_subviews indexOfObjectIdenticalTo:second];
1281 // NOTE: If either firstI or secondI is NSNotFound then it will be NSIntegerMax and thus will
1282 // likely compare higher than the other view which is reasonable considering the only way that
1283 // can happen is if the subview was added after our call to subviews but before the call to
1284 // sortSubviewsUsingFunction:context:. Thus we don't bother checking. Particularly because
1285 // that case should never occur anyway because that would imply a multi-threaded GUI call
1286 // which is a big no-no with Cocoa.
1288 // Subviews are ordered from back to front meaning one that is already lower will have an lower index.
1289 NSComparisonResult result = (firstI < secondI)
1290 ? NSOrderedAscending /* -1 */
1291 : (firstI > secondI)
1292 ? NSOrderedDescending /* 1 */
1293 : NSOrderedSame /* 0 */;
1295 #if 0 // Enable this if you need to debug the algorithm.
1296 NSLog(@"%@ [%d] %s %@ [%d]\n", first, firstI, comparisonresultStrings[result+1], second, secondI);
1301 /* The subview we are trying to Raise or Lower */
1303 /* A copy of the original array of subviews */
1304 NSArray *m_subviews;
1307 /* Causes Cocoa to raise the target view to the top of the Z-Order by telling the sort function that
1308 * the target view is always higher than every other view. When comparing two views neither of
1309 * which is the target, it returns the correct response based on the original ordering
1311 static CocoaWindowCompareFunctionResult CocoaRaiseWindowCompareFunction(id first, id second, void *ctx)
1313 CocoaWindowCompareContext *compareContext = (CocoaWindowCompareContext*)ctx;
1314 // first should be ordered higher
1315 if(first==compareContext->target())
1316 return NSOrderedDescending;
1317 // second should be ordered higher
1318 if(second==compareContext->target())
1319 return NSOrderedAscending;
1320 return compareContext->CompareUsingOriginalOrdering(first,second);
1323 // Raise the window to the top of the Z order
1324 void wxWindow::Raise()
1326 // wxAutoNSAutoreleasePool pool;
1327 NSView *nsview = GetNSViewForSuperview();
1328 NSView *superview = [nsview superview];
1329 CocoaWindowCompareContext compareContext(nsview, [superview subviews]);
1331 [superview sortSubviewsUsingFunction:
1332 CocoaRaiseWindowCompareFunction
1333 context: &compareContext];
1336 /* Causes Cocoa to lower the target view to the bottom of the Z-Order by telling the sort function that
1337 * the target view is always lower than every other view. When comparing two views neither of
1338 * which is the target, it returns the correct response based on the original ordering
1340 static CocoaWindowCompareFunctionResult CocoaLowerWindowCompareFunction(id first, id second, void *ctx)
1342 CocoaWindowCompareContext *compareContext = (CocoaWindowCompareContext*)ctx;
1343 // first should be ordered lower
1344 if(first==compareContext->target())
1345 return NSOrderedAscending;
1346 // second should be ordered lower
1347 if(second==compareContext->target())
1348 return NSOrderedDescending;
1349 return compareContext->CompareUsingOriginalOrdering(first,second);
1352 // Lower the window to the bottom of the Z order
1353 void wxWindow::Lower()
1355 NSView *nsview = GetNSViewForSuperview();
1356 NSView *superview = [nsview superview];
1357 CocoaWindowCompareContext compareContext(nsview, [superview subviews]);
1360 NSLog(@"Target:\n%@\n", nsview);
1361 NSLog(@"Before:\n%@\n", compareContext.subviews());
1363 [superview sortSubviewsUsingFunction:
1364 CocoaLowerWindowCompareFunction
1365 context: &compareContext];
1367 NSLog(@"After:\n%@\n", [superview subviews]);
1371 bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
1376 // Get the window with the focus
1377 wxWindow *wxWindowBase::DoFindFocus()
1379 // Basically we are somewhat emulating the responder chain here except
1380 // we are only loking for the first responder in the key window or
1381 // upon failing to find one if the main window is different we look
1382 // for the first responder in the main window.
1384 // Note that the firstResponder doesn't necessarily have to be an
1385 // NSView but wxCocoaNSView::GetFromCocoa() will simply return
1386 // NULL unless it finds its argument in its hash map.
1390 NSWindow *keyWindow = [[NSApplication sharedApplication] keyWindow];
1391 win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([keyWindow firstResponder]));
1393 return win->GetWxWindow();
1395 NSWindow *mainWindow = [[NSApplication sharedApplication] keyWindow];
1396 if(mainWindow == keyWindow)
1398 win = wxCocoaNSView::GetFromCocoa(static_cast<NSView*>([mainWindow firstResponder]));
1400 return win->GetWxWindow();
1405 /* static */ wxWindow *wxWindowBase::GetCapture()
1408 return wxWindowCocoa::sm_capturedWindow;
1411 wxWindow *wxGetActiveWindow()
1417 wxPoint wxGetMousePosition()
1420 return wxDefaultPosition;
1423 wxMouseState wxGetMouseState()
1430 wxWindow* wxFindWindowAtPointer(wxPoint& pt)
1432 pt = wxGetMousePosition();
1436 // ========================================================================
1437 // wxCocoaMouseMovedEventSynthesizer
1438 // ========================================================================
1440 #define wxTRACE_COCOA_MouseMovedSynthesizer wxT("COCOA_MouseMovedSynthesizer")
1442 /* This class registers one run loop observer to cover all windows registered with it.
1443 * It will register the observer when the first view is registerd and unregister the
1444 * observer when the last view is unregistered.
1445 * It is instantiated as a static s_mouseMovedSynthesizer in this file although there
1446 * is no reason it couldn't be instantiated multiple times.
1448 class wxCocoaMouseMovedEventSynthesizer
1450 DECLARE_NO_COPY_CLASS(wxCocoaMouseMovedEventSynthesizer)
1452 wxCocoaMouseMovedEventSynthesizer()
1453 { m_lastScreenMouseLocation = NSZeroPoint;
1455 ~wxCocoaMouseMovedEventSynthesizer();
1456 void RegisterWxCocoaView(wxCocoaNSView *aView);
1457 void UnregisterWxCocoaView(wxCocoaNSView *aView);
1458 void SynthesizeMouseMovedEvent();
1461 void AddRunLoopObserver();
1462 void RemoveRunLoopObserver();
1463 wxCFRef<CFRunLoopObserverRef> m_runLoopObserver;
1464 std::list<wxCocoaNSView*> m_registeredViews;
1465 NSPoint m_lastScreenMouseLocation;
1466 static void SynthesizeMouseMovedEvent(CFRunLoopObserverRef observer, CFRunLoopActivity activity, void *info);
1469 void wxCocoaMouseMovedEventSynthesizer::RegisterWxCocoaView(wxCocoaNSView *aView)
1471 m_registeredViews.push_back(aView);
1472 wxLogTrace(wxTRACE_COCOA_MouseMovedSynthesizer, wxT("Registered wxCocoaNSView=%p"), aView);
1474 if(!m_registeredViews.empty() && m_runLoopObserver == NULL)
1476 AddRunLoopObserver();
1480 void wxCocoaMouseMovedEventSynthesizer::UnregisterWxCocoaView(wxCocoaNSView *aView)
1482 m_registeredViews.remove(aView);
1483 wxLogTrace(wxTRACE_COCOA_MouseMovedSynthesizer, wxT("Unregistered wxCocoaNSView=%p"), aView);
1484 if(m_registeredViews.empty() && m_runLoopObserver != NULL)
1486 RemoveRunLoopObserver();
1490 wxCocoaMouseMovedEventSynthesizer::~wxCocoaMouseMovedEventSynthesizer()
1492 if(!m_registeredViews.empty())
1494 // This means failure to clean up so we report on it as a debug message.
1495 wxLogDebug(wxT("There are still %d wxCocoaNSView registered to receive mouse moved events at static destruction time"), m_registeredViews.size());
1496 m_registeredViews.clear();
1498 if(m_runLoopObserver != NULL)
1500 // This should not occur unless m_registeredViews was not empty since the last object unregistered should have done this.
1501 wxLogDebug(wxT("Removing run loop observer during static destruction time."));
1502 RemoveRunLoopObserver();
1506 void wxCocoaMouseMovedEventSynthesizer::SynthesizeMouseMovedEvent(CFRunLoopObserverRef observer, CFRunLoopActivity activity, void *info)
1508 reinterpret_cast<wxCocoaMouseMovedEventSynthesizer*>(info)->SynthesizeMouseMovedEvent();
1511 void wxCocoaMouseMovedEventSynthesizer::AddRunLoopObserver()
1513 CFRunLoopObserverContext observerContext =
1521 // The kCFRunLoopExit observation point is used such that we hook the run loop after it has already decided that
1522 // it is going to exit which is generally for the purpose of letting the event loop process the next Cocoa event.
1524 // Executing our procedure within the run loop (e.g. kCFRunLoopBeforeWaiting which was used before) results
1525 // in our observer procedure being called before the run loop has decided that it is going to return control to
1526 // the Cocoa event loop. One major problem is uncovered by the wxGenericHyperlinkCtrl (consider this to be "user
1527 // code") which changes the window's cursor and thus causes the cursor rectangle's to be invalidated.
1529 // Cocoa implements this invalidation using a delayed notification scheme whereby the resetCursorRects method
1530 // won't be called until the CFRunLoop gets around to it. If the CFRunLoop has not yet exited then it will get
1531 // around to it before letting the event loop do its work. This has some very odd effects on the way the
1532 // newly created tracking rects function. In particular, we will often miss the mouseExited: message if the
1533 // user flicks the mouse quickly enough such that the mouse is already outside of the tracking rect by the
1534 // time the new one is built.
1536 // Observing from the kCFRunLoopExit point gives Cocoa's event loop an opportunity to chew some events before it cedes
1537 // control back to the CFRunLoop, thus causing the delayed notifications to fire at an appropriate time and
1538 // the mouseExited: message to be sent properly.
1540 m_runLoopObserver.reset(CFRunLoopObserverCreate(kCFAllocatorDefault, kCFRunLoopExit, TRUE, 0, SynthesizeMouseMovedEvent, &observerContext));
1541 CFRunLoopAddObserver([[NSRunLoop currentRunLoop] getCFRunLoop], m_runLoopObserver, kCFRunLoopCommonModes);
1542 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("Added tracking rect run loop observer"));
1545 void wxCocoaMouseMovedEventSynthesizer::RemoveRunLoopObserver()
1547 CFRunLoopRemoveObserver([[NSRunLoop currentRunLoop] getCFRunLoop], m_runLoopObserver, kCFRunLoopCommonModes);
1548 m_runLoopObserver.reset();
1549 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("Removed tracking rect run loop observer"));
1552 void wxCocoaMouseMovedEventSynthesizer::SynthesizeMouseMovedEvent()
1554 NSPoint screenMouseLocation = [NSEvent mouseLocation];
1555 // Checking the last mouse location is done for a few reasons:
1556 // 1. We are observing every iteration of the event loop so we'd be sending out a lot of extraneous events
1557 // telling the app the mouse moved when the user hit a key for instance.
1558 // 2. When handling the mouse moved event, user code can do something to the view which will cause Cocoa to
1559 // call resetCursorRects. Cocoa does this by using a delayed notification which means the event loop gets
1560 // pumped once which would mean that if we didn't check the mouse location we'd get into a never-ending
1561 // loop causing the tracking rectangles to constantly be reset.
1562 if(screenMouseLocation.x != m_lastScreenMouseLocation.x || screenMouseLocation.y != m_lastScreenMouseLocation.y)
1564 m_lastScreenMouseLocation = screenMouseLocation;
1565 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("Synthesizing mouse moved at screen (%f,%f)"), screenMouseLocation.x, screenMouseLocation.y);
1566 for(std::list<wxCocoaNSView*>::iterator i = m_registeredViews.begin(); i != m_registeredViews.end(); ++i)
1568 (*i)->Cocoa_synthesizeMouseMoved();
1573 // Singleton used for all views:
1574 static wxCocoaMouseMovedEventSynthesizer s_mouseMovedSynthesizer;
1576 // ========================================================================
1577 // wxCocoaTrackingRectManager
1578 // ========================================================================
1580 wxCocoaTrackingRectManager::wxCocoaTrackingRectManager(wxWindow *window)
1583 m_isTrackingRectActive = false;
1584 BuildTrackingRect();
1587 void wxCocoaTrackingRectManager::ClearTrackingRect()
1589 if(m_isTrackingRectActive)
1591 [m_window->GetNSView() removeTrackingRect:m_trackingRectTag];
1592 m_isTrackingRectActive = false;
1593 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("%s@%p: Removed tracking rect #%d"), m_window->GetClassInfo()->GetClassName(), m_window, m_trackingRectTag);
1595 // If we were doing periodic events we need to clear those too
1596 StopSynthesizingEvents();
1599 void wxCocoaTrackingRectManager::StopSynthesizingEvents()
1601 s_mouseMovedSynthesizer.UnregisterWxCocoaView(m_window);
1604 void wxCocoaTrackingRectManager::BuildTrackingRect()
1606 // Pool here due to lack of one during wx init phase
1607 wxAutoNSAutoreleasePool pool;
1609 wxASSERT_MSG(!m_isTrackingRectActive, wxT("Tracking rect was not cleared"));
1611 NSView *theView = m_window->GetNSView();
1613 if([theView window] != nil)
1615 NSRect visibleRect = [theView visibleRect];
1617 m_trackingRectTag = [theView addTrackingRect:visibleRect owner:theView userData:NULL assumeInside:NO];
1618 m_trackingRectInWindowCoordinates = [theView convertRect:visibleRect toView:nil];
1619 m_isTrackingRectActive = true;
1621 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("%s@%p: Added tracking rect #%d"), m_window->GetClassInfo()->GetClassName(), m_window, m_trackingRectTag);
1625 void wxCocoaTrackingRectManager::BeginSynthesizingEvents()
1627 s_mouseMovedSynthesizer.RegisterWxCocoaView(m_window);
1630 void wxCocoaTrackingRectManager::RebuildTrackingRectIfNeeded()
1632 if(m_isTrackingRectActive)
1634 NSView *theView = m_window->GetNSView();
1635 NSRect currentRect = [theView convertRect:[theView visibleRect] toView:nil];
1636 if(NSEqualRects(m_trackingRectInWindowCoordinates,currentRect))
1638 wxLogTrace(wxTRACE_COCOA_TrackingRect, wxT("Ignored request to rebuild TR#%d"), m_trackingRectTag);
1642 RebuildTrackingRect();
1645 void wxCocoaTrackingRectManager::RebuildTrackingRect()
1647 ClearTrackingRect();
1648 BuildTrackingRect();
1651 wxCocoaTrackingRectManager::~wxCocoaTrackingRectManager()
1653 ClearTrackingRect();
1656 bool wxCocoaTrackingRectManager::IsOwnerOfEvent(NSEvent *anEvent)
1658 return m_isTrackingRectActive && (m_trackingRectTag == [anEvent trackingNumber]);