]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/common/artstd.cpp | |
3 | // Purpose: stock wxArtProvider instance with default wxWin art | |
4 | // Author: Vaclav Slavik | |
5 | // Modified by: | |
6 | // Created: 18/03/2002 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vaclav Slavik | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // --------------------------------------------------------------------------- | |
13 | // headers | |
14 | // --------------------------------------------------------------------------- | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #if defined(__BORLANDC__) | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/image.h" | |
25 | #endif | |
26 | ||
27 | #include "wx/artprov.h" | |
28 | ||
29 | // ---------------------------------------------------------------------------- | |
30 | // wxDefaultArtProvider | |
31 | // ---------------------------------------------------------------------------- | |
32 | ||
33 | class wxDefaultArtProvider : public wxArtProvider | |
34 | { | |
35 | protected: | |
36 | virtual wxBitmap CreateBitmap(const wxArtID& id, const wxArtClient& client, | |
37 | const wxSize& size); | |
38 | }; | |
39 | ||
40 | // ---------------------------------------------------------------------------- | |
41 | // wxArtProvider::InitStdProvider | |
42 | // ---------------------------------------------------------------------------- | |
43 | ||
44 | /*static*/ void wxArtProvider::InitStdProvider() | |
45 | { | |
46 | wxArtProvider::Push(new wxDefaultArtProvider); | |
47 | } | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // helper macros | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | // Standard macro for getting a resource from XPM file: | |
54 | #define ART(artId, xpmRc) \ | |
55 | if ( id == artId ) return wxBitmap(xpmRc##_xpm); | |
56 | ||
57 | // ---------------------------------------------------------------------------- | |
58 | // XPMs with the art | |
59 | // ---------------------------------------------------------------------------- | |
60 | ||
61 | #ifndef __WXUNIVERSAL__ | |
62 | #if defined(__WXGTK__) | |
63 | #include "../../art/gtk/info.xpm" | |
64 | #include "../../art/gtk/error.xpm" | |
65 | #include "../../art/gtk/warning.xpm" | |
66 | #include "../../art/gtk/question.xpm" | |
67 | #elif defined(__WXMOTIF__) | |
68 | #include "../../art/motif/info.xpm" | |
69 | #include "../../art/motif/error.xpm" | |
70 | #include "../../art/motif/warning.xpm" | |
71 | #include "../../art/motif/question.xpm" | |
72 | #endif | |
73 | #endif // !__WXUNIVERSAL__ | |
74 | ||
75 | #if wxUSE_HTML | |
76 | #include "../../art/htmsidep.xpm" | |
77 | #include "../../art/htmoptns.xpm" | |
78 | #include "../../art/htmbook.xpm" | |
79 | #include "../../art/htmfoldr.xpm" | |
80 | #include "../../art/htmpage.xpm" | |
81 | #endif // wxUSE_HTML | |
82 | ||
83 | #include "../../art/missimg.xpm" | |
84 | #include "../../art/addbookm.xpm" | |
85 | #include "../../art/delbookm.xpm" | |
86 | #include "../../art/back.xpm" | |
87 | #include "../../art/forward.xpm" | |
88 | #include "../../art/up.xpm" | |
89 | #include "../../art/down.xpm" | |
90 | #include "../../art/toparent.xpm" | |
91 | #include "../../art/fileopen.xpm" | |
92 | #include "../../art/print.xpm" | |
93 | #include "../../art/helpicon.xpm" | |
94 | #include "../../art/tipicon.xpm" | |
95 | #include "../../art/home.xpm" | |
96 | #include "../../art/repview.xpm" | |
97 | #include "../../art/listview.xpm" | |
98 | #include "../../art/new_dir.xpm" | |
99 | #include "../../art/harddisk.xpm" | |
100 | #include "../../art/cdrom.xpm" | |
101 | #include "../../art/floppy.xpm" | |
102 | #include "../../art/removable.xpm" | |
103 | #include "../../art/folder.xpm" | |
104 | #include "../../art/folder_open.xpm" | |
105 | #include "../../art/dir_up.xpm" | |
106 | #include "../../art/exefile.xpm" | |
107 | #include "../../art/deffile.xpm" | |
108 | #include "../../art/tick.xpm" | |
109 | #include "../../art/cross.xpm" | |
110 | ||
111 | #include "../../art/filesave.xpm" | |
112 | #include "../../art/filesaveas.xpm" | |
113 | #include "../../art/copy.xpm" | |
114 | #include "../../art/cut.xpm" | |
115 | #include "../../art/paste.xpm" | |
116 | #include "../../art/delete.xpm" | |
117 | #include "../../art/new.xpm" | |
118 | #include "../../art/undo.xpm" | |
119 | #include "../../art/redo.xpm" | |
120 | #include "../../art/close.xpm" | |
121 | #include "../../art/quit.xpm" | |
122 | #include "../../art/find.xpm" | |
123 | #include "../../art/findrepl.xpm" | |
124 | ||
125 | wxBitmap wxDefaultArtProvider_CreateBitmap(const wxArtID& id) | |
126 | { | |
127 | #if !defined(__WXUNIVERSAL__) && (defined(__WXGTK__) || defined(__WXMOTIF__)) | |
128 | // wxMessageBox icons: | |
129 | ART(wxART_ERROR, error) | |
130 | ART(wxART_INFORMATION, info) | |
131 | ART(wxART_WARNING, warning) | |
132 | ART(wxART_QUESTION, question) | |
133 | #endif | |
134 | ||
135 | // standard icons: | |
136 | #if wxUSE_HTML | |
137 | ART(wxART_HELP_SIDE_PANEL, htmsidep) | |
138 | ART(wxART_HELP_SETTINGS, htmoptns) | |
139 | ART(wxART_HELP_BOOK, htmbook) | |
140 | ART(wxART_HELP_FOLDER, htmfoldr) | |
141 | ART(wxART_HELP_PAGE, htmpage) | |
142 | #endif // wxUSE_HTML | |
143 | ART(wxART_MISSING_IMAGE, missimg) | |
144 | ART(wxART_ADD_BOOKMARK, addbookm) | |
145 | ART(wxART_DEL_BOOKMARK, delbookm) | |
146 | ART(wxART_GO_BACK, back) | |
147 | ART(wxART_GO_FORWARD, forward) | |
148 | ART(wxART_GO_UP, up) | |
149 | ART(wxART_GO_DOWN, down) | |
150 | ART(wxART_GO_TO_PARENT, toparent) | |
151 | ART(wxART_GO_HOME, home) | |
152 | ART(wxART_FILE_OPEN, fileopen) | |
153 | ART(wxART_PRINT, print) | |
154 | ART(wxART_HELP, helpicon) | |
155 | ART(wxART_TIP, tipicon) | |
156 | ART(wxART_REPORT_VIEW, repview) | |
157 | ART(wxART_LIST_VIEW, listview) | |
158 | ART(wxART_NEW_DIR, new_dir) | |
159 | ART(wxART_HARDDISK, harddisk) | |
160 | ART(wxART_FLOPPY, floppy) | |
161 | ART(wxART_CDROM, cdrom) | |
162 | ART(wxART_REMOVABLE, removable) | |
163 | ART(wxART_FOLDER, folder) | |
164 | ART(wxART_FOLDER_OPEN, folder_open) | |
165 | ART(wxART_GO_DIR_UP, dir_up) | |
166 | ART(wxART_EXECUTABLE_FILE, exefile) | |
167 | ART(wxART_NORMAL_FILE, deffile) | |
168 | ART(wxART_TICK_MARK, tick) | |
169 | ART(wxART_CROSS_MARK, cross) | |
170 | ||
171 | ART(wxART_FILE_SAVE, filesave) | |
172 | ART(wxART_FILE_SAVE_AS, filesaveas) | |
173 | ART(wxART_COPY, copy) | |
174 | ART(wxART_CUT, cut) | |
175 | ART(wxART_PASTE, paste) | |
176 | ART(wxART_DELETE, delete) | |
177 | ART(wxART_UNDO, undo) | |
178 | ART(wxART_REDO, redo) | |
179 | ART(wxART_CLOSE, close) | |
180 | ART(wxART_QUIT, quit) | |
181 | ART(wxART_FIND, find) | |
182 | ART(wxART_FIND_AND_REPLACE, findrepl) | |
183 | ART(wxART_NEW, new) | |
184 | ||
185 | ||
186 | return wxNullBitmap; | |
187 | } | |
188 | ||
189 | // ---------------------------------------------------------------------------- | |
190 | // CreateBitmap routine | |
191 | // ---------------------------------------------------------------------------- | |
192 | ||
193 | wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id, | |
194 | const wxArtClient& client, | |
195 | const wxSize& reqSize) | |
196 | { | |
197 | wxBitmap bmp = wxDefaultArtProvider_CreateBitmap(id); | |
198 | ||
199 | #if wxUSE_IMAGE && (!defined(__WXMSW__) || wxUSE_WXDIB) | |
200 | if (bmp.Ok()) | |
201 | { | |
202 | // fit into transparent image with desired size hint from the client | |
203 | if (reqSize == wxDefaultSize) | |
204 | { | |
205 | // find out if there is a desired size for this client | |
206 | wxSize bestSize = GetSizeHint(client); | |
207 | if (bestSize != wxDefaultSize) | |
208 | { | |
209 | int bmp_w = bmp.GetWidth(); | |
210 | int bmp_h = bmp.GetHeight(); | |
211 | ||
212 | if ((bmp_h < bestSize.x) && (bmp_w < bestSize.y)) | |
213 | { | |
214 | // the caller wants default size, which is larger than | |
215 | // the image we have; to avoid degrading it visually by | |
216 | // scaling it up, paste it into transparent image instead: | |
217 | wxPoint offset((bestSize.x - bmp_w)/2, (bestSize.y - bmp_h)/2); | |
218 | wxImage img = bmp.ConvertToImage(); | |
219 | img.Resize(bestSize, offset); | |
220 | bmp = wxBitmap(img); | |
221 | } | |
222 | else // scale (down or mixed, but not up) | |
223 | { | |
224 | wxImage img = bmp.ConvertToImage(); | |
225 | bmp = wxBitmap | |
226 | ( | |
227 | img.Scale(bestSize.x, bestSize.y, | |
228 | wxIMAGE_QUALITY_HIGH) | |
229 | ); | |
230 | } | |
231 | } | |
232 | } | |
233 | } | |
234 | #else | |
235 | wxUnusedVar(client); | |
236 | wxUnusedVar(reqSize); | |
237 | #endif // wxUSE_IMAGE | |
238 | ||
239 | return bmp; | |
240 | } |