Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        printps.h
 | |
| // Purpose:     wxPostScriptPrinter, wxPostScriptPrintPreview
 | |
| //              wxGenericPageSetupDialog
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:     01/02/97
 | |
| // RCS-ID:      $Id: printps.h 35650 2005-09-23 12:56:45Z MR $
 | |
| // Copyright:   (c) Julian Smart
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef __PRINTPSH__
 | |
| #define __PRINTPSH__
 | |
| 
 | |
| #include "wx/prntbase.h"
 | |
| 
 | |
| #if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT
 | |
| 
 | |
| // ----------------------------------------------------------------------------
 | |
| // Represents the printer: manages printing a wxPrintout object
 | |
| // ----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLEXPORT wxPostScriptPrinter : public wxPrinterBase
 | |
| {
 | |
| public:
 | |
|     wxPostScriptPrinter(wxPrintDialogData *data = (wxPrintDialogData *) NULL);
 | |
|     virtual ~wxPostScriptPrinter();
 | |
| 
 | |
|     virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = true);
 | |
|     virtual wxDC* PrintDialog(wxWindow *parent);
 | |
|     virtual bool Setup(wxWindow *parent);
 | |
| 
 | |
| private:
 | |
|     DECLARE_DYNAMIC_CLASS(wxPostScriptPrinter)
 | |
| };
 | |
| 
 | |
| // ----------------------------------------------------------------------------
 | |
| // wxPrintPreview: programmer creates an object of this class to preview a
 | |
| // wxPrintout.
 | |
| // ----------------------------------------------------------------------------
 | |
| 
 | |
| class WXDLLEXPORT wxPostScriptPrintPreview : public wxPrintPreviewBase
 | |
| {
 | |
| public:
 | |
|     wxPostScriptPrintPreview(wxPrintout *printout,
 | |
|                              wxPrintout *printoutForPrinting = (wxPrintout *) NULL,
 | |
|                              wxPrintDialogData *data = (wxPrintDialogData *) NULL);
 | |
|     wxPostScriptPrintPreview(wxPrintout *printout,
 | |
|                              wxPrintout *printoutForPrinting,
 | |
|                              wxPrintData *data);
 | |
| 
 | |
|     virtual ~wxPostScriptPrintPreview();
 | |
| 
 | |
|     virtual bool Print(bool interactive);
 | |
|     virtual void DetermineScaling();
 | |
| 
 | |
| private:
 | |
|     void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);
 | |
| 
 | |
| private:
 | |
|     DECLARE_CLASS(wxPostScriptPrintPreview)
 | |
| };
 | |
| 
 | |
| #endif
 | |
| 
 | |
| #endif
 | |
| // __PRINTPSH__
 |