- char *GetPrinterCommand();
- char *GetPrintPreviewCommand();
- char *GetPrinterOptions();
- char *GetPrinterFile();
- char *GetPaperName();
- int GetPrinterOrientation();
- void GetPrinterScaling(double* x, double* y);
- void GetPrinterTranslation(long *x, long *y);
- int GetPrinterMode();
- char *GetAFMPath();
- bool GetColour();
+ wxString GetPrinterCommand() const { return m_printerCommand; } ;
+ wxString GetPrintPreviewCommand() const { return m_previewCommand; } ;
+ wxString GetPrinterOptions() const { return m_printerFlags; };
+ wxString GetPrinterFile() const { return m_printerFile; };
+ wxString GetPaperName() const { return m_paperName; }
+ int GetPrinterOrientation() const { return m_printerOrient; };
+ void GetPrinterScaling(double* x, double* y) const { *x = m_printerScaleX; *y = m_printerScaleY; };
+ void GetPrinterTranslation(long *x, long *y) const { *x = m_printerTranslateX; *y = m_printerTranslateY; };
+ int GetPrinterMode() const { return m_printerMode; };
+ wxString GetAFMPath() const { return m_afmPath; };
+ bool GetColour() const { return m_printColour; };