1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxIcon class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "icon.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 #include "wx/msw/gdiimage.h"
25 // ---------------------------------------------------------------------------
27 // ---------------------------------------------------------------------------
29 // notice that although wxIconRefData inherits from wxBitmapRefData, it is not
30 // a valid wxBitmapRefData
31 class WXDLLEXPORT wxIconRefData
: public wxGDIImageRefData
35 virtual ~wxIconRefData() { Free(); }
40 // ---------------------------------------------------------------------------
42 // ---------------------------------------------------------------------------
44 class WXDLLEXPORT wxIcon
: public wxGDIImage
52 wxIcon(const wxIcon
& icon
) { Ref(icon
); }
55 wxIcon(const char bits
[], int width
, int height
);
57 wxIcon(const char **data
) { CreateIconFromXpm(data
); }
58 wxIcon(char **data
) { CreateIconFromXpm((const char **)data
); }
60 wxIcon(const wxString
& name
,
61 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
62 int desiredWidth
= -1, int desiredHeight
= -1);
66 virtual bool LoadFile(const wxString
& name
,
67 long type
= wxBITMAP_TYPE_ICO_RESOURCE
,
68 int desiredWidth
= -1, int desiredHeight
= -1);
70 wxIcon
& operator = (const wxIcon
& icon
)
71 { if ( *this != icon
) Ref(icon
); return *this; }
72 bool operator == (const wxIcon
& icon
) const
73 { return m_refData
== icon
.m_refData
; }
74 bool operator != (const wxIcon
& icon
) const
75 { return m_refData
!= icon
.m_refData
; }
77 // implementation only from now on
78 wxIconRefData
*GetIconData() const { return (wxIconRefData
*)m_refData
; }
80 void SetHICON(WXHICON icon
) { SetHandle((WXHANDLE
)icon
); }
81 WXHICON
GetHICON() const { return (WXHICON
)GetHandle(); }
83 // create from bitmap (which should have a mask unless it's monochrome):
84 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
85 // ctors, assignment operators...), but it's ok to have such function
86 void CopyFromBitmap(const wxBitmap
& bmp
);
89 virtual wxGDIImageRefData
*CreateData() const
91 return new wxIconRefData
;
94 // create from XPM data
95 void CreateIconFromXpm(const char **data
);
98 DECLARE_DYNAMIC_CLASS(wxIcon
)