]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/tech/tn0015.txt
reSWIGged
[wxWidgets.git] / docs / tech / tn0015.txt
index 4929e7d44a179025a42b105317c87afb45867cf6..5575d2de902cbe591f554b6194d3fadd66f7ed52 100644 (file)
@@ -21,14 +21,16 @@ when adding new bitmap/icon.
 
 First of all, you have to add new wxArtID constant to include/wx/artprov.h.
 Look for "Art IDs" and add new definition to the list, e.g.
-    #define wxART_MY_BITMAP     _T("my_bitmap")
+    #define wxART_MY_BITMAP     wxART_MAKE_ART_ID(wxART_MY_BITMAP)
+    
+Add it to docs/latex/wx/artprov.tex, too.
 
 It may happen that the intended use of the new resource doesn't fit into any
 of defined client categories (search for "Art clients" in the header). In case
 the new resource is part of a larger category, you need to define a new
-client. Just add it to the list of existing clients:
-    #define wxART_MY_CLIENT _T("my_client_C")
-(Note that you *have* to add the trailing "_C"!)
+client. Just add it to the list of existing clients (and don't forget to
+update artprov.tex):
+    #define wxART_MY_CLIENT wxART_MAKE_CLIENT_ID(wxART_MY_CLIENT)
 
 Alternatively, you may use wxART_OTHER when accessing the resource if the
 bitmap is standalone.