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

Lines Matching refs:wxGnomePrintDC

466     return new wxGnomePrintDC(data);
829 dc = new wxGnomePrintDC( printdata );
848 printout->SetPPIPrinter( wxGnomePrintDC::GetResolution(),
849 wxGnomePrintDC::GetResolution() );
947 return new wxGnomePrintDC( m_printDialogData.GetPrintData() );
956 // wxGnomePrintDC
959 IMPLEMENT_CLASS(wxGnomePrintDC, wxDC)
961 wxGnomePrintDC::wxGnomePrintDC( const wxPrintData& data )
985 wxGnomePrintDC::~wxGnomePrintDC()
989 bool wxGnomePrintDC::IsOk() const
994 bool wxGnomePrintDC::DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style )
999 bool wxGnomePrintDC::DoGetPixel(wxCoord x1, wxCoord y1, wxColour *col) const
1004 void wxGnomePrintDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2)
1018 void wxGnomePrintDC::DoCrossHair(wxCoord x, wxCoord y)
1022 void wxGnomePrintDC::DoDrawArc(wxCoord x1,wxCoord y1,wxCoord x2,wxCoord y2,wxCoord xc,wxCoord yc)
1078 void wxGnomePrintDC::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea)
1123 void wxGnomePrintDC::DoDrawPoint(wxCoord x, wxCoord y)
1127 void wxGnomePrintDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset)
1147 void wxGnomePrintDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int fillStyle)
1193 void wxGnomePrintDC::DoDrawPolyPolygon(int n, int count[], wxPoint points[], wxCoord xoffset, wxCoord yoffset, int fillStyle)
1198 void wxGnomePrintDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
1233 void wxGnomePrintDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius)
1302 void wxGnomePrintDC::makeEllipticalPath(wxCoord x, wxCoord y,
1348 void wxGnomePrintDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
1370 void wxGnomePrintDC::DoDrawSpline(wxList *points)
1429 bool wxGnomePrintDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
1448 void wxGnomePrintDC::DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y )
1453 void wxGnomePrintDC::DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask )
1503 void wxGnomePrintDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y )
1508 void wxGnomePrintDC::DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle)
1594 void wxGnomePrintDC::Clear()
1598 void wxGnomePrintDC::SetFont( const wxFont& font )
1617 void wxGnomePrintDC::SetPen( const wxPen& pen )
1676 void wxGnomePrintDC::SetBrush( const wxBrush& brush )
1715 void wxGnomePrintDC::SetLogicalFunction( int function )
1719 void wxGnomePrintDC::SetBackground( const wxBrush& brush )
1723 void wxGnomePrintDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
1738 void wxGnomePrintDC::DestroyClippingRegion()
1753 bool wxGnomePrintDC::StartDoc(const wxString& message)
1758 void wxGnomePrintDC::EndDoc()
1763 void wxGnomePrintDC::StartPage()
1768 void wxGnomePrintDC::EndPage()
1773 wxCoord wxGnomePrintDC::GetCharHeight() const
1783 wxCoord wxGnomePrintDC::GetCharWidth() const
1793 void wxGnomePrintDC::DoGetTextExtent(const wxString& string, wxCoord *width, wxCoord *height,
1871 void wxGnomePrintDC::DoGetSize(int* width, int* height) const
1886 void wxGnomePrintDC::DoGetSizeMM(int *width, int *height) const
1909 wxSize wxGnomePrintDC::GetPPI() const
1914 void wxGnomePrintDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
1922 void wxGnomePrintDC::SetLogicalOrigin( wxCoord x, wxCoord y )
1927 void wxGnomePrintDC::SetDeviceOrigin( wxCoord x, wxCoord y )
1932 void wxGnomePrintDC::SetPrintData(const wxPrintData& data)
1942 void wxGnomePrintDC::SetResolution(int ppi)
1946 int wxGnomePrintDC::GetResolution()
2036 m_previewPrintout->SetPPIPrinter(wxGnomePrintDC::GetResolution(), wxGnomePrintDC::GetResolution());
2040 // TODO: get better resolution information from wxGnomePrintDC, if possible.
2042 sizeDevUnits.x = (wxCoord)((float)sizeDevUnits.x * wxGnomePrintDC::GetResolution() / 72.0);
2043 sizeDevUnits.y = (wxCoord)((float)sizeDevUnits.y * wxGnomePrintDC::GetResolution() / 72.0);
2064 m_previewScaleX = (float)0.8 * 72.0 / (float)wxGnomePrintDC::GetResolution();