X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9b6dbb09746f8f5ee0549a2ff39ae0ac4c725898..6b73ac78de432fc7af184194dab711f5a872e38e:/include/wx/motif/print.h diff --git a/include/wx/motif/print.h b/include/wx/motif/print.h index 3f4b4a6b7d..9a6575ef81 100644 --- a/include/wx/motif/print.h +++ b/include/wx/motif/print.h @@ -1,56 +1,52 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: print.h +// Name: wx/motif/print.h // Purpose: wxPrinter, wxPrintPreview classes // Author: Julian Smart // Modified by: // Created: 17/09/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_PRINT_H_ #define _WX_PRINT_H_ -#ifdef __GNUG__ -#pragma interface "print.h" -#endif - #include "wx/prntbase.h" /* - * Represents the printer: manages printing a wxPrintout object - */ - +* Represents the printer: manages printing a wxPrintout object +*/ + class WXDLLEXPORT wxPrinter: public wxPrinterBase { - DECLARE_DYNAMIC_CLASS(wxPrinter) + DECLARE_DYNAMIC_CLASS(wxPrinter) - public: - wxPrinter(wxPrintData *data = NULL); - ~wxPrinter(); +public: + wxPrinter(wxPrintData *data = NULL); + virtual ~wxPrinter(); - virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE); - virtual bool PrintDialog(wxWindow *parent); - virtual bool Setup(wxWindow *parent); + virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = true); + virtual bool PrintDialog(wxWindow *parent); + virtual bool Setup(wxWindow *parent); }; /* - * wxPrintPreview - * Programmer creates an object of this class to preview a wxPrintout. - */ - +* wxPrintPreview +* Programmer creates an object of this class to preview a wxPrintout. +*/ + class WXDLLEXPORT wxPrintPreview: public wxPrintPreviewBase { - DECLARE_CLASS(wxPrintPreview) + DECLARE_CLASS(wxPrintPreview) - public: - wxPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = NULL, wxPrintData *data = NULL); - ~wxPrintPreview(); +public: + wxPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = NULL, wxPrintData *data = NULL); + virtual ~wxPrintPreview(); - virtual bool Print(bool interactive); - virtual void DetermineScaling(); + virtual bool Print(bool interactive); + virtual void DetermineScaling(); }; #endif - // _WX_PRINT_H_ +// _WX_PRINT_H_