+ dc.DrawLine(300, 200, 410, 200);
+
+ // test the rectangle outline drawing - there should be one pixel between
+ // the rect and the lines
+ dc.SetPen(*wxWHITE_PEN);
+ dc.SetBrush( *wxTRANSPARENT_BRUSH );
+ dc.DrawRoundedRectangle(100, 270, 49, 29, 6);
+ dc.DrawRoundedRectangle(150, 270, 49, 29, 6);
+ dc.SetPen(*wxWHITE_PEN);
+ dc.DrawLine(200, 260, 200, 310);
+ dc.DrawLine(100, 300, 210, 300);
+
+ // test the rectangle filled drawing - there should be one pixel between
+ // the rect and the lines
+ dc.SetPen(*wxTRANSPARENT_PEN);
+ dc.SetBrush( *wxWHITE_BRUSH );
+ dc.DrawRoundedRectangle(300, 270, 49, 29, 6);
+ dc.DrawRoundedRectangle(350, 270, 49, 29, 6);
+ dc.SetPen(*wxWHITE_PEN);
+ dc.DrawLine(400, 260, 400, 310);
+ dc.DrawLine(300, 300, 410, 300);
+