1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-06-26 20:59:19 +00:00
|
|
|
// Name: wx/msw/statbmp.h
|
|
|
|
// Purpose: wxStaticBitmap class for wxMSW
|
1998-05-20 14:12:05 +00:00
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
1998-08-07 23:52:45 +00:00
|
|
|
// Copyright: (c) Julian Smart
|
1999-03-24 23:35:16 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef _WX_STATBMP_H_
|
|
|
|
#define _WX_STATBMP_H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
1999-01-31 23:30:33 +00:00
|
|
|
#pragma interface "statbmp.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
1999-08-22 20:16:23 +00:00
|
|
|
#include "wx/icon.h"
|
1999-12-02 14:47:49 +00:00
|
|
|
#include "wx/bitmap.h"
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-06-10 18:12:13 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxStaticBitmapNameStr;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-03-24 23:35:16 +00:00
|
|
|
// a control showing an icon or a bitmap
|
2001-06-26 20:59:19 +00:00
|
|
|
class WXDLLEXPORT wxStaticBitmap : public wxStaticBitmapBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
1999-01-31 23:30:33 +00:00
|
|
|
public:
|
1999-03-24 23:35:16 +00:00
|
|
|
wxStaticBitmap() { Init(); }
|
|
|
|
|
|
|
|
wxStaticBitmap(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
1999-11-24 12:30:56 +00:00
|
|
|
const wxGDIImage& label,
|
1999-03-24 23:35:16 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr)
|
1999-01-31 23:30:33 +00:00
|
|
|
{
|
2002-12-21 14:35:18 +00:00
|
|
|
Init();
|
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
Create(parent, id, label, pos, size, style, name);
|
|
|
|
}
|
1999-03-24 23:35:16 +00:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
1999-11-24 12:30:56 +00:00
|
|
|
const wxGDIImage& label,
|
1999-03-24 23:35:16 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxStaticBitmapNameStr);
|
|
|
|
|
|
|
|
virtual ~wxStaticBitmap() { Free(); }
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
virtual void SetIcon(const wxIcon& icon) { SetImage(&icon); }
|
|
|
|
virtual void SetBitmap(const wxBitmap& bitmap) { SetImage(&bitmap); }
|
1999-03-24 23:35:16 +00:00
|
|
|
|
|
|
|
// assert failure is provoked by an attempt to get an icon from bitmap or
|
|
|
|
// vice versa
|
2001-06-26 20:59:19 +00:00
|
|
|
wxIcon GetIcon() const
|
2002-12-21 14:35:18 +00:00
|
|
|
{
|
|
|
|
wxASSERT_MSG( m_isIcon, _T("no icon in this wxStaticBitmap") );
|
|
|
|
|
|
|
|
return *(wxIcon *)m_image;
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
wxBitmap GetBitmap() const
|
2002-12-21 14:35:18 +00:00
|
|
|
{
|
|
|
|
wxASSERT_MSG( !m_isIcon, _T("no bitmap in this wxStaticBitmap") );
|
|
|
|
|
|
|
|
return *(wxBitmap *)m_image;
|
|
|
|
}
|
|
|
|
|
|
|
|
// implementation only from now on
|
|
|
|
// -------------------------------
|
1999-03-24 23:35:16 +00:00
|
|
|
|
2002-12-21 14:35:18 +00:00
|
|
|
// implement base class virtuals
|
1999-03-24 23:35:16 +00:00
|
|
|
#ifdef __WIN16__
|
1999-01-31 23:30:33 +00:00
|
|
|
virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
|
1999-03-24 23:35:16 +00:00
|
|
|
#endif // __WIN16__
|
2000-01-13 13:17:19 +00:00
|
|
|
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1999-01-31 23:30:33 +00:00
|
|
|
protected:
|
2003-07-06 21:35:32 +00:00
|
|
|
virtual wxBorder GetDefaultBorder() const;
|
1999-11-24 12:30:56 +00:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2002-12-21 14:35:18 +00:00
|
|
|
virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
|
1999-11-24 12:30:56 +00:00
|
|
|
|
2002-12-21 14:35:18 +00:00
|
|
|
// ctor/dtor helpers
|
1999-11-24 12:30:56 +00:00
|
|
|
void Init() { m_isIcon = TRUE; m_image = NULL; }
|
1999-03-24 23:35:16 +00:00
|
|
|
void Free();
|
|
|
|
|
|
|
|
// TRUE if icon/bitmap is valid
|
|
|
|
bool ImageIsOk() const;
|
|
|
|
|
2000-02-02 00:52:06 +00:00
|
|
|
void SetImage(const wxGDIImage* image);
|
2001-11-06 21:16:02 +00:00
|
|
|
void SetImageNoCopy( wxGDIImage* image );
|
1999-11-24 12:30:56 +00:00
|
|
|
|
1999-03-24 23:35:16 +00:00
|
|
|
// we can have either an icon or a bitmap
|
|
|
|
bool m_isIcon;
|
1999-11-24 12:30:56 +00:00
|
|
|
wxGDIImage *m_image;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxStaticBitmap)
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxStaticBitmap)
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
1998-08-07 23:52:45 +00:00
|
|
|
// _WX_STATBMP_H_
|