]> git.saurik.com Git - wxWidgets.git/commitdiff
Make text drawn by wxGraphicsContext slightly less intrusive
authorJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 13 May 2010 08:36:37 +0000 (08:36 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Thu, 13 May 2010 08:36:37 +0000 (08:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64298 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/printing/printing.cpp

index 7b172efb7fc1e23718d8b1a7dc6f3dc104dc4e3d..61fcb8d06a51291c10d17a11d98c3c7e09445323 100644 (file)
@@ -254,14 +254,14 @@ void MyApp::Draw(wxDC&dc)
 
         // draw some text
         wxString text("Text by wxGraphicsContext");
 
         // draw some text
         wxString text("Text by wxGraphicsContext");
-        gc->SetFont( m_testFont, *wxBLUE );
-        gc->DrawText(text, 50.0, 50.0);
+        gc->SetFont( m_testFont, *wxBLACK );
+        gc->DrawText(text, 25.0, 60.0);
 
         // draw rectangle around the text
         double w, h, d, el;
         gc->GetTextExtent(text, &w, &h, &d, &el);
 
         // draw rectangle around the text
         double w, h, d, el;
         gc->GetTextExtent(text, &w, &h, &d, &el);
-        gc->SetPen( *wxBLUE_PEN );
-        gc->DrawRectangle(50.0, 50.0, w, h);
+        gc->SetPen( *wxBLACK_PEN );
+        gc->DrawRectangle(25.0, 60.0, w, h);
 
         delete gc;
     }
 
         delete gc;
     }