1999-01-01 16:05:26 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statbmp.h
|
|
|
|
// Purpose: wxStaticBitmap class
|
|
|
|
// Author: AUTHOR
|
|
|
|
// Modified by:
|
|
|
|
// Created: ??/??/98
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) AUTHOR
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_STATBMP_H_
|
|
|
|
#define _WX_STATBMP_H_
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#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)) {};
|
2001-05-16 21:20:50 +00:00
|
|
|
virtual void OnPaint( wxPaintEvent &event ) ;
|
1999-01-01 16:05:26 +00:00
|
|
|
void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
|
|
|
|
2001-06-28 21:23:41 +00:00
|
|
|
wxBitmap GetBitmap() const { return m_bitmap; }
|
|
|
|
wxIcon GetIcon() const
|
|
|
|
{
|
|
|
|
// icons and bitmaps are really the same thing in wxMac
|
|
|
|
return (const wxIcon &)m_bitmap;
|
|
|
|
}
|
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;
|
1999-11-05 09:16:09 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1999-01-01 16:05:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_STATBMP_H_
|