]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/tech/tn0015.txt
update KDE guide link; added to the list of the 'Changes which are compatible' the...
[wxWidgets.git] / docs / tech / tn0015.txt
... / ...
CommitLineData
1 How to add new bitmaps to wxWidgets UI elements
2 ===============================================
3
40. Introduction
5---------------
6
7Since the introduction of wxArtProvider class, it is no longer desired to
8hardcode art resources (e.g. icons and toolbar or button bitmaps) into the
9code. This was previously done either by including the bitmap in win32
10resource file (include/wx/msw/wx.rc) or by including XPM files in the code.
11
12wxArtProvider should be used instead, to allow users to customize the look of
13their wxWidgets app. This technote is a detailed description of steps needed
14when adding new bitmap/icon.
15
161. Adding new resource
17----------------------
18
19(Please see wxArtProvider reference documentation for explanation of "art ID"
20 and "art client" terms.)
21
22First of all, you have to add new wxArtID constant to include/wx/artprov.h.
23Look for "Art IDs" and add new definition to the list, e.g.
24 #define wxART_MY_BITMAP wxART_MAKE_ART_ID(wxART_MY_BITMAP)
25
26Add it to docs/latex/wx/artprov.tex, too.
27
28It may happen that the intended use of the new resource doesn't fit into any
29of defined client categories (search for "Art clients" in the header). In case
30the new resource is part of a larger category, you need to define a new
31client. Just add it to the list of existing clients (and don't forget to
32update artprov.tex):
33 #define wxART_MY_CLIENT wxART_MAKE_CLIENT_ID(wxART_MY_CLIENT)
34
35Alternatively, you may use wxART_OTHER when accessing the resource if the
36bitmap is standalone.
37
38Once the header is updated, it's time to add XPM file with the bitmap to
39$(wx)/art. Add it to $(wx)/art if it is platform-independent or to
40$(wx)/art/$(toolkit) if it is something specific to one of the toolkits. Note
41that "specific to one of the toolkits" doesn't mean that the bitmap is *used*
42by only one toolkit, but that it doesn't make sense for any of the others! For
43example, a GTK wxART_WARNING icon ($(wx)/art/gtk/warning.xpm) is specific to
44wxGTK, but new_dir.xpm makes sense even under wxMSW even though it is
45currently only used by the generic file dialog. Remember that wxArtProvider
46can be used by users, not only the library.
47
48Finally, wxDefaultArtProvider in $(wx)/src/common/artstd.cpp must be updated.
49This consists of two steps:
50
51 a) add #include line for your XPM file, e.g. #include "../../art/my_bmp.xpm"
52 b) add ART(...) line to wxDefaultArtProvider::CreateBitmap(). The first
53 argument is wxArtID, the other is XPM file name (w/o extension), e.g.
54 ART(wxART_MY_BITMAP, my_bmp)
55
56That's all. The bitmap is now available to wxArtProvider users.
57
58Note: there's no difference between icons and bitmaps, always treat them as
59bitmaps inside wx(Default)ArtProvider.
60
612. Accessing the resource
62-------------------------
63
64The file that will use the bitmap needs to include "wx/artprov.h". The code to
65access the bitmap (or icon) is trivial:
66
67 wxBitmap bmp = wxArtProvider::GetBitmap(wxART_MY_BITMAP, wxART_MY_CLIENT);
68 // this would be "wxBitmap bmp(my_bmp_xpm);" before
69 wxIcon icon = wxArtProvider::GetIcon(wxART_MY_ICON, wxART_MY_CLIENT);
70
71Substitute wxART_MY_CLIENT in the example with a suitable client ID. If the
72client is wxART_OTHER you may write only
73
74 wxArtProvider::GetBitmap(wxART_MY_BITMAP).
75
763. Providing a demo
77-------------------
78
79It is highly desirable to let the users know what stock bitmaps are available
80in wxWidgets. The "artprov" sample serves this purpose: it contains a browser
81dialog that displays all available art resources.
82
83It has to be updated to accommodate for new bitmaps. Fortunately, this is
84trivial: open $(wx)/samples/artprov/artbrows.cpp in text editor and
85ART_ICON(wxART_MY_BITMAP) line to the FillBitmaps() function.
86
87Similarly, if you add a new client, please update FillClients() by adding new
88client to the end of the list.
89
90=== EOF ===
91
92Version: $Id$