1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/cocoa/icon.h
3 // Purpose: wxIcon class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "icon.h"
19 #include "wx/bitmap.h"
22 class WXDLLEXPORT wxIcon
: public wxBitmap
24 DECLARE_DYNAMIC_CLASS(wxIcon
)
30 wxIcon(const wxIcon
& icon
)
34 wxIcon(const char **data
);
36 wxIcon(const char bits
[], int width
, int height
);
37 wxIcon(const wxString
& name
, int flags
= wxBITMAP_TYPE_ICON_RESOURCE
,
38 int desiredWidth
= -1, int desiredHeight
= -1);
39 wxIcon(const wxIconLocation
& loc
)
41 LoadFile(loc
.GetFileName(), wxBITMAP_TYPE_ICON
);
45 bool LoadFile(const wxString
& name
, wxBitmapType flags
/* = wxBITMAP_TYPE_ICON_RESOURCE */ ,
46 int desiredWidth
/* = -1 */ , int desiredHeight
= -1);
47 bool LoadFile(const wxString
& name
,wxBitmapType flags
= wxBITMAP_TYPE_ICON_RESOURCE
)
48 { return LoadFile( name
, flags
, -1 , -1 ) ; }
50 wxIcon
& operator=(const wxIcon
& icon
)
51 { if (this != &icon
) Ref(icon
); return *this; }
52 bool operator==(const wxIcon
& icon
) const { return m_refData
== icon
.m_refData
; }
53 bool operator!=(const wxIcon
& icon
) const { return !(*this == icon
); }
55 // create from bitmap (which should have a mask unless it's monochrome):
56 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
57 // ctors, assignment operators...), but it's ok to have such function
58 void CopyFromBitmap(const wxBitmap
& bmp
);