]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/printps.h
Added m_isOpened variable to simulate opening/closing
[wxWidgets.git] / include / wx / generic / printps.h
index 8248fc7893d972f02d6161cb9c33470d297bec61..c3d16a02f52996f12513767bfbe6c04d4ab8f703 100644 (file)
@@ -7,51 +7,66 @@
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c)
 // Created:     01/02/97
 // RCS-ID:      $Id$
 // Copyright:   (c)
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __PRINTPSH__
 #define __PRINTPSH__
 
 /////////////////////////////////////////////////////////////////////////////
 
 #ifndef __PRINTPSH__
 #define __PRINTPSH__
 
-#ifdef __GNUG__
-#pragma interface "printps.h"
+#if defined(__GNUG__) && !defined(__APPLE__)
+    #pragma interface "printps.h"
 #endif
 
 #include "wx/prntbase.h"
 
 #endif
 
 #include "wx/prntbase.h"
 
-/*
-* Represents the printer: manages printing a wxPrintout object
-*/
+#if wxUSE_PRINTING_ARCHITECTURE && wxUSE_POSTSCRIPT
 
 
-class WXDLLEXPORT wxPostScriptPrinter: public wxPrinterBase
+// ----------------------------------------------------------------------------
+// Represents the printer: manages printing a wxPrintout object
+// ----------------------------------------------------------------------------
+
+class WXDLLEXPORT wxPostScriptPrinter : public wxPrinterBase
 {
 {
-    DECLARE_DYNAMIC_CLASS(wxPostScriptPrinter)
-        
 public:
     wxPostScriptPrinter(wxPrintDialogData *data = (wxPrintDialogData *) NULL);
 public:
     wxPostScriptPrinter(wxPrintDialogData *data = (wxPrintDialogData *) NULL);
-    ~wxPostScriptPrinter(void);
-    
+    virtual ~wxPostScriptPrinter();
+
     virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE);
     virtual wxDC* PrintDialog(wxWindow *parent);
     virtual bool Setup(wxWindow *parent);
     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.
-*/
+// ----------------------------------------------------------------------------
+// wxPrintPreview: programmer creates an object of this class to preview a
+// wxPrintout.
+// ----------------------------------------------------------------------------
 
 
-class WXDLLEXPORT wxPostScriptPrintPreview: public wxPrintPreviewBase
+class WXDLLEXPORT wxPostScriptPrintPreview : public wxPrintPreviewBase
 {
 {
-    DECLARE_CLASS(wxPostScriptPrintPreview)
-        
 public:
 public:
-    wxPostScriptPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = (wxPrintout *) NULL, wxPrintDialogData *data = (wxPrintDialogData *) NULL);
-    ~wxPostScriptPrintPreview(void);
-    
+    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 bool Print(bool interactive);
-    virtual void DetermineScaling(void);
+    virtual void DetermineScaling();
+
+private:
+    void Init(wxPrintout *printout, wxPrintout *printoutForPrinting);
+
+private:
+    DECLARE_CLASS(wxPostScriptPrintPreview)
 };
 
 };
 
+#endif
+
 #endif
 // __PRINTPSH__
 #endif
 // __PRINTPSH__