Use an NSImageView instead of an NSView (nothing works yet)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Elliott
2003-09-06 19:12:04 +00:00
parent 7e41e564c6
commit 0ca6987db2

View File

@@ -15,7 +15,7 @@
#include "wx/statbmp.h" #include "wx/statbmp.h"
#endif //WX_PRECOMP #endif //WX_PRECOMP
#import <AppKit/NSView.h> #import <AppKit/NSImageView.h>
IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl) IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl) BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
@@ -32,7 +32,7 @@ bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID winid,
if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name)) if(!CreateControl(parent,winid,pos,size,style,wxDefaultValidator,name))
return false; return false;
m_cocoaNSView = NULL; m_cocoaNSView = NULL;
SetNSView([[NSView alloc] initWithFrame: MakeDefaultNSRect(size)]); SetNSView([[NSImageView alloc] initWithFrame: MakeDefaultNSRect(size)]);
[m_cocoaNSView release]; [m_cocoaNSView release];
if(m_parent) if(m_parent)
m_parent->CocoaAddChild(this); m_parent->CocoaAddChild(this);