]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/artprov.tex
Name change replacements
[wxWidgets.git] / docs / latex / wx / artprov.tex
CommitLineData
f4fcc291
JS
1%
2% automatically generated by HelpGen $Revision$ from
3% artprov.h at 08/Apr/02 17:44:57
4%
5
6\section{\class{wxArtProvider}}\label{wxartprovider}
7
fc2171bd
JS
8wxArtProvider class is used to customize the look of wxWidgets application.
9When wxWidgets need to display an icon or a bitmap (e.g. in the standard file
e7300ec6
VS
10dialog), it does not use hard-coded resource but asks wxArtProvider for it
11instead. This way the users can plug in own wxArtProvider class and easily
12replace standard art with his/her own version. It is easy thing to do: all
13that is needed is to derive a class from wxArtProvider, override it's
14\helpref{CreateBitmap}{wxartprovidercreatebitmap} method and register the
15provider with
16\helpref{wxArtProvider::PushProvider}{wxartproviderpushprovider}:
17
18\begin{verbatim}
19 class MyProvider : public wxArtProvider
20 {
21 protected:
22 wxBitmap CreateBitmap(const wxArtID& id,
23 const wxArtClient& client,
24 const wxSize size)
25 { ... }
26 };
27 ...
28 wxArtProvider::PushProvider(new MyProvider);
29\end{verbatim}
30
31There's another way of taking advantage of this class: you can use it in your code and use
32platform native icons as provided by
33\helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap} or
34\helpref{wxArtProvider::GetIcon}{wxartprovidergeticon} (NB: this is not yet really
fc2171bd 35possible as of wxWidgets 2.3.3, the set of wxArtProvider bitmaps is too
e7300ec6
VS
36small).
37
38\membersection{Identifying art resources}
39
40Every bitmap is known to wxArtProvider under an unique ID that is used by when
41requesting a resource from it. The ID is represented by wxArtID type and can
42have one of these predefined values (you can see bitmaps represented by these
43constants in the \helpref{artprov}{sampleartprovider} sample):
44\begin{itemize}\itemsep=0pt
45\item wxART\_ADD\_BOOKMARK
46\item wxART\_DEL\_BOOKMARK
47\item wxART\_HELP\_SIDE\_PANEL
48\item wxART\_HELP\_SETTINGS
49\item wxART\_HELP\_BOOK
50\item wxART\_HELP\_FOLDER
51\item wxART\_HELP\_PAGE
52\item wxART\_GO\_BACK
53\item wxART\_GO\_FORWARD
54\item wxART\_GO\_UP
55\item wxART\_GO\_DOWN
56\item wxART\_GO\_TO\_PARENT
57\item wxART\_GO\_HOME
58\item wxART\_FILE\_OPEN
59\item wxART\_PRINT
60\item wxART\_HELP
61\item wxART\_TIP
62\item wxART\_REPORT\_VIEW
63\item wxART\_LIST\_VIEW
64\item wxART\_NEW\_DIR
65\item wxART\_FOLDER
66\item wxART\_GO\_DIR\_UP
67\item wxART\_EXECUTABLE\_FILE
68\item wxART\_NORMAL\_FILE
69\item wxART\_TICK\_MARK
70\item wxART\_CROSS\_MARK
71\item wxART\_ERROR
72\item wxART\_QUESTION
73\item wxART\_WARNING
74\item wxART\_INFORMATION
214bdb93 75\item wxART\_MISSING\_IMAGE
e7300ec6
VS
76\end{itemize}
77
78\membersection{Clients}
79
80Client is the entity that calls wxArtProvider's GetBitmap or GetIcon
81function. It is represented by wxClientID type and can have one of these
82values:
83\begin{itemize}\itemsep=0pt
84\item wxART\_TOOLBAR
85\item wxART\_MENU
86\item wxART\_FRAME\_ICON
87\item wxART\_CMN\_DIALOG
88\item wxART\_HELP\_BROWSER
89\item wxART\_MESSAGE\_BOX
90\item wxART\_OTHER (used for all requests that don't fit into any of the categories above)
91\end{itemize}
92Client ID servers as a hint to wxArtProvider that is supposed to help it to
93choose the best looking bitmap. For example it is often desirable to use
94slightly different icons in menus and toolbars even though they represent the
95same action (e.g. {\tt wx\_ART\_FILE\_OPEN}). Remember that this is really
96only a hint for wxArtProvider -- it is common that
97\helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap}
98returns identical bitmap for different {\it client} values!
99
100\wxheading{See also}
101
102See the \helpref{artprov}{sampleartprovider} sample for an example of wxArtProvider usage.
f4fcc291
JS
103
104\wxheading{Derived from}
105
106\helpref{wxObject}{wxobject}
107
108\wxheading{Include files}
109
110<wx/artprov.h>
111
e7300ec6 112\latexignore{\rtfignore{\wxheading{Members}}}
f4fcc291 113
e7300ec6 114\membersection{wxArtProvider::CreateBitmap}\label{wxartprovidercreatebitmap}
f4fcc291 115
e7300ec6 116\func{wxBitmap}{CreateBitmap}{\param{const wxArtID\& }{id}, \param{const wxArtClient\& }{client}, \param{const wxSize\& }{size}}
f4fcc291 117
e7300ec6
VS
118Derived art provider classes must override this method to create requested
119art resource. Note that returned bitmaps are cached by wxArtProvider and it is therefore
120not neccessary to optimize CreateBitmap for speed (e.g. you may create wxBitmap objects
121from XPMs here).
f4fcc291 122
e7300ec6 123\wxheading{Parameters}
f4fcc291 124
e7300ec6 125\docparam{id}{wxArtID unique identifier of the bitmap.}
f4fcc291 126
e7300ec6
VS
127\docparam{client}{wxArtClient identifier of the client (i.e. who is asking for the bitmap).
128This only servers as a hint.}
129
130\docparam{size}{Prefered size of the bitmap. The function may return a bitmap of different
131dimensions, it will be automatically rescaled to meet client's request.}
f4fcc291 132
e7300ec6 133\wxheading{Note}
f4fcc291 134
e7300ec6
VS
135This is {\bf not} part of wxArtProvider's public API, use
136\helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap} or
137\helpref{wxArtProvider::GetIcon}{wxartprovidergeticon}
138to query wxArtProvider for a resource.
f4fcc291
JS
139
140\membersection{wxArtProvider::GetBitmap}\label{wxartprovidergetbitmap}
141
e7300ec6
VS
142\func{static wxBitmap}{GetBitmap}{\param{const wxArtID\& }{id}, \param{const wxArtClient\& }{client = wxART\_OTHER}, \param{const wxSize\& }{size = wxDefaultSize}}
143
144Query registered providers for bitmap with given ID.
145
146\wxheading{Parameters}
147
148\docparam{id}{wxArtID unique identifier of the bitmap.}
149
150\docparam{client}{wxArtClient identifier of the client (i.e. who is asking for the bitmap).}
151
152\docparam{size}{Size of the returned bitmap or {\tt wxDefaultSize} if size doesn't matter.}
153
154\wxheading{Return value}
f4fcc291 155
e7300ec6 156The bitmap if one of registered providers recognizes the ID or wxNullBitmap otherwise.
f4fcc291
JS
157
158\membersection{wxArtProvider::GetIcon}\label{wxartprovidergeticon}
159
e7300ec6 160\func{static wxIcon}{GetIcon}{\param{const wxArtID\& }{id}, \param{const wxArtClient\& }{client = wxART\_OTHER}, \param{const wxSize\& }{size = wxDefaultSize}}
f4fcc291 161
e7300ec6
VS
162Same as \helpref{wxArtProvider::GetBitmap}{wxartprovidergetbitmap}, but
163return a wxIcon object (or wxNullIcon on failure).
f4fcc291
JS
164
165\membersection{wxArtProvider::PopProvider}\label{wxartproviderpopprovider}
166
e7300ec6 167\func{static bool}{PopProvider}{\void}
f4fcc291
JS
168
169Remove latest added provider and delete it.
170
171\membersection{wxArtProvider::PushProvider}\label{wxartproviderpushprovider}
172
e7300ec6 173\func{static void}{PushProvider}{\param{wxArtProvider* }{provider}}
f4fcc291 174
e7300ec6 175Register new art provider (add it to the top of providers stack).
f4fcc291
JS
176
177\membersection{wxArtProvider::RemoveProvider}\label{wxartproviderremoveprovider}
178
e7300ec6 179\func{static bool}{RemoveProvider}{\param{wxArtProvider* }{provider}}
f4fcc291 180
e7300ec6
VS
181Remove a provider from the stack. The provider must have been added previously
182and is {\it not} deleted.
f4fcc291 183