wxNonOwnedWindowCocoaImpl::~wxNonOwnedWindowCocoaImpl()
{
- [m_macWindow setImplementation:nil];
- [m_macWindow setDelegate:nil];
- [m_macWindow release];
+ if ( !m_wxPeer->IsNativeWindowWrapper() )
+ {
+ [m_macWindow setImplementation:nil];
+ [m_macWindow setDelegate:nil];
+ [m_macWindow release];
+ }
}
void wxNonOwnedWindowCocoaImpl::WillBeDestroyed()
{
- [m_macWindow setDelegate:nil];
+ if ( !m_wxPeer->IsNativeWindowWrapper() )
+ {
+ [m_macWindow setDelegate:nil];
+ }
}
void wxNonOwnedWindowCocoaImpl::Create( wxWindow* WXUNUSED(parent), const wxPoint& pos, const wxSize& size,
[m_macWindow setDelegate:controller];
[m_macWindow setAcceptsMouseMovedEvents: YES];
+
+ if ( ( style & wxFRAME_SHAPED) )
+ {
+ [m_macWindow setOpaque:NO];
+ [m_macWindow setAlphaValue:1.0];
+ }
}
+void wxNonOwnedWindowCocoaImpl::Create( wxWindow* WXUNUSED(parent), WXWindow nativeWindow )
+{
+ m_macWindow = nativeWindow;
+}
WXWindow wxNonOwnedWindowCocoaImpl::GetWXWindow() const
{
return [m_macWindow isDocumentEdited];
}
+wxNonOwnedWindowImpl* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, WXWindow nativeWindow)
+{
+ wxNonOwnedWindowCocoaImpl* now = new wxNonOwnedWindowCocoaImpl( wxpeer );
+ now->Create( parent, nativeWindow );
+ return now;
+}
+
wxNonOwnedWindowImpl* wxNonOwnedWindowImpl::CreateNonOwnedWindow( wxNonOwnedWindow* wxpeer, wxWindow* parent, const wxPoint& pos, const wxSize& size,
long style, long extraStyle, const wxString& name )
{