]> git.saurik.com Git - wxWidgets.git/commitdiff
document all overloads of DrawText()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 22 Nov 2008 22:40:36 +0000 (22:40 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 22 Nov 2008 22:40:36 +0000 (22:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56916 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/graphics.h

index f9427a950f3edf380ebab3cd1923440b81270991..0665da824d9a9adc5024ef70010b0eb759a30919 100644 (file)
@@ -398,11 +398,20 @@ public:
 
     //@{
     /**
-        Draws a text at the defined position, at the given angle.
+        Draws a text at the defined position.
+
+        If @a angle is specified, the string is drawn at the given angle to the
+        (default) horizontal direction. If @a backgroundBrush is specified, the
+        text is filled using it.
     */
     void DrawText(const wxString& str, wxDouble x, wxDouble y,
                   wxDouble angle);
     void DrawText(const wxString& str, wxDouble x, wxDouble y);
+    void DrawText(const wxString& str, wxDouble x, wxDouble y,
+                  const wxGraphicsBrush& backgroundBrush)
+    void DrawText(const wxString& str, wxDouble x, wxDouble y,
+                  wxDouble angle,
+                  const wxGraphicsBrush& backgroundBrush )
     //@}
 
     /**