• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/drawing/

Lines Matching refs:DrawText

184     void DrawText(wxDC& dc);
436 dc.DrawText(_T("Solid green"), x + 10, y + 10);
441 dc.DrawText(_T("Hatched red"), x + 10, y + 10);
446 dc.DrawText(_T("Stipple mono"), x + 10, y + 10);
451 dc.DrawText(_T("Stipple colour"), x + 10, y + 10);
466 dc.DrawText(_T("You should see two (irregular) stars below, the left one ")
468 dc.DrawText(_T("except for the central region and the right ")
470 dc.DrawText(_T("The third star only has a hatched outline"), 10, 50);
495 dc.DrawText(wxString::Format(wxT("Testing lines of width %d"), width), x + 10, y - 10);
498 dc.DrawText(_T("Solid/dot/short dash/long dash/dot dash"), x + 150, y + 10);
510 dc.DrawText(_T("Misc hatches"), x + 150, y + 70);
524 dc.DrawText(_T("User dash"), x + 150, y + 140);
757 void MyCanvas::DrawText(wxDC& dc)
761 dc.DrawText( _T("This is text"), 110, 10 );
779 dc.DrawText( _T("This is Swiss 18pt text."), 110, 40 );
786 dc.DrawText( text, 110, 80 );
789 dc.DrawText( text, 110, 120 );
796 dc.DrawText( _T("There should be no text below"), 110, 150 );
801 dc.DrawText( _T("Invisible text"), 110, y );
803 dc.DrawText( _T("Invisible text"), 110, y );
809 dc.DrawText( _T("Visible text"), 110, y );
837 dc.DrawText(_T("original image"), 0, 0);
839 dc.DrawText(_T("with colour mask"), 0, 100);
841 dc.DrawText(_T("the mask image"), 0, 200);
843 dc.DrawText(_T("masked image"), 0, 300);
855 dc.DrawText(rasterOperations[n].name, x, y - 20);
876 dc.DrawText(rasterOperations[n].name, x, y - 20);
891 dc.DrawText(rasterOperations[n].name, x, y - 20);
940 dc.DrawText( wxT("Hello!"), 120, 80 );
954 dc.DrawText(_T("Some circles"), 0, y);
960 dc.DrawText(_T("And ellipses"), 0, y);
966 dc.DrawText(_T("And arcs"), 0, y);
983 dc.DrawText(_T("Some circles"), 0, y);
989 dc.DrawText(_T("And ellipses"), 0, y);
995 dc.DrawText(_T("And arcs"), 0, y);
1011 dc.DrawText(_T("Some splines"), 10, 5);
1092 dc.DrawText(_T("Splines not supported."), 10, 5);
1102 dc.DrawText(_T("wxRIGHT"), r.x, r.y);
1107 dc.DrawText(_T("wxLEFT"), r.x, r.y);
1112 dc.DrawText(_T("wxDOWN"), r.x, r.y);
1117 dc.DrawText(_T("wxUP"), r.x, r.y);
1124 dc.DrawText(_T("Blue inside"), r.x, r.y);
1129 dc.DrawText(_T("White inside"), r.x, r.y);
1134 dc.DrawText(_T("Blue in top left corner"), r.x, r.y);
1139 dc.DrawText(_T("Blue in bottom right corner"), r.x, r.y);
1146 dc.DrawText(_T("You should see a red rect partly covered by a cyan one ")
1148 dc.DrawText(_T("and 5 smileys from which 4 are partially clipped on the right"),
1150 dc.DrawText(_T("The second copy should be identical but right part of it ")
1261 DrawText(dc);