1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxIcon class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/msw/gdiimage.h"
21 // ---------------------------------------------------------------------------
23 // ---------------------------------------------------------------------------
25 // notice that although wxIconRefData inherits from wxBitmapRefData, it is not
26 // a valid wxBitmapRefData
27 class WXDLLEXPORT wxIconRefData
: public wxGDIImageRefData
31 virtual ~wxIconRefData() { Free(); }
36 // ---------------------------------------------------------------------------
38 // ---------------------------------------------------------------------------
40 class WXDLLEXPORT wxIcon
: public wxGDIImage
48 wxIcon(const char bits
[], int width
, int height
);
51 wxIcon(const char **data
) { CreateIconFromXpm(data
); }
53 wxIcon(char **data
) { CreateIconFromXpm((const char **)data
); }
56 wxIcon(const wxString
& name
,
57 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
58 int desiredWidth
= -1, int desiredHeight
= -1);
60 wxIcon(const wxIconLocation
& loc
);
64 virtual bool LoadFile(const wxString
& name
,
65 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
66 int desiredWidth
= -1, int desiredHeight
= -1);
68 bool operator == (const wxIcon
& icon
) const
69 { return m_refData
== icon
.m_refData
; }
70 bool operator != (const wxIcon
& icon
) const
71 { return m_refData
!= icon
.m_refData
; }
73 // implementation only from now on
74 wxIconRefData
*GetIconData() const { return (wxIconRefData
*)m_refData
; }
76 void SetHICON(WXHICON icon
) { SetHandle((WXHANDLE
)icon
); }
77 WXHICON
GetHICON() const { return (WXHICON
)GetHandle(); }
79 // create from bitmap (which should have a mask unless it's monochrome):
80 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
81 // ctors, assignment operators...), but it's ok to have such function
82 void CopyFromBitmap(const wxBitmap
& bmp
);
85 virtual wxGDIImageRefData
*CreateData() const
87 return new wxIconRefData
;
90 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
92 // create from XPM data
93 void CreateIconFromXpm(const char **data
);
96 DECLARE_DYNAMIC_CLASS(wxIcon
)