]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/icon.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/icon.h
3 // Purpose: wxIcon implementation for ports where it's same as wxBitmap
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_ICON_H_
13 #define _WX_GENERIC_ICON_H_
15 #include "wx/bitmap.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 class WXDLLIMPEXP_CORE wxIcon
: public wxBitmap
26 wxIcon(const char* const* bits
);
31 // For compatibility with wxMSW where desired size is sometimes required to
32 // distinguish between multiple icons in a resource.
33 wxIcon( const wxString
& filename
,
34 wxBitmapType type
= wxICON_DEFAULT_TYPE
,
35 int WXUNUSED(desiredWidth
)=-1, int WXUNUSED(desiredHeight
)=-1 ) :
36 wxBitmap(filename
, type
)
40 wxIcon(const wxIconLocation
& loc
)
41 : wxBitmap(loc
.GetFileName(), wxBITMAP_TYPE_ANY
)
45 bool LoadFile(const wxString
& name
, wxBitmapType flags
,
46 int WXUNUSED(desiredWidth
), int WXUNUSED(desiredHeight
))
47 { return wxBitmap::LoadFile(name
, flags
); }
49 // unhide the base class version
50 virtual bool LoadFile(const wxString
& name
,
51 wxBitmapType flags
= wxICON_DEFAULT_TYPE
)
52 { return wxBitmap::LoadFile(name
, flags
); }
54 // create from bitmap (which should have a mask unless it's monochrome):
55 // there shouldn't be any implicit bitmap -> icon conversion (i.e. no
56 // ctors, assignment operators...), but it's ok to have such function
57 void CopyFromBitmap(const wxBitmap
& bmp
);
60 DECLARE_DYNAMIC_CLASS(wxIcon
)
63 #endif // _WX_GENERIC_ICON_H_