]> git.saurik.com Git - wxWidgets.git/blame_incremental - src/common/artstd.cpp
fixing focus handling for generic controls in carbon-cfm
[wxWidgets.git] / src / common / artstd.cpp
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: 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 #if WXWIN_COMPATIBILITY_2_2
25 #include "wx/app.h"
26 #endif
27#endif
28
29#include "wx/artprov.h"
30#include "wx/image.h"
31
32// ----------------------------------------------------------------------------
33// wxDefaultArtProvider
34// ----------------------------------------------------------------------------
35
36class wxDefaultArtProvider : public wxArtProvider
37{
38protected:
39 virtual wxBitmap CreateBitmap(const wxArtID& id, const wxArtClient& client,
40 const wxSize& size);
41};
42
43// ----------------------------------------------------------------------------
44// helper macros
45// ----------------------------------------------------------------------------
46
47// Standard macro for getting a resource from XPM file:
48#define ART(artId, xpmRc) \
49 if ( id == artId ) return wxBitmap(xpmRc##_xpm);
50
51// There are two ways of getting the standard icon: either via XPMs or via
52// wxIcon ctor. This depends on the platform:
53#if defined(__WXUNIVERSAL__)
54 #define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
55#elif defined(__WXGTK__) || defined(__WXMOTIF__)
56 #define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
57#else
58 #define CREATE_STD_ICON(iconId, xpmRc) \
59 { \
60 wxIcon icon(_T(iconId)); \
61 wxBitmap bmp; \
62 bmp.CopyFromIcon(icon); \
63 return bmp; \
64 }
65#endif
66
67// Macro used in CreateBitmap to get wxICON_FOO icons:
68#define ART_MSGBOX(artId, iconId, xpmRc) \
69 if ( id == artId ) \
70 { \
71 CREATE_STD_ICON(#iconId, xpmRc) \
72 }
73
74// ----------------------------------------------------------------------------
75// wxArtProvider::InitStdProvider
76// ----------------------------------------------------------------------------
77
78/*static*/ void wxArtProvider::InitStdProvider()
79{
80 wxArtProvider::PushProvider(new wxDefaultArtProvider);
81}
82
83#if !defined(__WXGTK20__) || defined(__WXUNIVERSAL__)
84/*static*/ void wxArtProvider::InitNativeProvider()
85{
86}
87#endif
88
89
90// ----------------------------------------------------------------------------
91// XPMs with the art
92// ----------------------------------------------------------------------------
93
94// XPM hack: make the arrays const
95#define static static const
96
97#if defined(__WXGTK__)
98 #include "../../art/gtk/info.xpm"
99 #include "../../art/gtk/error.xpm"
100 #include "../../art/gtk/warning.xpm"
101 #include "../../art/gtk/question.xpm"
102#elif defined(__WXMOTIF__)
103 #include "../../art/motif/info.xpm"
104 #include "../../art/motif/error.xpm"
105 #include "../../art/motif/warning.xpm"
106 #include "../../art/motif/question.xpm"
107#endif
108
109#if wxUSE_HTML
110 #include "../../art/htmsidep.xpm"
111 #include "../../art/htmoptns.xpm"
112 #include "../../art/htmbook.xpm"
113 #include "../../art/htmfoldr.xpm"
114 #include "../../art/htmpage.xpm"
115#endif // wxUSE_HTML
116
117#include "../../art/missimg.xpm"
118#include "../../art/addbookm.xpm"
119#include "../../art/delbookm.xpm"
120#include "../../art/back.xpm"
121#include "../../art/forward.xpm"
122#include "../../art/up.xpm"
123#include "../../art/down.xpm"
124#include "../../art/toparent.xpm"
125#include "../../art/fileopen.xpm"
126#include "../../art/print.xpm"
127#include "../../art/helpicon.xpm"
128#include "../../art/tipicon.xpm"
129#include "../../art/home.xpm"
130#include "../../art/repview.xpm"
131#include "../../art/listview.xpm"
132#include "../../art/new_dir.xpm"
133#include "../../art/harddisk.xpm"
134#include "../../art/cdrom.xpm"
135#include "../../art/floppy.xpm"
136#include "../../art/removable.xpm"
137#include "../../art/folder.xpm"
138#include "../../art/folder_open.xpm"
139#include "../../art/dir_up.xpm"
140#include "../../art/exefile.xpm"
141#include "../../art/deffile.xpm"
142#include "../../art/tick.xpm"
143#include "../../art/cross.xpm"
144
145#include "../../art/filesave.xpm"
146#include "../../art/filesaveas.xpm"
147#include "../../art/copy.xpm"
148#include "../../art/cut.xpm"
149#include "../../art/paste.xpm"
150#include "../../art/delete.xpm"
151#include "../../art/new.xpm"
152#include "../../art/undo.xpm"
153#include "../../art/redo.xpm"
154#include "../../art/quit.xpm"
155#include "../../art/find.xpm"
156#include "../../art/findrepl.xpm"
157
158
159#undef static
160
161wxBitmap wxDefaultArtProvider_CreateBitmap(const wxArtID& id)
162{
163 // wxMessageBox icons:
164 ART_MSGBOX(wxART_ERROR, wxICON_ERROR, error)
165 ART_MSGBOX(wxART_INFORMATION, wxICON_INFORMATION, info)
166 ART_MSGBOX(wxART_WARNING, wxICON_WARNING, warning)
167 ART_MSGBOX(wxART_QUESTION, wxICON_QUESTION, question)
168
169 // standard icons:
170#if wxUSE_HTML
171 ART(wxART_HELP_SIDE_PANEL, htmsidep)
172 ART(wxART_HELP_SETTINGS, htmoptns)
173 ART(wxART_HELP_BOOK, htmbook)
174 ART(wxART_HELP_FOLDER, htmfoldr)
175 ART(wxART_HELP_PAGE, htmpage)
176#endif // wxUSE_HTML
177 ART(wxART_MISSING_IMAGE, missimg)
178 ART(wxART_ADD_BOOKMARK, addbookm)
179 ART(wxART_DEL_BOOKMARK, delbookm)
180 ART(wxART_GO_BACK, back)
181 ART(wxART_GO_FORWARD, forward)
182 ART(wxART_GO_UP, up)
183 ART(wxART_GO_DOWN, down)
184 ART(wxART_GO_TO_PARENT, toparent)
185 ART(wxART_GO_HOME, home)
186 ART(wxART_FILE_OPEN, fileopen)
187 ART(wxART_PRINT, print)
188 ART(wxART_HELP, helpicon)
189 ART(wxART_TIP, tipicon)
190 ART(wxART_REPORT_VIEW, repview)
191 ART(wxART_LIST_VIEW, listview)
192 ART(wxART_NEW_DIR, new_dir)
193 ART(wxART_HARDDISK, harddisk)
194 ART(wxART_FLOPPY, floppy)
195 ART(wxART_CDROM, cdrom)
196 ART(wxART_REMOVABLE, removable)
197 ART(wxART_FOLDER, folder)
198 ART(wxART_FOLDER_OPEN, folder_open)
199 ART(wxART_GO_DIR_UP, dir_up)
200 ART(wxART_EXECUTABLE_FILE, exefile)
201 ART(wxART_NORMAL_FILE, deffile)
202 ART(wxART_TICK_MARK, tick)
203 ART(wxART_CROSS_MARK, cross)
204
205 ART(wxART_FILE_SAVE, filesave)
206 ART(wxART_FILE_SAVE_AS, filesaveas)
207 ART(wxART_COPY, copy)
208 ART(wxART_CUT, cut)
209 ART(wxART_PASTE, paste)
210 ART(wxART_DELETE, delete)
211 ART(wxART_UNDO, undo)
212 ART(wxART_REDO, redo)
213 ART(wxART_QUIT, quit)
214 ART(wxART_FIND, find)
215 ART(wxART_FIND_AND_REPLACE, findrepl)
216 ART(wxART_NEW, new)
217
218
219 return wxNullBitmap;
220}
221
222// ----------------------------------------------------------------------------
223// CreateBitmap routine
224// ----------------------------------------------------------------------------
225
226wxBitmap wxDefaultArtProvider::CreateBitmap(const wxArtID& id,
227 const wxArtClient& client,
228 const wxSize& reqSize)
229{
230 wxBitmap bmp = wxDefaultArtProvider_CreateBitmap(id);
231
232#if wxUSE_IMAGE
233 if (bmp.Ok())
234 {
235 // fit into transparent image with desired size hint from the client
236 if (reqSize == wxDefaultSize)
237 {
238 // find out if there is a desired size for this client
239 wxSize bestSize = GetSizeHint(client);
240 if (bestSize != wxDefaultSize)
241 {
242 int bmp_w = bmp.GetWidth();
243 int bmp_h = bmp.GetHeight();
244 // want default size but it's smaller, paste into transparent image
245 if ((bmp_h < bestSize.x) && (bmp_w < bestSize.y))
246 {
247 wxPoint offset((bestSize.x - bmp_w)/2, (bestSize.y - bmp_h)/2);
248 wxImage img = bmp.ConvertToImage();
249 img.Resize(bestSize, offset);
250 bmp = wxBitmap(img);
251 }
252 }
253 }
254 }
255#else
256 wxUnusedVar(client);
257 wxUnusedVar(reqSize);
258#endif // wxUSE_IMAGE
259
260 return bmp;
261}