#include "wx/colour.h"
#include "wx/gdicmn.h"
-#if defined(__WXMAC__) && defined(TARGET_CARBON)
- #if !defined(__UNIX__)
- #include <PMApplication.h>
- #endif
-#endif
-
-#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
+#if (defined(__WXMOTIF__) || defined(__WXX11__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
class WXDLLEXPORT wxPrintSetupData;
#endif
void SetChooseFull(bool flag) { chooseFull = flag; }
bool GetChooseFull() const { return chooseFull; }
- void SetColour(wxColour& colour) { dataColour = colour; }
+ void SetColour(const wxColour& colour) { dataColour = colour; }
wxColour &GetColour() { return dataColour; }
// Array of 16 custom colours
- void SetCustomColour(int i, wxColour& colour);
+ void SetCustomColour(int i, const wxColour& colour);
wxColour GetCustomColour(int i);
void operator=(const wxColourData& data);
void operator=(const wxPrintData& data);
// For compatibility
-#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
+#if (defined(__WXMOTIF__) || defined(__WXX11__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
void operator=(const wxPrintSetupData& setupData);
#endif
#endif
public:
-#ifdef __WXMSW__
+#if defined(__WXMSW__)
void* m_devMode;
void* m_devNames;
-#elif defined( __WXMAC__ )
-#if TARGET_CARBON
- PMPageFormat m_macPageFormat ;
- PMPrintSettings m_macPrintSettings ;
-#else
- THPrint m_macPrintInfo ;
-#endif
+#elif defined(__WXMAC__)
+ void* m_macPageFormat ;
+ void* m_macPrintSettings ;
#endif
private:
// paper size id member as well.
void SetPaperSize(const wxSize& sz);
- void SetPaperId(wxPaperSize& id) { m_printData.SetPaperId(id); };
+ void SetPaperId(wxPaperSize id) { m_printData.SetPaperId(id); };
// Sets the wxPrintData id, plus the paper width/height if found in the paper database.
void SetPaperSize(wxPaperSize id);