]>
Commit | Line | Data |
---|---|---|
ffecfa5a | 1 | ///////////////////////////////////////////////////////////////////////////// |
e2731512 | 2 | // Name: src/palmos/icon.cpp |
ffecfa5a | 3 | // Purpose: wxIcon class |
e2731512 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e2731512 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
ffecfa5a JS |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
ffecfa5a JS |
28 | #include "wx/list.h" |
29 | #include "wx/utils.h" | |
30 | #include "wx/app.h" | |
31 | #include "wx/icon.h" | |
32 | #include "wx/bitmap.h" | |
33 | #include "wx/log.h" | |
34 | #endif | |
35 | ||
36 | // ---------------------------------------------------------------------------- | |
37 | // wxWin macros | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
40 | IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxGDIObject) | |
41 | ||
42 | // ============================================================================ | |
43 | // implementation | |
44 | // ============================================================================ | |
45 | ||
46 | // ---------------------------------------------------------------------------- | |
47 | // wxIconRefData | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
50 | void wxIconRefData::Free() | |
51 | { | |
52 | } | |
53 | ||
54 | // ---------------------------------------------------------------------------- | |
55 | // wxIcon | |
56 | // ---------------------------------------------------------------------------- | |
57 | ||
58 | wxIcon::wxIcon(const char bits[], int width, int height) | |
59 | { | |
60 | } | |
61 | ||
62 | wxIcon::wxIcon(const wxString& iconfile, | |
63 | long flags, | |
64 | int desiredWidth, | |
65 | int desiredHeight) | |
66 | ||
67 | { | |
68 | } | |
69 | ||
70 | wxIcon::wxIcon(const wxIconLocation& loc) | |
71 | { | |
72 | } | |
73 | ||
74 | wxIcon::~wxIcon() | |
75 | { | |
76 | } | |
77 | ||
78 | void wxIcon::CopyFromBitmap(const wxBitmap& bmp) | |
79 | { | |
80 | } | |
81 | ||
82 | void wxIcon::CreateIconFromXpm(const char **data) | |
83 | { | |
84 | } | |
85 | ||
86 | bool wxIcon::LoadFile(const wxString& filename, | |
87 | long type, | |
88 | int desiredWidth, int desiredHeight) | |
89 | { | |
90 | return false; | |
91 | } |