X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0bc934706998c1b8ed9d2768004581eec8148475..7d59475e80c3ed8b9bb002fd402d6a7cc7dc090a:/include/wx/cmndata.h?ds=sidebyside diff --git a/include/wx/cmndata.h b/include/wx/cmndata.h index 3aa0a3e0d2..fae981643e 100644 --- a/include/wx/cmndata.h +++ b/include/wx/cmndata.h @@ -22,6 +22,10 @@ #include "wx/colour.h" #include "wx/gdicmn.h" +#if wxUSE_STREAMS +#include "wx/stream.h" +#endif + class WXDLLEXPORT wxColourData: public wxObject { public: @@ -203,6 +207,11 @@ public: void SetPrinterTranslation(long x, long y) { m_printerTranslateX = x; m_printerTranslateY = y; } void SetPrintMode(wxPrintMode printMode) { m_printMode = printMode; } +#if wxUSE_STREAMS + wxOutputStream* GetOutputStream() { return m_outputstream; } + void SetOutputStream(wxOutputStream* outputstream) { m_outputstream = outputstream; } +#endif + void operator=(const wxPrintData& data); #if defined(__WXMSW__) @@ -225,6 +234,9 @@ public: #elif defined(__WXMAC__) wxNativePrintData* m_nativePrintData ; #endif +#if wxUSE_STREAMS + wxOutputStream* m_outputstream; +#endif private: @@ -251,7 +263,7 @@ private: long m_printerTranslateX; long m_printerTranslateY; wxPrintMode m_printMode; - + private: DECLARE_DYNAMIC_CLASS(wxPrintData) };