]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/icon.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/icon.cpp
3 // Purpose: wxIcon class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "icon.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
37 #include "wx/bitmap.h"
41 // ----------------------------------------------------------------------------
43 // ----------------------------------------------------------------------------
45 IMPLEMENT_DYNAMIC_CLASS(wxIcon
, wxGDIObject
)
47 // ============================================================================
49 // ============================================================================
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 void wxIconRefData::Free()
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
63 wxIcon::wxIcon(const char bits
[], int width
, int height
)
67 wxIcon::wxIcon(const wxString
& iconfile
,
75 wxIcon::wxIcon(const wxIconLocation
& loc
)
83 void wxIcon::CopyFromBitmap(const wxBitmap
& bmp
)
87 void wxIcon::CreateIconFromXpm(const char **data
)
91 bool wxIcon::LoadFile(const wxString
& filename
,
93 int desiredWidth
, int desiredHeight
)