#include "wx/window.h"
#include "wx/log.h"
+#include "wx/cocoa/autorelease.h"
+
#import <Appkit/NSView.h>
#import <AppKit/NSEvent.h>
// Destructor
wxWindow::~wxWindow()
{
+ wxAutoNSAutoreleasePool pool;
DestroyChildren();
if(m_parent)
{
bool need_debug = cocoaNSView || m_cocoaNSView;
if(need_debug) wxLogDebug("wxWindowCocoa=%p::SetNSView [m_cocoaNSView=%p retainCount]=%d",this,m_cocoaNSView,[m_cocoaNSView retainCount]);
- if(m_cocoaNSView)
- DisassociateNSView(m_cocoaNSView);
+ DisassociateNSView(m_cocoaNSView);
[cocoaNSView retain];
[m_cocoaNSView release];
m_cocoaNSView = cocoaNSView;
- if(m_cocoaNSView)
- AssociateNSView(m_cocoaNSView);
+ AssociateNSView(m_cocoaNSView);
if(need_debug) wxLogDebug("wxWindowCocoa=%p::SetNSView [cocoaNSView=%p retainCount]=%d",this,cocoaNSView,[cocoaNSView retainCount]);
}
bool wxWindow::Show(bool show)
{
+ wxAutoNSAutoreleasePool pool;
// If the window is marked as visible, then it shouldn't have a dummy view
// If the window is marked hidden, then it should have a dummy view
wxASSERT_MSG( (m_isShown && !m_dummyNSView) || (!m_isShown && m_dummyNSView),"wxWindow: m_isShown does not agree with m_dummyNSView");
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
+ wxAutoNSAutoreleasePool pool;
NSView *nsview = m_dummyNSView?m_dummyNSView:m_cocoaNSView;
NSView *superview = [nsview superview];
[nsview retain];