/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
-
-#if wxOSX_USE_COCOA
-#include <Cocoa/Cocoa.h>
-#else
-#include <UIKit/UIKit.h>
+#ifndef WX_PRECOMP
+ #include "wx/nonownedwnd.h"
+ #include "wx/frame.h"
#endif
-#ifdef __WXMAC__
#include "wx/osx/private.h"
-#endif
NSRect wxToNSRect( NSView* parent, const wxRect& r )
{
NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
int y = r.y;
int x = r.x ;
- if ( parent != NULL && ![ parent isFlipped ] )
+ if ( parent == NULL || ![ parent isFlipped ] )
y = frame.size.height - ( r.y + r.height );
return NSMakeRect(x, y, r.width , r.height);
}
NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
int y = rect.origin.y;
int x = rect.origin.x;
- if ( parent != NULL && ![ parent isFlipped ] )
+ if ( parent == NULL || ![ parent isFlipped ] )
y = frame.size.height - (rect.origin.y + rect.size.height);
return wxRect( x, y, rect.size.width, rect.size.height );
}
NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
int x = p.x ;
int y = p.y;
- if ( parent != NULL && ![ parent isFlipped ] )
+ if ( parent == NULL || ![ parent isFlipped ] )
y = frame.size.height - ( p.y );
return NSMakePoint(x, y);
}
NSRect frame = parent ? [parent bounds] : [[NSScreen mainScreen] frame];
int x = p.x;
int y = p.y;
- if ( parent != NULL && ![ parent isFlipped ] )
+ if ( parent == NULL || ![ parent isFlipped ] )
y = frame.size.height - ( p.y );
return wxPoint( x, y);
}
return NO;
}
-- (NSSize)windowWillResize:(NSWindow *)window
+- (NSSize)windowWillResize:(NSWindow *)win
toSize:(NSSize)proposedFrameSize
{
- // todo
+ NSRect frame = [win frame];
+ wxRect wxframe = wxFromNSRect( NULL, frame );
+ wxframe.SetWidth( proposedFrameSize.width );
+ wxframe.SetHeight( proposedFrameSize.height );
+ wxNSWindow* window = (wxNSWindow*) win;
+ wxNonOwnedWindowCocoaImpl* windowimpl = [window implementation];
+ if ( windowimpl )
+ {
+ wxNonOwnedWindow* wxpeer = windowimpl->GetWXPeer();
+ if ( wxpeer )
+ {
+ wxpeer->HandleResizing( 0, &wxframe );
+ NSSize newSize = NSMakeSize(wxframe.GetWidth(), wxframe.GetHeight());
+ return newSize;
+ }
+ }
+
return proposedFrameSize;
}
wxNonOwnedWindowCocoaImpl::~wxNonOwnedWindowCocoaImpl()
{
+ [m_macWindow setImplementation:nil];
+ [m_macWindow setDelegate:nil];
[m_macWindow release];
}
else
m_macWindow = [wxNSWindow alloc];
- CGWindowLevel level = kCGNormalWindowLevelKey;
+ CGWindowLevel level = kCGNormalWindowLevel;
if ( style & wxFRAME_TOOL_WINDOW )
{
void wxNonOwnedWindowCocoaImpl::MoveWindow(int x, int y, int width, int height)
{
NSRect r = wxToNSRect( NULL, wxRect(x,y,width, height) );
- [m_macWindow setFrame:r display:YES];
+ // do not trigger refreshes upon invisible and possible partly created objects
+ [m_macWindow setFrame:r display:GetWXPeer()->IsShownOnScreen()];
}
void wxNonOwnedWindowCocoaImpl::GetPosition( int &x, int &y ) const
void wxNonOwnedWindowCocoaImpl::ScreenToWindow( int *x, int *y )
{
wxPoint p((x ? *x : 0), (y ? *y : 0) );
- /*
NSPoint nspt = wxToNSPoint( NULL, p );
-
- nspt = [[m_macWindow contentView] convertPoint:p toV:nil];
- p = wxFromNSPoint(
- */
+ nspt = [m_macWindow convertScreenToBase:nspt];
+ nspt = [[m_macWindow contentView] convertPoint:nspt fromView:nil];
+ p = wxFromNSPoint([m_macWindow contentView], nspt);
if ( x )
- *x = p.x;
+ *x = p.x;
if ( y )
*y = p.y;
}
void wxNonOwnedWindowCocoaImpl::WindowToScreen( int *x, int *y )
{
- wxPoint p( (x ? *x : 0), (y ? *y : 0) );
- /*
- p = [m_macWindow convertPoint:p toWindow:nil];
- */
+ wxPoint p((x ? *x : 0), (y ? *y : 0) );
+ NSPoint nspt = wxToNSPoint( [m_macWindow contentView], p );
+ nspt = [[m_macWindow contentView] convertPoint:nspt toView:nil];
+ nspt = [m_macWindow convertBaseToScreen:nspt];
+ p = wxFromNSPoint( NULL, nspt);
if ( x )
*x = p.x;
if ( y )
wxNonOwnedWindowImpl* now = new wxNonOwnedWindowCocoaImpl( wxpeer );
now->Create( parent, pos, size, style , extraStyle, name );
return now;
-}
\ No newline at end of file
+}