]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/dcmemory.h
added convenient wxON_BLOCK_EXIT_THISn() macros wrapping wxON_BLOCK_EXIT_OBJn(*this)
[wxWidgets.git] / interface / dcmemory.h
index de07c92384a08e0eda58e82c2d92e478ab9c094f..5b3d9b97db85c6e5ce49ecbc3ab848f3e9b8f31b 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        dcmemory.h
 /////////////////////////////////////////////////////////////////////////////
 // Name:        dcmemory.h
-// Purpose:     documentation for wxMemoryDC class
+// Purpose:     interface of wxMemoryDC
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -19,8 +19,7 @@
     @library{wxcore}
     @category{dc}
 
     @library{wxcore}
     @category{dc}
 
-    @seealso
-    wxBitmap, wxDC
+    @see wxBitmap, wxDC
 */
 class wxMemoryDC : public wxDC
 {
 */
 class wxMemoryDC : public wxDC
 {
@@ -41,17 +40,15 @@ public:
         this is the function you should use when you select a bitmap because you want
         to modify
         it, e.g. drawing on this DC.
         this is the function you should use when you select a bitmap because you want
         to modify
         it, e.g. drawing on this DC.
-        
         Using SelectObjectAsSource() when modifying
         the bitmap may incurr some problems related to wxBitmap being a reference
         counted object
         (see @ref overview_trefcount "reference counting overview").
         Using SelectObjectAsSource() when modifying
         the bitmap may incurr some problems related to wxBitmap being a reference
         counted object
         (see @ref overview_trefcount "reference counting overview").
-        
         Also, before using the updated bitmap data, make sure to select it out of
         context first
         (for example by selecting wxNullBitmap into the device context).
         Also, before using the updated bitmap data, make sure to select it out of
         context first
         (for example by selecting wxNullBitmap into the device context).
-        
-        @sa wxDC::DrawBitmap
+
+        @see wxDC::DrawBitmap
     */
     void SelectObject(wxBitmap& bitmap);
 
     */
     void SelectObject(wxBitmap& bitmap);
 
@@ -61,7 +58,6 @@ public:
         the DC (and therefore the bitmap) and also to use wxDC::Blit to copy
         the bitmap to a window. For this purpose, you may find wxDC::DrawIcon
         easier to use instead.
         the DC (and therefore the bitmap) and also to use wxDC::Blit to copy
         the bitmap to a window. For this purpose, you may find wxDC::DrawIcon
         easier to use instead.
-        
         If the argument is wxNullBitmap (or some other uninitialised wxBitmap) the
         current bitmap is
         selected out of the device context, and the original bitmap restored, allowing
         If the argument is wxNullBitmap (or some other uninitialised wxBitmap) the
         current bitmap is
         selected out of the device context, and the original bitmap restored, allowing
@@ -70,3 +66,4 @@ public:
     */
     void SelectObjectAsSource(const wxBitmap& bitmap);
 };
     */
     void SelectObjectAsSource(const wxBitmap& bitmap);
 };
+