1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/cocoa/nonownedwnd.mm
3 // Purpose: non owned window for cocoa
4 // Author: DavidStefan Csomor
7 // RCS-ID: $Id: nonownedwnd.mm 48805 2007-09-19 14:52:25Z SC $
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/nonownedwnd.h"
18 #include "wx/osx/private.h"
20 NSRect wxToNSRect( NSView* parent, const wxRect& r )
22 NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
25 if ( parent == NULL || ![ parent isFlipped ] )
26 y = (int)(frame.size.height - ( r.y + r.height ));
27 return NSMakeRect(x, y, r.width , r.height);
30 wxRect wxFromNSRect( NSView* parent, const NSRect& rect )
32 NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
33 int y = (int)rect.origin.y;
34 int x = (int)rect.origin.x;
35 if ( parent == NULL || ![ parent isFlipped ] )
36 y = (int)(frame.size.height - (rect.origin.y + rect.size.height));
37 return wxRect( x, y, (int)rect.size.width, (int)rect.size.height );
40 NSPoint wxToNSPoint( NSView* parent, const wxPoint& p )
42 NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
45 if ( parent == NULL || ![ parent isFlipped ] )
46 y = (int)(frame.size.height - ( p.y ));
47 return NSMakePoint(x, y);
50 wxPoint wxFromNSPoint( NSView* parent, const NSPoint& p )
52 NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
55 if ( parent == NULL || ![ parent isFlipped ] )
56 y = (int)(frame.size.height - ( p.y ));
57 return wxPoint( x, y);
60 bool shouldHandleSelector(SEL selector)
62 if (selector == @selector(noop:)
63 || selector == @selector(complete:)
64 || selector == @selector(deleteBackward:)
65 || selector == @selector(deleteForward:)
66 || selector == @selector(insertNewline:)
67 || selector == @selector(insertTab:)
68 || selector == @selector(keyDown:)
69 || selector == @selector(keyUp:)
70 || selector == @selector(scrollPageUp:)
71 || selector == @selector(scrollPageDown:)
72 || selector == @selector(scrollToBeginningOfDocument:)
73 || selector == @selector(scrollToEndOfDocument:))
81 // wx native implementation classes
84 typedef void (*wxOSX_NoResponderHandlerPtr)(NSView* self, SEL _cmd, SEL selector);
86 @interface wxNSWindow : NSWindow
88 wxNonOwnedWindowCocoaImpl* impl;
91 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen;
92 - (void)setImplementation: (wxNonOwnedWindowCocoaImpl *) theImplementation;
93 - (wxNonOwnedWindowCocoaImpl*) implementation;
94 - (void)noResponderFor: (SEL) selector;
97 @implementation wxNSWindow
99 // The default implementation always moves the window back onto the screen,
100 // even when the programmer explicitly wants to hide it.
101 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
107 - (void)setImplementation: (wxNonOwnedWindowCocoaImpl *) theImplementation
109 impl = theImplementation;
112 - (wxNonOwnedWindowCocoaImpl*) implementation
117 - (void)doCommandBySelector:(SEL)selector
119 if (shouldHandleSelector(selector) &&
120 !(selector == @selector(cancel:) || selector == @selector(cancelOperation:)) )
121 [super doCommandBySelector:selector];
125 // NB: if we don't do this, all key downs that get handled lead to a NSBeep
126 - (void)noResponderFor: (SEL) selector
128 if (selector != @selector(keyDown:) && selector != @selector(keyUp:))
130 [super noResponderFor:selector];
131 // wxOSX_NoResponderHandlerPtr superimpl = (wxOSX_NoResponderHandlerPtr) [[self superclass] instanceMethodForSelector:@selector(noResponderFor:)];
132 // superimpl(self, @selector(noResponderFor:), selector);
136 // We need this for borderless windows, i.e. shaped windows or windows without
137 // a title bar. For more info, see:
138 // http://lists.apple.com/archives/cocoa-dev/2008/May/msg02091.html
139 - (BOOL)canBecomeKeyWindow
146 @interface wxNSPanel : NSPanel
149 wxNonOwnedWindowCocoaImpl* impl;
152 - (void)setImplementation: (wxNonOwnedWindowCocoaImpl *) theImplementation;
153 - (wxNonOwnedWindowCocoaImpl*) implementation;
154 - (void)noResponderFor: (SEL) selector;
157 @implementation wxNSPanel
159 - (void)setImplementation: (wxNonOwnedWindowCocoaImpl *) theImplementation
161 impl = theImplementation;
164 - (BOOL)canBecomeKeyWindow
169 - (wxNonOwnedWindowCocoaImpl*) implementation
174 - (void)doCommandBySelector:(SEL)selector
176 if (shouldHandleSelector(selector))
177 [super doCommandBySelector:selector];
180 // NB: if we don't do this, it seems that all events that end here lead to a NSBeep
181 - (void)noResponderFor: (SEL) selector
183 if (selector != @selector(keyDown:) && selector != @selector(keyUp:))
185 [super noResponderFor:selector];
186 // wxOSX_NoResponderHandlerPtr superimpl = (wxOSX_NoResponderHandlerPtr) [[self superclass] instanceMethodForSelector:@selector(noResponderFor:)];
187 // superimpl(self, @selector(noResponderFor:), selector);
198 @interface wxNonOwnedWindowController : NSObject wxOSX_10_6_AND_LATER(<NSWindowDelegate>)
202 - (void)windowDidResize:(NSNotification *)notification;
203 - (NSSize)windowWillResize:(NSWindow *)window toSize:(NSSize)proposedFrameSize;
204 - (void)windowDidResignKey:(NSNotification *)notification;
205 - (void)windowDidBecomeKey:(NSNotification *)notification;
206 - (void)windowDidMove:(NSNotification *)notification;
207 - (BOOL)windowShouldClose:(id)window;
208 - (BOOL)windowShouldZoom:(NSWindow *)window toFrame:(NSRect)newFrame;
212 @implementation wxNonOwnedWindowController
220 - (BOOL)windowShouldClose:(id)nwindow
222 wxNSWindow* window = (wxNSWindow*) nwindow;
223 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
226 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
233 - (NSSize)windowWillResize:(NSWindow *)win
234 toSize:(NSSize)proposedFrameSize
236 NSRect frame = [win frame];
237 wxRect wxframe = wxFromNSRect( NULL, frame );
238 wxframe.SetWidth( (int)proposedFrameSize.width );
239 wxframe.SetHeight( (int)proposedFrameSize.height );
240 wxNSWindow* window = (wxNSWindow*) win;
241 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
244 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
247 wxpeer->HandleResizing( 0, &wxframe );
248 NSSize newSize = NSMakeSize(wxframe.GetWidth(), wxframe.GetHeight());
253 return proposedFrameSize;
256 - (void)windowDidResize:(NSNotification *)notification
258 wxNSWindow* window = (wxNSWindow*) [notification object];
259 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
262 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
264 wxpeer->HandleResized(0);
268 - (void)windowDidMove:(NSNotification *)notification
270 wxNSWindow* window = (wxNSWindow*) [notification object];
271 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
274 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
276 wxpeer->HandleMoved(0);
280 - (void)windowDidBecomeKey:(NSNotification *)notification
282 wxNSWindow* window = (wxNSWindow*) [notification object];
283 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
286 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
288 wxpeer->HandleActivated(0, true);
292 - (void)windowDidResignKey:(NSNotification *)notification
294 wxNSWindow* window = (wxNSWindow*) [notification object];
295 wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
298 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
301 wxpeer->HandleActivated(0, false);
302 // Needed for popup window since the firstResponder
303 // (focus in wx) doesn't change when this
304 // TLW becomes inactive.
305 wxFocusEvent event( wxEVT_KILL_FOCUS, wxpeer->GetId());
306 event.SetEventObject(wxpeer);
307 wxpeer->HandleWindowEvent(event);
312 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject
316 if ([anObject isKindOfClass:[wxNSTextField class]])
318 wxNSTextField* tf = (wxNSTextField*) anObject;
319 wxNSTextFieldEditor* editor = [tf fieldEditor];
322 editor = [[wxNSTextFieldEditor alloc] init];
323 [editor setFieldEditor:YES];
324 [tf setFieldEditor:editor];
332 - (BOOL)windowShouldZoom:(NSWindow *)window toFrame:(NSRect)newFrame
334 wxNonOwnedWindowCocoaImpl* windowimpl = [(wxNSWindow*)window implementation];
337 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
338 wxMaximizeEvent event(wxpeer->GetId());
339 event.SetEventObject(wxpeer);
340 return !wxpeer->HandleWindowEvent(event);
347 IMPLEMENT_DYNAMIC_CLASS( wxNonOwnedWindowCocoaImpl , wxNonOwnedWindowImpl )
349 wxNonOwnedWindowCocoaImpl::wxNonOwnedWindowCocoaImpl( wxNonOwnedWindow* nonownedwnd) :
350 wxNonOwnedWindowImpl(nonownedwnd)
353 m_macFullScreenData = NULL;
356 wxNonOwnedWindowCocoaImpl::wxNonOwnedWindowCocoaImpl()
359 m_macFullScreenData = NULL;
362 wxNonOwnedWindowCocoaImpl::~wxNonOwnedWindowCocoaImpl()
364 [m_macWindow setImplementation:nil];
365 [m_macWindow setDelegate:nil];
366 [m_macWindow release];
369 void wxNonOwnedWindowCocoaImpl::WillBeDestroyed()
371 [m_macWindow setDelegate:nil];
374 void wxNonOwnedWindowCocoaImpl::Create( wxWindow* WXUNUSED(parent), const wxPoint& pos, const wxSize& size,
375 long style, long extraStyle, const wxString& WXUNUSED(name) )
377 static wxNonOwnedWindowController* controller = NULL;
380 controller =[[wxNonOwnedWindowController alloc] init];
383 int windowstyle = NSBorderlessWindowMask;
385 if ( style & wxFRAME_TOOL_WINDOW || ( style & wxPOPUP_WINDOW ) ||
386 GetWXPeer()->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG )
388 m_macWindow = [wxNSPanel alloc];
391 m_macWindow = [wxNSWindow alloc];
393 CGWindowLevel level = kCGNormalWindowLevel;
395 if ( style & wxFRAME_TOOL_WINDOW )
397 windowstyle |= NSUtilityWindowMask;
398 if ( ( style & wxMINIMIZE_BOX ) || ( style & wxMAXIMIZE_BOX ) ||
399 ( style & wxCLOSE_BOX ) || ( style & wxSYSTEM_MENU ) )
401 windowstyle |= NSTitledWindowMask ;
404 else if ( ( style & wxPOPUP_WINDOW ) )
406 level = kCGPopUpMenuWindowLevel;
408 if ( ( style & wxBORDER_NONE ) )
410 wclass = kHelpWindowClass ; // has no border
411 attr |= kWindowNoShadowAttribute;
415 wclass = kPlainWindowClass ; // has a single line border, it will have to do for now
419 else if ( ( style & wxCAPTION ) )
421 windowstyle |= NSTitledWindowMask ;
423 else if ( ( style & wxFRAME_DRAWER ) )
426 wclass = kDrawerWindowClass;
431 // set these even if we have no title, otherwise the controls won't be visible
432 if ( ( style & wxMINIMIZE_BOX ) || ( style & wxMAXIMIZE_BOX ) ||
433 ( style & wxCLOSE_BOX ) || ( style & wxSYSTEM_MENU ) )
435 windowstyle |= NSTitledWindowMask ;
438 else if ( ( style & wxNO_BORDER ) )
440 wclass = kSimpleWindowClass ;
444 wclass = kPlainWindowClass ;
449 if ( windowstyle & NSTitledWindowMask )
451 if ( ( style & wxMINIMIZE_BOX ) )
452 windowstyle |= NSMiniaturizableWindowMask ;
454 if ( ( style & wxMAXIMIZE_BOX ) )
455 windowstyle |= NSResizableWindowMask ; // TODO showing ZOOM ?
457 if ( ( style & wxRESIZE_BORDER ) )
458 windowstyle |= NSResizableWindowMask ;
460 if ( ( style & wxCLOSE_BOX) )
461 windowstyle |= NSClosableWindowMask ;
463 if ( extraStyle & wxFRAME_EX_METAL)
464 windowstyle |= NSTexturedBackgroundWindowMask;
466 if ( ( style & wxFRAME_FLOAT_ON_PARENT ) || ( style & wxFRAME_TOOL_WINDOW ) )
467 level = kCGFloatingWindowLevel;
469 if ( ( style & wxSTAY_ON_TOP ) )
470 level = kCGUtilityWindowLevel;
472 NSRect r = wxToNSRect( NULL, wxRect( pos, size) );
474 [m_macWindow setImplementation:this];
475 r = [NSWindow contentRectForFrameRect:r styleMask:windowstyle];
477 [m_macWindow initWithContentRect:r
478 styleMask:windowstyle
479 backing:NSBackingStoreBuffered
483 [m_macWindow setLevel:level];
485 [m_macWindow setDelegate:controller];
487 [m_macWindow setAcceptsMouseMovedEvents: YES];
491 WXWindow wxNonOwnedWindowCocoaImpl::GetWXWindow() const
496 void wxNonOwnedWindowCocoaImpl::Raise()
498 [m_macWindow orderWindow:NSWindowAbove relativeTo:0];
501 void wxNonOwnedWindowCocoaImpl::Lower()
503 [m_macWindow orderWindow:NSWindowBelow relativeTo:0];
506 void wxNonOwnedWindowCocoaImpl::ShowWithoutActivating()
508 [m_macWindow orderFront:nil];
509 [[m_macWindow contentView] setNeedsDisplay: YES];
512 bool wxNonOwnedWindowCocoaImpl::Show(bool show)
516 wxNonOwnedWindow* wxpeer = GetWXPeer();
517 if (wxpeer && !(wxpeer->GetWindowStyle() & wxFRAME_TOOL_WINDOW))
518 [m_macWindow makeKeyAndOrderFront:nil];
520 [m_macWindow orderFront:nil];
521 [[m_macWindow contentView] setNeedsDisplay: YES];
524 [m_macWindow orderOut:nil];
528 bool wxNonOwnedWindowCocoaImpl::ShowWithEffect(bool show,
532 return wxWidgetCocoaImpl::
533 ShowViewOrWindowWithEffect(m_wxPeer, show, effect, timeout);
536 void wxNonOwnedWindowCocoaImpl::Update()
538 [m_macWindow displayIfNeeded];
541 bool wxNonOwnedWindowCocoaImpl::SetTransparent(wxByte alpha)
543 [m_macWindow setAlphaValue:(CGFloat) alpha/255.0];
547 bool wxNonOwnedWindowCocoaImpl::SetBackgroundColour(const wxColour& WXUNUSED(col) )
552 void wxNonOwnedWindowCocoaImpl::SetExtraStyle( long exStyle )
556 bool metal = exStyle & wxFRAME_EX_METAL ;
557 int windowStyle = [ m_macWindow styleMask];
558 if ( metal && !(windowStyle & NSTexturedBackgroundWindowMask) )
560 wxFAIL_MSG( wxT("Metal Style cannot be changed after creation") );
562 else if ( !metal && (windowStyle & NSTexturedBackgroundWindowMask ) )
564 wxFAIL_MSG( wxT("Metal Style cannot be changed after creation") );
569 void wxNonOwnedWindowCocoaImpl::SetWindowStyleFlag( long style )
573 CGWindowLevel level = kCGNormalWindowLevel;
575 if (style & wxSTAY_ON_TOP)
576 level = kCGUtilityWindowLevel;
577 else if (( style & wxFRAME_FLOAT_ON_PARENT ) || ( style & wxFRAME_TOOL_WINDOW ))
578 level = kCGFloatingWindowLevel;
580 [m_macWindow setLevel: level];
584 bool wxNonOwnedWindowCocoaImpl::SetBackgroundStyle(wxBackgroundStyle style)
586 if ( style == wxBG_STYLE_TRANSPARENT )
588 [m_macWindow setOpaque:NO];
589 [m_macWindow setBackgroundColor:[NSColor clearColor]];
595 bool wxNonOwnedWindowCocoaImpl::CanSetTransparent()
600 void wxNonOwnedWindowCocoaImpl::MoveWindow(int x, int y, int width, int height)
602 NSRect r = wxToNSRect( NULL, wxRect(x,y,width, height) );
603 // do not trigger refreshes upon invisible and possible partly created objects
604 [m_macWindow setFrame:r display:GetWXPeer()->IsShownOnScreen()];
607 void wxNonOwnedWindowCocoaImpl::GetPosition( int &x, int &y ) const
609 wxRect r = wxFromNSRect( NULL, [m_macWindow frame] );
614 void wxNonOwnedWindowCocoaImpl::GetSize( int &width, int &height ) const
616 NSRect rect = [m_macWindow frame];
617 width = (int)rect.size.width;
618 height = (int)rect.size.height;
621 void wxNonOwnedWindowCocoaImpl::GetContentArea( int& left, int &top, int &width, int &height ) const
623 NSRect outer = NSMakeRect(100,100,100,100);
624 NSRect content = [NSWindow contentRectForFrameRect:outer styleMask:[m_macWindow styleMask] ];
625 NSRect rect = [[m_macWindow contentView] frame];
626 left = (int)rect.origin.x;
627 top = (int)rect.origin.y;
628 width = (int)rect.size.width;
629 height = (int)rect.size.height;
632 bool wxNonOwnedWindowCocoaImpl::SetShape(const wxRegion& WXUNUSED(region))
634 [m_macWindow setOpaque:NO];
635 [m_macWindow setBackgroundColor:[NSColor clearColor]];
640 void wxNonOwnedWindowCocoaImpl::SetTitle( const wxString& title, wxFontEncoding encoding )
642 [m_macWindow setTitle:wxCFStringRef( title , encoding ).AsNSString()];
645 bool wxNonOwnedWindowCocoaImpl::IsMaximized() const
647 if (([m_macWindow styleMask] & NSResizableWindowMask) != 0)
649 return [m_macWindow isZoomed];
653 NSRect rectScreen = [[NSScreen mainScreen] visibleFrame];
654 NSRect rectWindow = [m_macWindow frame];
655 return (rectScreen.origin.x == rectWindow.origin.x &&
656 rectScreen.origin.y == rectWindow.origin.y &&
657 rectScreen.size.width == rectWindow.size.width &&
658 rectScreen.size.height == rectWindow.size.height);
662 bool wxNonOwnedWindowCocoaImpl::IsIconized() const
664 return [m_macWindow isMiniaturized];
667 void wxNonOwnedWindowCocoaImpl::Iconize( bool iconize )
670 [m_macWindow miniaturize:nil];
672 [m_macWindow deminiaturize:nil];
675 void wxNonOwnedWindowCocoaImpl::Maximize(bool WXUNUSED(maximize))
677 [m_macWindow zoom:nil];
681 // http://cocoadevcentral.com/articles/000028.php
686 NSRect m_formerFrame;
689 bool wxNonOwnedWindowCocoaImpl::IsFullScreen() const
691 return m_macFullScreenData != NULL ;
694 bool wxNonOwnedWindowCocoaImpl::ShowFullScreen(bool show, long WXUNUSED(style))
698 FullScreenData *data = (FullScreenData *)m_macFullScreenData ;
700 data = new FullScreenData();
702 m_macFullScreenData = data ;
703 data->m_formerLevel = [m_macWindow level];
704 data->m_formerFrame = [m_macWindow frame];
705 CGDisplayCapture( kCGDirectMainDisplay );
706 [m_macWindow setLevel:CGShieldingWindowLevel()];
707 [m_macWindow setFrame:[[NSScreen mainScreen] frame] display:YES];
709 else if ( m_macFullScreenData != NULL )
711 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
712 CGDisplayRelease( kCGDirectMainDisplay );
713 [m_macWindow setLevel:data->m_formerLevel];
714 [m_macWindow setFrame:data->m_formerFrame display:YES];
716 m_macFullScreenData = NULL ;
722 void wxNonOwnedWindowCocoaImpl::RequestUserAttention(int flagsWX)
724 NSRequestUserAttentionType flagsOSX;
727 case wxUSER_ATTENTION_INFO:
728 flagsOSX = NSInformationalRequest;
731 case wxUSER_ATTENTION_ERROR:
732 flagsOSX = NSCriticalRequest;
736 wxFAIL_MSG( "invalid RequestUserAttention() flags" );
740 [NSApp requestUserAttention:flagsOSX];
743 void wxNonOwnedWindowCocoaImpl::ScreenToWindow( int *x, int *y )
745 wxPoint p((x ? *x : 0), (y ? *y : 0) );
746 NSPoint nspt = wxToNSPoint( NULL, p );
747 nspt = [m_macWindow convertScreenToBase:nspt];
748 nspt = [[m_macWindow contentView] convertPoint:nspt fromView:nil];
749 p = wxFromNSPoint([m_macWindow contentView], nspt);
756 void wxNonOwnedWindowCocoaImpl::WindowToScreen( int *x, int *y )
758 wxPoint p((x ? *x : 0), (y ? *y : 0) );
759 NSPoint nspt = wxToNSPoint( [m_macWindow contentView], p );
760 nspt = [[m_macWindow contentView] convertPoint:nspt toView:nil];
761 nspt = [m_macWindow convertBaseToScreen:nspt];
762 p = wxFromNSPoint( NULL, nspt);
769 bool wxNonOwnedWindowCocoaImpl::IsActive()
771 return [m_macWindow isKeyWindow];
774 void wxNonOwnedWindowCocoaImpl::SetModified(bool modified)
776 [m_macWindow setDocumentEdited:modified];
779 bool wxNonOwnedWindowCocoaImpl::IsModified() const
781 return [m_macWindow isDocumentEdited];
784 wxNonOwnedWindowImpl* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, const wxPoint& pos, const wxSize& size,
785 long style, long extraStyle, const wxString& name )
787 wxNonOwnedWindowImpl* now = new wxNonOwnedWindowCocoaImpl( wxpeer );
788 now->Create( parent, pos, size, style , extraStyle, name );