]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/icon.h
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 #include "wx/bitmap.h"
22 // Same as for wxBitmap
23 class WXDLLEXPORT wxIconRefData: public wxBitmapRefData
25 friend class WXDLLEXPORT wxBitmap;
26 friend class WXDLLEXPORT wxIcon;
33 #define M_ICONDATA ((wxBitmapRefData *)m_refData)
34 #define M_ICONHANDLERDATA ((wxBitmapRefData *)bitmap->GetRefData())
37 class WXDLLEXPORT wxIcon
: public wxBitmap
39 DECLARE_DYNAMIC_CLASS(wxIcon
)
45 inline wxIcon(const wxIcon
& icon
) { Ref(icon
); }
47 // Initialize with XBM data
48 wxIcon(const char bits
[], int width
, int height
);
50 // Initialize with XPM data
51 wxIcon(const char **data
);
54 wxIcon(const wxString
& name
, long flags
= wxBITMAP_TYPE_XPM
,
55 int desiredWidth
= -1, int desiredHeight
= -1);
58 bool LoadFile(const wxString
& name
, long flags
= wxBITMAP_TYPE_XPM
,
59 int desiredWidth
= -1, int desiredHeight
= -1);
61 inline wxIcon
& operator = (const wxIcon
& icon
) { if (*this == icon
) return (*this); Ref(icon
); return *this; }
62 inline bool operator == (const wxIcon
& icon
) const { return m_refData
== icon
.m_refData
; }
63 inline bool operator != (const wxIcon
& icon
) const { return m_refData
!= icon
.m_refData
; }
65 virtual bool Ok() const { return ((m_refData
!= NULL
) && (M_ICONDATA
->m_ok
)); }