1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxStaticBitmap class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_STATBMP_H_
13 #define _WX_STATBMP_H_
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 wxControl
28 DECLARE_DYNAMIC_CLASS(wxStaticBitmap
)
31 wxStaticBitmap() { Init(); }
33 wxStaticBitmap(wxWindow
*parent
,
35 const wxGDIImage
& label
,
36 const wxPoint
& pos
= wxDefaultPosition
,
37 const wxSize
& size
= wxDefaultSize
,
39 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 void SetIcon(const wxIcon
& icon
) { SetImage(&icon
); }
55 void SetBitmap(const wxBitmap
& bitmap
) { SetImage(&bitmap
); }
57 // assert failure is provoked by an attempt to get an icon from bitmap or
59 const wxIcon
& GetIcon() const
60 { wxASSERT( m_isIcon
); return *(wxIcon
*)m_image
; }
61 const wxBitmap
& GetBitmap() const
62 { wxASSERT( !m_isIcon
); return *(wxBitmap
*)m_image
; }
64 // overriden base class virtuals
65 virtual bool AcceptsFocus() const { return FALSE
; }
69 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT
*item
);
71 virtual long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
74 virtual wxSize
DoGetBestSize() const;
76 void Init() { m_isIcon
= TRUE
; m_image
= NULL
; }
79 // TRUE if icon/bitmap is valid
80 bool ImageIsOk() const;
82 void SetImage(const wxGDIImage
* image
);
84 // we can have either an icon or a bitmap