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 wxIcon
& icon
) : wxGDIImage(icon
) { Ref(icon
); }
51 wxIcon(const char bits
[], int width
, int height
);
54 wxIcon(const char **data
) { CreateIconFromXpm(data
); }
56 wxIcon(char **data
) { CreateIconFromXpm((const char **)data
); }
59 wxIcon(const wxString
& name
,
60 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
61 int desiredWidth
= -1, int desiredHeight
= -1);
63 wxIcon(const wxIconLocation
& loc
);
67 virtual bool LoadFile(const wxString
& name
,
68 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
69 int desiredWidth
= -1, int desiredHeight
= -1);
71 wxIcon
& operator = (const wxIcon
& icon
)
72 { if ( *this != icon
) Ref(icon
); return *this; }
73 bool operator == (const wxIcon
& icon
) const
74 { return m_refData
== icon
.m_refData
; }
75 bool operator != (const wxIcon
& icon
) const
76 { return m_refData
!= icon
.m_refData
; }
78 // implementation only from now on
79 wxIconRefData
*GetIconData() const { return (wxIconRefData
*)m_refData
; }
81 void SetHICON(WXHICON icon
) { SetHandle((WXHANDLE
)icon
); }
82 WXHICON
GetHICON() const { return (WXHICON
)GetHandle(); }
84 // create from bitmap (which should have a mask unless it's monochrome):
85 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
86 // ctors, assignment operators...), but it's ok to have such function
87 void CopyFromBitmap(const wxBitmap
& bmp
);
90 virtual wxGDIImageRefData
*CreateData() const
92 return new wxIconRefData
;
95 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
97 // create from XPM data
98 void CreateIconFromXpm(const char **data
);
101 DECLARE_DYNAMIC_CLASS(wxIcon
)