1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/cocoa/nonownedwnd.mm
3 // Purpose: non owned window for cocoa
4 // Author: DavidStefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
14 #include "wx/nonownedwnd.h"
17 #include "wx/dialog.h"
18 #include "wx/menuitem.h"
22 #include "wx/osx/private.h"
24 NSScreen* wxOSXGetMenuScreen()
26 if ( [NSScreen screens] == nil )
27 return [NSScreen mainScreen];
30 return [[NSScreen screens] objectAtIndex:0];
34 NSRect wxToNSRect( NSView* parent, const wxRect& r )
36 NSRect frame = parent ? [parent bounds] : [wxOSXGetMenuScreen() frame];
39 if ( parent == NULL || ![ parent isFlipped ] )
40 y = (int)(frame.size.height - ( r.y + r.height ));
41 return NSMakeRect(x, y, r.width , r.height);
44 wxRect wxFromNSRect( NSView* parent, const NSRect& rect )
46 NSRect frame = parent ? [parent bounds] : [wxOSXGetMenuScreen() frame];
47 int y = (int)rect.origin.y;
48 int x = (int)rect.origin.x;
49 if ( parent == NULL || ![ parent isFlipped ] )
50 y = (int)(frame.size.height - (rect.origin.y + rect.size.height));
51 return wxRect( x, y, (int)rect.size.width, (int)rect.size.height );
54 NSPoint wxToNSPoint( NSView* parent, const wxPoint& p )
56 NSRect frame = parent ? [parent bounds] : [wxOSXGetMenuScreen() frame];
59 if ( parent == NULL || ![ parent isFlipped ] )
60 y = (int)(frame.size.height - ( p.y ));
61 return NSMakePoint(x, y);
64 wxPoint wxFromNSPoint( NSView* parent, const NSPoint& p )
66 NSRect frame = parent ? [parent bounds] : [wxOSXGetMenuScreen() frame];
69 if ( parent == NULL || ![ parent isFlipped ] )
70 y = (int)(frame.size.height - ( p.y ));
71 return wxPoint( x, y);
74 bool shouldHandleSelector(SEL selector)
76 if (selector == @selector(noop:)
77 || selector == @selector(complete:)
78 || selector == @selector(deleteBackward:)
79 || selector == @selector(deleteForward:)
80 || selector == @selector(insertNewline:)
81 || selector == @selector(insertTab:)
82 || selector == @selector(insertBacktab:)
83 || selector == @selector(keyDown:)
84 || selector == @selector(keyUp:)
85 || selector == @selector(scrollPageUp:)
86 || selector == @selector(scrollPageDown:)
87 || selector == @selector(scrollToBeginningOfDocument:)
88 || selector == @selector(scrollToEndOfDocument:))
96 // wx category for NSWindow (our own and wrapped instances)
99 @interface NSWindow (wxNSWindowSupport)
101 - (wxNonOwnedWindowCocoaImpl*) WX_implementation;
103 - (bool) WX_filterSendEvent:(NSEvent *) event;
107 @implementation NSWindow (wxNSWindowSupport)
109 - (wxNonOwnedWindowCocoaImpl*) WX_implementation
111 return (wxNonOwnedWindowCocoaImpl*) wxNonOwnedWindowImpl::FindFromWXWindow( self );
114 // TODO in cocoa everything during a drag is sent to the NSWindow the mouse down occured,
115 // this does not conform to the wx behaviour if the window is not captured, so try to resend
116 // or capture all wx mouse event handling at the tlw as we did for carbon
118 - (bool) WX_filterSendEvent:(NSEvent *) event
120 bool handled = false;
121 if ( ([event type] >= NSLeftMouseDown) && ([event type] <= NSMouseExited) )
123 wxWindow* cw = wxWindow::GetCapture();
126 ((wxWidgetCocoaImpl*)cw->GetPeer())->DoHandleMouseEvent( event);
135 // wx native implementation
138 @interface wxNSWindow : NSWindow
142 - (void) sendEvent:(NSEvent *)event;
143 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen;
144 - (void)noResponderFor: (SEL) selector;
147 @implementation wxNSWindow
149 - (void)sendEvent:(NSEvent *) event
151 if ( ![self WX_filterSendEvent: event] )
153 WXEVENTREF formerEvent = wxTheApp == NULL ? NULL : wxTheApp->MacGetCurrentEvent();
154 WXEVENTHANDLERCALLREF formerHandler = wxTheApp == NULL ? NULL : wxTheApp->MacGetCurrentEventHandlerCallRef();
157 wxTheApp->MacSetCurrentEvent(event, NULL);
159 [super sendEvent: event];
162 wxTheApp->MacSetCurrentEvent(formerEvent , formerHandler);
166 // The default implementation always moves the window back onto the screen,
167 // even when the programmer explicitly wants to hide it.
168 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
174 - (void)doCommandBySelector:(SEL)selector
176 if (shouldHandleSelector(selector) &&
177 !(selector == @selector(cancel:) || selector == @selector(cancelOperation:)) )
178 [super doCommandBySelector:selector];
182 // NB: if we don't do this, all key downs that get handled lead to a NSBeep
183 - (void)noResponderFor: (SEL) selector
185 if (selector != @selector(keyDown:) && selector != @selector(keyUp:))
187 [super noResponderFor:selector];
191 // We need this for borderless windows, i.e. shaped windows or windows without
192 // a title bar. For more info, see:
193 // http://lists.apple.com/archives/cocoa-dev/2008/May/msg02091.html
194 - (BOOL)canBecomeKeyWindow
201 @interface wxNSPanel : NSPanel
205 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen;
206 - (void)noResponderFor: (SEL) selector;
207 - (void)sendEvent:(NSEvent *)event;
210 @implementation wxNSPanel
212 - (NSRect)constrainFrameRect:(NSRect)frameRect toScreen:(NSScreen *)screen
214 wxNonOwnedWindowCocoaImpl* impl = (wxNonOwnedWindowCocoaImpl*) wxNonOwnedWindowImpl::FindFromWXWindow( self );
215 if (impl && impl->IsFullScreen())
218 return [super constrainFrameRect:frameRect toScreen:screen];
221 - (BOOL)canBecomeKeyWindow
226 - (void)doCommandBySelector:(SEL)selector
228 if (shouldHandleSelector(selector))
229 [super doCommandBySelector:selector];
232 // NB: if we don't do this, it seems that all events that end here lead to a NSBeep
233 - (void)noResponderFor: (SEL) selector
235 if (selector != @selector(keyDown:) && selector != @selector(keyUp:))
237 [super noResponderFor:selector];
241 - (void)sendEvent:(NSEvent *) event
243 if ( ![self WX_filterSendEvent: event] )
244 [super sendEvent: event];
254 @interface wxNonOwnedWindowController : NSObject wxOSX_10_6_AND_LATER(<NSWindowDelegate>)
258 - (void)windowDidResize:(NSNotification *)notification;
259 - (NSSize)windowWillResize:(NSWindow *)window toSize:(NSSize)proposedFrameSize;
260 - (void)windowDidResignKey:(NSNotification *)notification;
261 - (void)windowDidBecomeKey:(NSNotification *)notification;
262 - (void)windowDidMove:(NSNotification *)notification;
263 - (BOOL)windowShouldClose:(id)window;
264 - (BOOL)windowShouldZoom:(NSWindow *)window toFrame:(NSRect)newFrame;
268 extern int wxOSXGetIdFromSelector(SEL action );
270 @implementation wxNonOwnedWindowController
278 - (BOOL) triggerMenu:(SEL) action
280 wxMenuBar* mbar = wxMenuBar::MacGetInstalledMenuBar();
284 wxMenuItem* menuitem = mbar->FindItem(wxOSXGetIdFromSelector(action), &menu);
285 if ( menu != NULL && menuitem != NULL)
286 return menu->HandleCommandProcess(menuitem);
291 - (BOOL)validateMenuItem:(NSMenuItem *)menuItem
293 SEL action = [menuItem action];
295 wxMenuBar* mbar = wxMenuBar::MacGetInstalledMenuBar();
299 wxMenuItem* menuitem = mbar->FindItem(wxOSXGetIdFromSelector(action), &menu);
300 if ( menu != NULL && menuitem != NULL)
302 menu->HandleCommandUpdateStatus(menuitem);
303 return menuitem->IsEnabled();
309 - (void)undo:(id)sender
312 [self triggerMenu:_cmd];
315 - (void)redo:(id)sender
318 [self triggerMenu:_cmd];
321 - (void)cut:(id)sender
324 [self triggerMenu:_cmd];
327 - (void)copy:(id)sender
330 [self triggerMenu:_cmd];
333 - (void)paste:(id)sender
336 [self triggerMenu:_cmd];
339 - (void)delete:(id)sender
342 [self triggerMenu:_cmd];
345 - (void)selectAll:(id)sender
348 [self triggerMenu:_cmd];
351 - (BOOL)windowShouldClose:(id)nwindow
353 wxNonOwnedWindowCocoaImpl* windowimpl = [(NSWindow*) nwindow WX_implementation];
356 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
363 - (NSSize)windowWillResize:(NSWindow *)window
364 toSize:(NSSize)proposedFrameSize
366 NSRect frame = [window frame];
367 wxRect wxframe = wxFromNSRect( NULL, frame );
368 wxframe.SetWidth( (int)proposedFrameSize.width );
369 wxframe.SetHeight( (int)proposedFrameSize.height );
371 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
374 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
377 wxpeer->HandleResizing( 0, &wxframe );
378 NSSize newSize = NSMakeSize(wxframe.GetWidth(), wxframe.GetHeight());
383 return proposedFrameSize;
386 - (void)windowDidResize:(NSNotification *)notification
388 NSWindow* window = (NSWindow*) [notification object];
389 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
392 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
394 wxpeer->HandleResized(0);
398 - (void)windowDidMove:(NSNotification *)notification
400 wxNSWindow* window = (wxNSWindow*) [notification object];
401 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
404 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
406 wxpeer->HandleMoved(0);
410 - (void)windowDidBecomeKey:(NSNotification *)notification
412 NSWindow* window = (NSWindow*) [notification object];
413 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
416 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
418 wxpeer->HandleActivated(0, true);
422 - (void)windowDidResignKey:(NSNotification *)notification
424 NSWindow* window = (NSWindow*) [notification object];
425 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
428 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
431 wxpeer->HandleActivated(0, false);
432 // Needed for popup window since the firstResponder
433 // (focus in wx) doesn't change when this
434 // TLW becomes inactive.
435 wxFocusEvent event( wxEVT_KILL_FOCUS, wxpeer->GetId());
436 event.SetEventObject(wxpeer);
437 wxpeer->HandleWindowEvent(event);
442 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject
446 if ([anObject isKindOfClass:[wxNSTextField class]])
448 wxNSTextField* tf = (wxNSTextField*) anObject;
449 wxNSTextFieldEditor* editor = [tf fieldEditor];
452 editor = [[wxNSTextFieldEditor alloc] init];
453 [editor setFieldEditor:YES];
454 [tf setFieldEditor:editor];
463 - (BOOL)windowShouldZoom:(NSWindow *)window toFrame:(NSRect)newFrame
465 wxUnusedVar(newFrame);
466 wxNonOwnedWindowCocoaImpl* windowimpl = [window WX_implementation];
469 wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
470 wxMaximizeEvent event(wxpeer->GetId());
471 event.SetEventObject(wxpeer);
472 return !wxpeer->HandleWindowEvent(event);
479 IMPLEMENT_DYNAMIC_CLASS( wxNonOwnedWindowCocoaImpl , wxNonOwnedWindowImpl )
481 wxNonOwnedWindowCocoaImpl::wxNonOwnedWindowCocoaImpl( wxNonOwnedWindow* nonownedwnd) :
482 wxNonOwnedWindowImpl(nonownedwnd)
485 m_macFullScreenData = NULL;
488 wxNonOwnedWindowCocoaImpl::wxNonOwnedWindowCocoaImpl()
491 m_macFullScreenData = NULL;
494 wxNonOwnedWindowCocoaImpl::~wxNonOwnedWindowCocoaImpl()
496 if ( !m_wxPeer->IsNativeWindowWrapper() )
498 [m_macWindow setDelegate:nil];
499 [m_macWindow release];
503 void wxNonOwnedWindowCocoaImpl::WillBeDestroyed()
505 if ( !m_wxPeer->IsNativeWindowWrapper() )
507 [m_macWindow setDelegate:nil];
511 void wxNonOwnedWindowCocoaImpl::Create( wxWindow* parent, const wxPoint& pos, const wxSize& size,
512 long style, long extraStyle, const wxString& WXUNUSED(name) )
514 static wxNonOwnedWindowController* controller = NULL;
517 controller =[[wxNonOwnedWindowController alloc] init];
520 int windowstyle = NSBorderlessWindowMask;
522 if ( style & wxFRAME_TOOL_WINDOW || ( style & wxPOPUP_WINDOW ) ||
523 GetWXPeer()->GetExtraStyle() & wxTOPLEVEL_EX_DIALOG )
525 m_macWindow = [wxNSPanel alloc];
528 m_macWindow = [wxNSWindow alloc];
530 CGWindowLevel level = kCGNormalWindowLevel;
532 if ( style & wxFRAME_TOOL_WINDOW )
534 windowstyle |= NSUtilityWindowMask;
536 else if ( ( style & wxPOPUP_WINDOW ) )
538 level = kCGPopUpMenuWindowLevel;
540 else if ( ( style & wxFRAME_DRAWER ) )
543 wclass = kDrawerWindowClass;
547 if ( ( style & wxMINIMIZE_BOX ) || ( style & wxMAXIMIZE_BOX ) ||
548 ( style & wxCLOSE_BOX ) || ( style & wxSYSTEM_MENU ) || ( style & wxCAPTION ) )
550 windowstyle |= NSTitledWindowMask ;
551 if ( ( style & wxMINIMIZE_BOX ) )
552 windowstyle |= NSMiniaturizableWindowMask ;
554 if ( ( style & wxMAXIMIZE_BOX ) )
555 windowstyle |= NSResizableWindowMask ;
557 if ( ( style & wxCLOSE_BOX) )
558 windowstyle |= NSClosableWindowMask ;
561 if ( ( style & wxRESIZE_BORDER ) )
562 windowstyle |= NSResizableWindowMask ;
564 if ( extraStyle & wxFRAME_EX_METAL)
565 windowstyle |= NSTexturedBackgroundWindowMask;
567 if ( ( style & wxFRAME_FLOAT_ON_PARENT ) || ( style & wxFRAME_TOOL_WINDOW ) )
568 level = kCGFloatingWindowLevel;
570 if ( ( style & wxSTAY_ON_TOP ) )
571 level = kCGUtilityWindowLevel;
573 NSRect r = wxToNSRect( NULL, wxRect( pos, size) );
575 r = [NSWindow contentRectForFrameRect:r styleMask:windowstyle];
577 [m_macWindow initWithContentRect:r
578 styleMask:windowstyle
579 backing:NSBackingStoreBuffered
583 // if we just have a title bar with no buttons needed, hide them
584 if ( (windowstyle & NSTitledWindowMask) &&
585 !(style & wxCLOSE_BOX) && !(style & wxMAXIMIZE_BOX) && !(style & wxMINIMIZE_BOX) )
587 [[m_macWindow standardWindowButton:NSWindowZoomButton] setHidden:YES];
588 [[m_macWindow standardWindowButton:NSWindowCloseButton] setHidden:YES];
589 [[m_macWindow standardWindowButton:NSWindowMiniaturizeButton] setHidden:YES];
592 // If the parent is modal, windows with wxFRAME_FLOAT_ON_PARENT style need
593 // to be in kCGUtilityWindowLevel and not kCGFloatingWindowLevel to stay
595 wxDialog * const parentDialog = wxDynamicCast(parent, wxDialog);
596 if (parentDialog && parentDialog->IsModal())
598 if (level == kCGFloatingWindowLevel)
600 level = kCGUtilityWindowLevel;
603 // Cocoa's modal loop does not process other windows by default, but
604 // don't call this on normal window levels so nested modal dialogs will
605 // still behave modally.
606 if (level != kCGNormalWindowLevel)
608 if ([m_macWindow isKindOfClass:[NSPanel class]])
610 [(NSPanel*)m_macWindow setWorksWhenModal:YES];
615 [m_macWindow setLevel:level];
616 m_macWindowLevel = level;
618 [m_macWindow setDelegate:controller];
620 [m_macWindow setAcceptsMouseMovedEvents: YES];
622 if ( ( style & wxFRAME_SHAPED) )
624 [m_macWindow setOpaque:NO];
625 [m_macWindow setAlphaValue:1.0];
628 if ( !(style & wxFRAME_TOOL_WINDOW) )
629 [m_macWindow setHidesOnDeactivate:NO];
632 void wxNonOwnedWindowCocoaImpl::Create( wxWindow* WXUNUSED(parent), WXWindow nativeWindow )
634 m_macWindow = nativeWindow;
637 WXWindow wxNonOwnedWindowCocoaImpl::GetWXWindow() const
642 void wxNonOwnedWindowCocoaImpl::Raise()
644 [m_macWindow makeKeyAndOrderFront:nil];
647 void wxNonOwnedWindowCocoaImpl::Lower()
649 [m_macWindow orderWindow:NSWindowBelow relativeTo:0];
652 void wxNonOwnedWindowCocoaImpl::ShowWithoutActivating()
654 [m_macWindow orderFront:nil];
655 [[m_macWindow contentView] setNeedsDisplay: YES];
658 bool wxNonOwnedWindowCocoaImpl::Show(bool show)
662 wxNonOwnedWindow* wxpeer = GetWXPeer();
663 if (wxpeer && !(wxpeer->GetWindowStyle() & wxFRAME_TOOL_WINDOW))
664 [m_macWindow makeKeyAndOrderFront:nil];
666 [m_macWindow orderFront:nil];
667 [[m_macWindow contentView] setNeedsDisplay: YES];
670 [m_macWindow orderOut:nil];
674 bool wxNonOwnedWindowCocoaImpl::ShowWithEffect(bool show,
678 return wxWidgetCocoaImpl::
679 ShowViewOrWindowWithEffect(m_wxPeer, show, effect, timeout);
682 void wxNonOwnedWindowCocoaImpl::Update()
684 [m_macWindow displayIfNeeded];
687 bool wxNonOwnedWindowCocoaImpl::SetTransparent(wxByte alpha)
689 [m_macWindow setAlphaValue:(CGFloat) alpha/255.0];
693 bool wxNonOwnedWindowCocoaImpl::SetBackgroundColour(const wxColour& col )
695 [m_macWindow setBackgroundColor:[NSColor colorWithCalibratedRed:(CGFloat) (col.Red() / 255.0)
696 green:(CGFloat) (col.Green() / 255.0)
697 blue:(CGFloat) (col.Blue() / 255.0)
698 alpha:(CGFloat) (col.Alpha() / 255.0)]];
702 void wxNonOwnedWindowCocoaImpl::SetExtraStyle( long exStyle )
706 bool metal = exStyle & wxFRAME_EX_METAL ;
707 int windowStyle = [ m_macWindow styleMask];
708 if ( metal && !(windowStyle & NSTexturedBackgroundWindowMask) )
710 wxFAIL_MSG( wxT("Metal Style cannot be changed after creation") );
712 else if ( !metal && (windowStyle & NSTexturedBackgroundWindowMask ) )
714 wxFAIL_MSG( wxT("Metal Style cannot be changed after creation") );
719 void wxNonOwnedWindowCocoaImpl::SetWindowStyleFlag( long style )
723 CGWindowLevel level = kCGNormalWindowLevel;
725 if (style & wxSTAY_ON_TOP)
726 level = kCGUtilityWindowLevel;
727 else if (( style & wxFRAME_FLOAT_ON_PARENT ) || ( style & wxFRAME_TOOL_WINDOW ))
728 level = kCGFloatingWindowLevel;
730 [m_macWindow setLevel: level];
731 m_macWindowLevel = level;
735 bool wxNonOwnedWindowCocoaImpl::SetBackgroundStyle(wxBackgroundStyle style)
737 if ( style == wxBG_STYLE_TRANSPARENT )
739 [m_macWindow setOpaque:NO];
740 [m_macWindow setBackgroundColor:[NSColor clearColor]];
746 bool wxNonOwnedWindowCocoaImpl::CanSetTransparent()
751 void wxNonOwnedWindowCocoaImpl::MoveWindow(int x, int y, int width, int height)
753 NSRect r = wxToNSRect( NULL, wxRect(x,y,width, height) );
754 // do not trigger refreshes upon invisible and possible partly created objects
755 [m_macWindow setFrame:r display:GetWXPeer()->IsShownOnScreen()];
758 void wxNonOwnedWindowCocoaImpl::GetPosition( int &x, int &y ) const
760 wxRect r = wxFromNSRect( NULL, [m_macWindow frame] );
765 void wxNonOwnedWindowCocoaImpl::GetSize( int &width, int &height ) const
767 NSRect rect = [m_macWindow frame];
768 width = (int)rect.size.width;
769 height = (int)rect.size.height;
772 void wxNonOwnedWindowCocoaImpl::GetContentArea( int& left, int &top, int &width, int &height ) const
774 NSRect rect = [[m_macWindow contentView] frame];
775 left = (int)rect.origin.x;
776 top = (int)rect.origin.y;
777 width = (int)rect.size.width;
778 height = (int)rect.size.height;
781 bool wxNonOwnedWindowCocoaImpl::SetShape(const wxRegion& WXUNUSED(region))
783 [m_macWindow setOpaque:NO];
784 [m_macWindow setBackgroundColor:[NSColor clearColor]];
789 void wxNonOwnedWindowCocoaImpl::SetTitle( const wxString& title, wxFontEncoding encoding )
791 [m_macWindow setTitle:wxCFStringRef( title , encoding ).AsNSString()];
794 bool wxNonOwnedWindowCocoaImpl::IsMaximized() const
796 if (([m_macWindow styleMask] & NSResizableWindowMask) != 0)
798 return [m_macWindow isZoomed];
802 NSRect rectScreen = [[NSScreen mainScreen] visibleFrame];
803 NSRect rectWindow = [m_macWindow frame];
804 return (rectScreen.origin.x == rectWindow.origin.x &&
805 rectScreen.origin.y == rectWindow.origin.y &&
806 rectScreen.size.width == rectWindow.size.width &&
807 rectScreen.size.height == rectWindow.size.height);
811 bool wxNonOwnedWindowCocoaImpl::IsIconized() const
813 return [m_macWindow isMiniaturized];
816 void wxNonOwnedWindowCocoaImpl::Iconize( bool iconize )
819 [m_macWindow miniaturize:nil];
821 [m_macWindow deminiaturize:nil];
824 void wxNonOwnedWindowCocoaImpl::Maximize(bool WXUNUSED(maximize))
826 [m_macWindow zoom:nil];
830 // http://cocoadevcentral.com/articles/000028.php
834 NSUInteger m_formerStyleMask;
836 NSRect m_formerFrame;
839 bool wxNonOwnedWindowCocoaImpl::IsFullScreen() const
841 return m_macFullScreenData != NULL ;
844 bool wxNonOwnedWindowCocoaImpl::ShowFullScreen(bool show, long WXUNUSED(style))
848 FullScreenData *data = (FullScreenData *)m_macFullScreenData ;
850 data = new FullScreenData();
852 m_macFullScreenData = data ;
853 data->m_formerLevel = [m_macWindow level];
854 data->m_formerFrame = [m_macWindow frame];
855 data->m_formerStyleMask = [m_macWindow styleMask];
857 // CGDisplayCapture( kCGDirectMainDisplay );
858 //[m_macWindow setLevel:NSMainMenuWindowLevel+1/*CGShieldingWindowLevel()*/];
860 NSRect screenframe = [[NSScreen mainScreen] frame];
861 NSRect frame = NSMakeRect (0, 0, 100, 100);
864 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
865 if ( [ m_macWindow respondsToSelector:@selector(setStyleMask:) ] )
866 [m_macWindow setStyleMask:data->m_formerStyleMask & ~ NSResizableWindowMask];
869 contentRect = [NSWindow contentRectForFrameRect: frame
870 styleMask: [m_macWindow styleMask]];
871 screenframe.origin.y += (frame.origin.y - contentRect.origin.y);
872 screenframe.size.height += (frame.size.height - contentRect.size.height);
873 [m_macWindow setFrame:screenframe display:YES];
875 SetSystemUIMode(kUIModeAllHidden,
876 kUIOptionDisableAppleMenu
878 | kUIOptionDisableProcessSwitch
879 | kUIOptionDisableForceQuit
882 else if ( m_macFullScreenData != NULL )
884 FullScreenData *data = (FullScreenData *) m_macFullScreenData ;
886 // CGDisplayRelease( kCGDirectMainDisplay );
887 // [m_macWindow setLevel:data->m_formerLevel];
890 [m_macWindow setFrame:data->m_formerFrame display:YES];
891 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
892 if ( [ m_macWindow respondsToSelector:@selector(setStyleMask:) ] )
893 [m_macWindow setStyleMask:data->m_formerStyleMask];
896 m_macFullScreenData = NULL ;
898 SetSystemUIMode(kUIModeNormal, 0);
904 void wxNonOwnedWindowCocoaImpl::RequestUserAttention(int flagsWX)
906 NSRequestUserAttentionType flagsOSX;
909 case wxUSER_ATTENTION_INFO:
910 flagsOSX = NSInformationalRequest;
913 case wxUSER_ATTENTION_ERROR:
914 flagsOSX = NSCriticalRequest;
918 wxFAIL_MSG( "invalid RequestUserAttention() flags" );
922 [NSApp requestUserAttention:flagsOSX];
925 void wxNonOwnedWindowCocoaImpl::ScreenToWindow( int *x, int *y )
927 wxPoint p((x ? *x : 0), (y ? *y : 0) );
928 NSPoint nspt = wxToNSPoint( NULL, p );
929 nspt = [m_macWindow convertScreenToBase:nspt];
930 nspt = [[m_macWindow contentView] convertPoint:nspt fromView:nil];
931 p = wxFromNSPoint([m_macWindow contentView], nspt);
938 void wxNonOwnedWindowCocoaImpl::WindowToScreen( int *x, int *y )
940 wxPoint p((x ? *x : 0), (y ? *y : 0) );
941 NSPoint nspt = wxToNSPoint( [m_macWindow contentView], p );
942 nspt = [[m_macWindow contentView] convertPoint:nspt toView:nil];
943 nspt = [m_macWindow convertBaseToScreen:nspt];
944 p = wxFromNSPoint( NULL, nspt);
951 bool wxNonOwnedWindowCocoaImpl::IsActive()
953 return [m_macWindow isKeyWindow];
956 void wxNonOwnedWindowCocoaImpl::SetModified(bool modified)
958 [m_macWindow setDocumentEdited:modified];
961 bool wxNonOwnedWindowCocoaImpl::IsModified() const
963 return [m_macWindow isDocumentEdited];
966 void wxNonOwnedWindowCocoaImpl::SetRepresentedFilename(const wxString& filename)
968 [m_macWindow setRepresentedFilename:wxCFStringRef(filename).AsNSString()];
971 void wxNonOwnedWindowCocoaImpl::RestoreWindowLevel()
973 if ( [m_macWindow level] != m_macWindowLevel )
974 [m_macWindow setLevel:m_macWindowLevel];
981 wxNonOwnedWindowImpl* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, WXWindow nativeWindow)
983 wxNonOwnedWindowCocoaImpl* now = new wxNonOwnedWindowCocoaImpl( wxpeer );
984 now->Create( parent, nativeWindow );
988 wxNonOwnedWindowImpl* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, const wxPoint& pos, const wxSize& size,
989 long style, long extraStyle, const wxString& name )
991 wxNonOwnedWindowImpl* now = new wxNonOwnedWindowCocoaImpl( wxpeer );
992 now->Create( parent, pos, size, style , extraStyle, name );