First attempt to document raw bitmap access

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53102 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-04-10 13:21:20 +00:00
parent dd067e96c8
commit de022e4f11
3 changed files with 211 additions and 2 deletions

View File

@@ -158,6 +158,11 @@ public:
This class encapsulates the concept of a platform-dependent bitmap,
either monochrome or colour or colour with alpha channel support.
If you need direct access the bitmap data instead going through
drawing to it using wxMemoryDC you need to use the wxPixelData
class (either wxNativePixelData for RGB bitmaps or wxAlphaPixelData
for bitmaps with an additionaly alpha channel).
@note
Many wxBitmap functions take a @e type parameter, which is a value of the
@@ -178,7 +183,7 @@ public:
::wxNullBitmap
@see @ref overview_bitmap, @ref overview_bitmap_supportedformats,
wxDC::Blit, wxIcon, wxCursor, wxBitmap, wxMemoryDC
wxDC::Blit, wxIcon, wxCursor, wxMemoryDC, wxImage, wxPixelData
*/
class wxBitmap : public wxGDIObject
{