git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39481 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
66 lines
1.5 KiB
Plaintext
66 lines
1.5 KiB
Plaintext
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/cocoa/statbmp.mm
|
|
// Purpose: wxStaticBitmap
|
|
// Author: David Elliott
|
|
// Modified by:
|
|
// Created: 2003/02/15
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2003 David Elliott
|
|
// Licence: wxWidgets licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/wxprec.h"
|
|
|
|
#include "wx/statbmp.h"
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/app.h"
|
|
#endif //WX_PRECOMP
|
|
|
|
#include "wx/cocoa/autorelease.h"
|
|
|
|
#import <AppKit/NSImageView.h>
|
|
|
|
IMPLEMENT_DYNAMIC_CLASS(wxStaticBitmap, wxControl)
|
|
|
|
BEGIN_EVENT_TABLE(wxStaticBitmap, wxControl)
|
|
END_EVENT_TABLE()
|
|
// WX_IMPLEMENT_COCOA_OWNER(wxStaticBitmap,NSTextField,NSControl,NSView)
|
|
|
|
bool wxStaticBitmap::Create(wxWindow *parent, wxWindowID winid,
|
|
const wxBitmap& bitmap,
|
|
const wxPoint& pos,
|
|
const wxSize& size,
|
|
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()
|
|
{
|
|
}
|
|
|
|
void wxStaticBitmap::SetIcon(const wxIcon& icon)
|
|
{
|
|
}
|
|
|
|
void wxStaticBitmap::SetBitmap(const wxBitmap& bitmap)
|
|
{
|
|
}
|
|
|
|
wxBitmap wxStaticBitmap::GetBitmap() const
|
|
{
|
|
return wxNullBitmap;
|
|
}
|