1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statbmp.h
|
|
|
|
// Purpose: wxStaticBitmap class
|
2003-02-28 21:54:04 +00:00
|
|
|
// Author: Stefan Csomor
|
1999-01-01 16:05:26 +00:00
|
|
|
// Modified by:
|
2003-02-28 21:54:04 +00:00
|
|
|
// Created: 1998-01-01
|
1999-01-01 16:05:26 +00:00
|
|
|
// RCS-ID: $Id$
|
2003-02-28 21:54:04 +00:00
|
|
|
// Copyright: (c) Stefan Csomor
|
2003-02-28 23:48:13 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_STATBMP_H_
|
|
|
|
#define _WX_STATBMP_H_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-01-01 16:05:26 +00:00
|
|
|
#pragma interface "statbmp.h"
|
|
|
|
#endif
|
|
|
|
|
2001-06-28 21:23:41 +00:00
|
|
|
#include "wx/icon.h"
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2001-06-28 21:23:41 +00:00
|
|
|
class WXDLLEXPORT wxStaticBitmap: public wxStaticBitmapBase
|
1999-01-01 16:05:26 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
|
|
|
|
public:
|
|
|
|
inline wxStaticBitmap() { }
|
|
|
|
|
|
|
|
inline 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 Command(wxCommandEvent& WXUNUSED(event)) {};
|
|
|
|
virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
|
2002-07-25 08:42:04 +00:00
|
|
|
void OnPaint( wxPaintEvent &event ) ;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
2001-06-28 21:23:41 +00:00
|
|
|
wxBitmap GetBitmap() const { return m_bitmap; }
|
|
|
|
wxIcon GetIcon() const
|
|
|
|
{
|
2003-02-28 23:48:13 +00:00
|
|
|
// icons and bitmaps are really the same thing in wxMac
|
|
|
|
return (const wxIcon &)m_bitmap;
|
2001-06-28 21:23:41 +00:00
|
|
|
}
|
2001-05-16 21:20:50 +00:00
|
|
|
void SetIcon(const wxIcon& icon) { SetBitmap( (const wxBitmap &)icon ) ; }
|
2001-03-04 12:46:30 +00:00
|
|
|
|
1999-01-01 16:05:26 +00:00
|
|
|
// overriden base class virtuals
|
|
|
|
virtual bool AcceptsFocus() const { return FALSE; }
|
2001-07-11 20:33:12 +00:00
|
|
|
virtual wxSize DoGetBestSize() const ;
|
1999-01-01 16:05:26 +00:00
|
|
|
|
|
|
|
protected:
|
2001-06-28 21:23:41 +00:00
|
|
|
wxBitmap m_bitmap;
|
2003-02-28 23:48:13 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1999-01-01 16:05:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_STATBMP_H_
|