2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/statbmp.h
|
|
|
|
// Purpose: wxStaticBitmap class for wxUniversal
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 25.08.00
|
|
|
|
// RCS-ID: $Id$
|
2001-07-02 19:42:27 +00:00
|
|
|
// Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_STATBMP_H_
|
|
|
|
#define _WX_UNIV_STATBMP_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-07-04 18:07:15 +00:00
|
|
|
#pragma interface "univstatbmp.h"
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxStaticBitmap
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-05-08 09:45:26 +00:00
|
|
|
class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxStaticBitmap()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
wxStaticBitmap(wxWindow *parent,
|
|
|
|
const wxBitmap& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0)
|
|
|
|
{
|
2004-08-10 13:08:43 +00:00
|
|
|
Create(parent, wxID_ANY, label, pos, size, style);
|
2001-06-26 20:59:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
wxStaticBitmap(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, label, pos, size, style, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr);
|
|
|
|
|
|
|
|
virtual void SetBitmap(const wxBitmap& bitmap);
|
|
|
|
virtual void SetIcon(const wxIcon& icon);
|
|
|
|
virtual wxBitmap GetBitmap() const { return m_bitmap; }
|
|
|
|
|
|
|
|
wxIcon GetIcon() const;
|
|
|
|
|
2004-08-10 13:08:43 +00:00
|
|
|
virtual bool HasTransparentBackground() { return true; }
|
2002-04-14 14:42:43 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
private:
|
|
|
|
virtual void DoDraw(wxControlRenderer *renderer);
|
|
|
|
|
|
|
|
// the bitmap which we show
|
|
|
|
wxBitmap m_bitmap;
|
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_STATBMP_H_
|