]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
0d0512bd | 2 | // Name: msw/icon.cpp |
2bda0e17 KB |
3 | // Purpose: wxIcon class |
4 | // Author: Julian Smart | |
0d0512bd | 5 | // Modified by: 20.11.99 (VZ): don't derive from wxBitmap any more |
2bda0e17 KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
6c9a19aa JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
0d0512bd VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 | 20 | #ifdef __GNUG__ |
0d0512bd | 21 | #pragma implementation "icon.h" |
2bda0e17 KB |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
0d0512bd | 28 | #pragma hdrstop |
2bda0e17 KB |
29 | #endif |
30 | ||
31 | #ifndef WX_PRECOMP | |
0d0512bd VZ |
32 | #include "wx/defs.h" |
33 | #include "wx/list.h" | |
34 | #include "wx/utils.h" | |
35 | #include "wx/app.h" | |
36 | #include "wx/icon.h" | |
f02b73c4 | 37 | #include "wx/bitmap.h" |
f94dfb38 | 38 | #include "wx/log.h" |
2bda0e17 KB |
39 | #endif |
40 | ||
41 | #include "wx/msw/private.h" | |
2bda0e17 | 42 | |
0d0512bd VZ |
43 | // ---------------------------------------------------------------------------- |
44 | // wxWin macros | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
621b3e21 | 47 | IMPLEMENT_DYNAMIC_CLASS(wxIcon, wxGDIObject) |
2bda0e17 | 48 | |
0d0512bd VZ |
49 | // ============================================================================ |
50 | // implementation | |
51 | // ============================================================================ | |
2bda0e17 | 52 | |
0d0512bd VZ |
53 | // ---------------------------------------------------------------------------- |
54 | // wxIconRefData | |
55 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 56 | |
0d0512bd | 57 | void wxIconRefData::Free() |
2bda0e17 | 58 | { |
0d0512bd | 59 | if ( m_hIcon ) |
032af30f | 60 | { |
04ef50df | 61 | #ifndef __WXMICROWIN__ |
0d0512bd | 62 | ::DestroyIcon((HICON) m_hIcon); |
04ef50df | 63 | #endif |
032af30f VZ |
64 | |
65 | m_hIcon = 0; | |
66 | } | |
2bda0e17 KB |
67 | } |
68 | ||
0d0512bd VZ |
69 | // ---------------------------------------------------------------------------- |
70 | // wxIcon | |
71 | // ---------------------------------------------------------------------------- | |
2bda0e17 | 72 | |
4b7f2165 | 73 | wxIcon::wxIcon(const char bits[], int width, int height) |
2bda0e17 | 74 | { |
4b7f2165 VZ |
75 | wxBitmap bmp(bits, width, height); |
76 | CopyFromBitmap(bmp); | |
2bda0e17 KB |
77 | } |
78 | ||
0d0512bd VZ |
79 | wxIcon::wxIcon(const wxString& iconfile, |
80 | long flags, | |
81 | int desiredWidth, | |
82 | int desiredHeight) | |
2bda0e17 KB |
83 | |
84 | { | |
0d0512bd | 85 | LoadFile(iconfile, flags, desiredWidth, desiredHeight); |
2bda0e17 KB |
86 | } |
87 | ||
0d0512bd | 88 | wxIcon::~wxIcon() |
2bda0e17 KB |
89 | { |
90 | } | |
91 | ||
4b7f2165 VZ |
92 | void wxIcon::CopyFromBitmap(const wxBitmap& bmp) |
93 | { | |
04ef50df | 94 | #ifndef __WXMICROWIN__ |
7fd328a3 | 95 | HICON hicon = wxBitmapToHICON(bmp); |
4b7f2165 VZ |
96 | if ( !hicon ) |
97 | { | |
f6bcfd97 | 98 | wxLogLastError(wxT("CreateIconIndirect")); |
4b7f2165 VZ |
99 | } |
100 | else | |
101 | { | |
102 | SetHICON((WXHICON)hicon); | |
103 | SetSize(bmp.GetWidth(), bmp.GetHeight()); | |
104 | } | |
7fd328a3 | 105 | #endif // __WXMICROWIN__ |
4b7f2165 VZ |
106 | } |
107 | ||
108 | void wxIcon::CreateIconFromXpm(const char **data) | |
109 | { | |
110 | wxBitmap bmp(data); | |
111 | CopyFromBitmap(bmp); | |
112 | } | |
113 | ||
0d0512bd VZ |
114 | bool wxIcon::LoadFile(const wxString& filename, |
115 | long type, | |
116 | int desiredWidth, int desiredHeight) | |
2bda0e17 | 117 | { |
0d0512bd | 118 | UnRef(); |
2bda0e17 | 119 | |
0d0512bd | 120 | wxGDIImageHandler *handler = FindHandler(type); |
2bda0e17 | 121 | |
0d0512bd | 122 | if ( !handler ) |
2bda0e17 | 123 | { |
0d0512bd VZ |
124 | // say something? |
125 | return FALSE; | |
2bda0e17 KB |
126 | } |
127 | ||
0d0512bd | 128 | return handler->Load(this, filename, type, desiredWidth, desiredHeight); |
2bda0e17 KB |
129 | } |
130 |