]>
git.saurik.com Git - wxWidgets.git/blob - src/mgl/icon.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Author: Vaclav Slavik
5 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 // For compilers that support precompilation, includes "wx.h".
10 #include "wx/wxprec.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 IMPLEMENT_DYNAMIC_CLASS(wxIcon
, wxBitmap
)
24 wxIcon::wxIcon(const char **bits
, int WXUNUSED(width
), int WXUNUSED(height
)) :
29 wxIcon::wxIcon(char **bits
, int WXUNUSED(width
), int WXUNUSED(height
)) :
34 void wxIcon::CopyFromBitmap(const wxBitmap
& bmp
)
36 wxIcon
*icon
= (wxIcon
*)(&bmp
);