]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/dcsvg.h
use a different method to prevent an early size_allocate,
[wxWidgets.git] / interface / dcsvg.h
index 69a506710b5f7ce22793ce8b6fc3978eacf784c5..459b0f314fd81d5672d0112b543d5cfac7761a8f 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        dcsvg.h
-// Purpose:     documentation for wxSVGFileDC class
+// Purpose:     interface of wxSVGFileDC
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -36,8 +36,7 @@
     @library{wxcore}
     @category{FIXME}
 
-    @seealso
-    @b Members
+    @see @b Members
 */
 class wxSVGFileDC : public wxDC
 {
@@ -334,8 +333,8 @@ public:
         Gets the brush used for painting the background (see
         wxSVGFileDC::SetBackground).
     */
-    wxBrush GetBackground();
-    const wxBrush GetBackground();
+    wxBrush GetBackground() const;
+    const wxBrush GetBackground() const;
     //@}
 
     /**
@@ -343,14 +342,14 @@ public:
         
         @see wxDC::SetBackgroundMode
     */
-    int GetBackgroundMode();
+    int GetBackgroundMode() const;
 
     //@{
     /**
         Gets the current brush (see wxSVGFileDC::SetBrush).
     */
-    wxBrush GetBrush();
-    const wxBrush GetBrush();
+    wxBrush GetBrush() const;
+    const wxBrush GetBrush() const;
     //@}
 
     /**
@@ -373,8 +372,8 @@ public:
     /**
         Gets the current font (see wxSVGFileDC::SetFont).
     */
-    wxFont GetFont();
-    const wxFont GetFont();
+    wxFont GetFont() const;
+    const wxFont GetFont() const;
     //@}
 
     /**
@@ -391,8 +390,8 @@ public:
     /**
         Gets the current pen (see wxSVGFileDC::SetPen).
     */
-    wxPen GetPen();
-    const wxPen GetPen();
+    wxPen GetPen() const;
+    const wxPen GetPen() const;
     //@}
 
     /**
@@ -410,8 +409,8 @@ public:
     /**
         Gets the current text background colour (see wxSVGFileDC::SetTextBackground).
     */
-    wxColour GetTextBackground();
-    const wxColour GetTextBackground();
+    wxColour GetTextBackground() const;
+    const wxColour GetTextBackground() const;
     //@}
 
     /**
@@ -437,8 +436,8 @@ public:
     /**
         Gets the current text foreground colour (see wxSVGFileDC::SetTextForeground).
     */
-    wxColour GetTextForeground();
-    const wxColour GetTextForeground();
+    wxColour GetTextForeground() const;
+    const wxColour GetTextForeground() const;
     //@}
 
     /**
@@ -648,3 +647,4 @@ public:
     */
     bool StartDoc(const wxString& message);
 };
+