+ // Initialize from a wxPrintData object (wxPrintData should now be used instead of wxPrintSetupData).
+ // There is also an operator for initializing a wxPrintData from a wxPrintSetupData.
+ void operator=(const wxPrintData& data);
+
+public:
+ wxString m_printerCommand;
+ wxString m_previewCommand;
+ wxString m_printerFlags;
+ wxString m_printerFile;
+ int m_printerOrient;
+ double m_printerScaleX;
+ double m_printerScaleY;
+ long m_printerTranslateX;
+ long m_printerTranslateY;
+ // 1 = Preview, 2 = print to file, 3 = send to printer
+ int m_printerMode;
+ wxString m_afmPath;
+ // A name in the paper database (see paper.h)
+ wxString m_paperName;
+ bool m_printColour;
+