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

Lines Matching refs:wxPrinterDC

3 // Purpose:     wxPrinterDC class
29 IMPLEMENT_CLASS(wxPrinterDC, wxDC)
36 virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) = 0;
37 virtual void EndDoc( wxPrinterDC* dc ) = 0;
38 virtual void StartPage( wxPrinterDC* dc ) = 0;
39 virtual void EndPage( wxPrinterDC* dc ) = 0;
56 virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) ;
57 virtual void EndDoc( wxPrinterDC* dc ) ;
58 virtual void StartPage( wxPrinterDC* dc ) ;
59 virtual void EndPage( wxPrinterDC* dc ) ;
88 // nothing to release from print data, as wxPrinterDC has all data in its wxPrintData member
97 bool wxMacCarbonPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED(message) )
120 void wxMacCarbonPrinterDC::EndDoc( wxPrinterDC* dc )
130 void wxMacCarbonPrinterDC::StartPage( wxPrinterDC* dc )
168 void wxMacCarbonPrinterDC::EndPage( wxPrinterDC* dc )
189 virtual bool StartDoc( wxPrinterDC* dc , const wxString& message ) ;
190 virtual void EndDoc( wxPrinterDC* dc ) ;
191 virtual void StartPage( wxPrinterDC* dc ) ;
192 virtual void EndPage( wxPrinterDC* dc ) ;
244 bool wxMacClassicPrinterDC::StartDoc( wxPrinterDC* dc , const wxString& WXUNUSED(message) )
262 void wxMacClassicPrinterDC::EndDoc( wxPrinterDC* dc )
271 void wxMacClassicPrinterDC::StartPage( wxPrinterDC* dc )
289 void wxMacClassicPrinterDC::EndPage( wxPrinterDC* dc )
302 wxPrinterDC::wxPrinterDC(const wxPrintData& printdata)
322 wxPrinterDC::~wxPrinterDC(void)
327 bool wxPrinterDC::StartDoc( const wxString& message )
329 wxASSERT_MSG( Ok() , wxT("Called wxPrinterDC::StartDoc from an invalid object") ) ;
350 void wxPrinterDC::EndDoc(void)
367 void wxPrinterDC::StartPage(void)
392 void wxPrinterDC::EndPage(void)
401 wxRect wxPrinterDC::GetPaperRect()
413 void wxPrinterDC::DoGetSize(int *width, int *height) const
415 wxCHECK_RET( m_ok , _T("GetSize() doesn't work without a valid wxPrinterDC") );