clarify the list of bitmap handlers natively supported.

Clarify that wxBitmap::AddHandler isn't useful to the final user; wxImage::AddHandler should be used instead.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59304 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-03-03 23:10:13 +00:00
parent 8c5c56e201
commit c83d207b76
2 changed files with 25 additions and 11 deletions

View File

@@ -44,7 +44,7 @@ enum wxImagePNGType
If you wish to extend the capabilities of wxImage, derive a class from
wxImageHandler and add the handler using wxImage::AddHandler in your
application initialisation.
application initialization.
Note that all wxImageHandlers provided by wxWidgets are part of
the @ref page_libs_wxcore library.
@@ -457,6 +457,7 @@ public:
/**
Register an image handler.
See @ref image_handlers for a list of the available handlers.
*/
static void AddHandler(wxImageHandler* handler);
@@ -1517,6 +1518,7 @@ wxImage wxNullImage;
/**
Initializes all available image handlers. For a list of available handlers,
see wxImage.
If you don't need/want all image handlers loaded
@see wxImage, wxImageHandler