]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/statbmp.mm
expose find window method
[wxWidgets.git] / src / cocoa / statbmp.mm
index de08f55c6ac2807c5d18a2f4e002c3457af61655..83cba15fd67d7224df27a4e9ff760f38965c6a75 100644 (file)
@@ -9,8 +9,14 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/statbmp.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/statbmp.h"
+#endif //WX_PRECOMP
+#include "wx/cocoa/autorelease.h"
+
+#import <AppKit/NSImageView.h>
 
 IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
 BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
@@ -24,17 +30,21 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID winid,
            long style,
            const wxString& name)
 {
+    wxAutoNSAutoreleasePool pool;
     if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
         return false;
     m_cocoaNSView = NULL;
+    SetNSView([[NSImageView alloc] initWithFrame: MakeDefaultNSRect(size)]);
+    [m_cocoaNSView release];
     if(m_parent)
         m_parent->CocoaAddChild(this);
+    SetInitialFrameRect(pos,size);
+
     return true;
 }
 
 wxStaticBitmap::~wxStaticBitmap()
 {
-    CocoaRemoveFromParent();
 }
 
 void wxStaticBitmap::SetIcon(const wxIcon& icon)