1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: statbmp.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 13:03:18 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1999-06-21 17:29:40 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKSTATICBITMAPH__
|
|
|
|
#define __GTKSTATICBITMAPH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-06-14 19:04:05 -04:00
|
|
|
|
|
|
|
#if wxUSE_STATBMP
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/control.h"
|
1999-01-04 08:52:06 -05:00
|
|
|
#include "wx/bitmap.h"
|
1999-06-22 04:36:29 -04:00
|
|
|
#include "wx/icon.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxStaticBitmap;
|
|
|
|
|
1998-05-28 18:05:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern const char* wxStaticBitmapNameStr;
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxStaticBitmap
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1998-05-28 18:05:55 -04:00
|
|
|
class wxStaticBitmap: public wxControl
|
|
|
|
{
|
1999-06-21 17:29:40 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxStaticBitmap();
|
|
|
|
wxStaticBitmap( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr );
|
|
|
|
bool Create( wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr);
|
|
|
|
|
1998-05-28 18:05:55 -04:00
|
|
|
virtual void SetBitmap( const wxBitmap& bitmap );
|
1999-06-21 17:29:40 -04:00
|
|
|
|
|
|
|
wxBitmap& GetBitmap() { return m_bitmap; }
|
|
|
|
const wxBitmap& GetBitmap() const { return m_bitmap; }
|
|
|
|
|
|
|
|
// for compatibility with wxMSW
|
1999-06-28 18:06:24 -04:00
|
|
|
const wxIcon& GetIcon() const
|
|
|
|
{
|
|
|
|
// don't use wxDynamicCast, icons and bitmaps are really the same thing
|
|
|
|
// in wxGTK
|
|
|
|
return (const wxIcon &)m_bitmap;
|
|
|
|
}
|
1999-06-21 17:29:40 -04:00
|
|
|
|
|
|
|
private:
|
1999-07-07 12:00:06 -04:00
|
|
|
// creates the new pixmap widget
|
|
|
|
void CreatePixmapWidget();
|
|
|
|
|
1999-06-21 17:29:40 -04:00
|
|
|
wxBitmap m_bitmap;
|
1998-05-28 18:05:55 -04:00
|
|
|
};
|
|
|
|
|
1999-06-14 19:04:05 -04:00
|
|
|
#endif
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif // __GTKSTATICBITMAPH__
|