1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/statbmp.h
3 // Purpose: wxStaticBitmap class for wxMSW
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATBMP_H_
13 #define _WX_STATBMP_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "statbmp.h"
19 #include "wx/control.h"
21 #include "wx/bitmap.h"
23 WXDLLEXPORT_DATA(extern const wxChar
*) wxStaticBitmapNameStr
;
25 // a control showing an icon or a bitmap
26 class WXDLLEXPORT wxStaticBitmap
: public wxStaticBitmapBase
29 wxStaticBitmap() { Init(); }
31 wxStaticBitmap(wxWindow
*parent
,
33 const wxGDIImage
& label
,
34 const wxPoint
& pos
= wxDefaultPosition
,
35 const wxSize
& size
= wxDefaultSize
,
37 const wxString
& name
= wxStaticBitmapNameStr
)
41 Create(parent
, id
, label
, pos
, size
, style
, name
);
44 bool Create(wxWindow
*parent
,
46 const wxGDIImage
& label
,
47 const wxPoint
& pos
= wxDefaultPosition
,
48 const wxSize
& size
= wxDefaultSize
,
50 const wxString
& name
= wxStaticBitmapNameStr
);
52 virtual ~wxStaticBitmap() { Free(); }
54 virtual void SetIcon(const wxIcon
& icon
) { SetImage(&icon
); }
55 virtual void SetBitmap(const wxBitmap
& bitmap
) { SetImage(&bitmap
); }
57 // assert failure is provoked by an attempt to get an icon from bitmap or
59 wxIcon
GetIcon() const
61 wxASSERT_MSG( m_isIcon
, _T("no icon in this wxStaticBitmap") );
63 return *(wxIcon
*)m_image
;
66 wxBitmap
GetBitmap() const
68 wxASSERT_MSG( !m_isIcon
, _T("no bitmap in this wxStaticBitmap") );
70 return *(wxBitmap
*)m_image
;
73 // implementation only from now on
74 // -------------------------------
76 // implement base class virtuals
77 virtual WXLRESULT
MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
80 virtual wxBorder
GetDefaultBorder() const;
81 virtual wxSize
DoGetBestSize() const;
82 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
85 void Init() { m_isIcon
= TRUE
; m_image
= NULL
; }
88 // TRUE if icon/bitmap is valid
89 bool ImageIsOk() const;
91 void SetImage(const wxGDIImage
* image
);
92 void SetImageNoCopy( wxGDIImage
* image
);
94 // we can have either an icon or a bitmap
99 DECLARE_DYNAMIC_CLASS(wxStaticBitmap
)
100 DECLARE_NO_COPY_CLASS(wxStaticBitmap
)