#include "wx/colour.h"
#include "wx/gdicmn.h"
-#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__)) && wxUSE_POSTSCRIPT
+#if defined(__WXMAC__) && defined(TARGET_CARBON) && !defined(__UNIX__)
+ #if PM_USE_SESSION_APIS
+ #include <PMCore.h>
+ #endif
+ #include <PMApplication.h>
+#endif
+
+#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
class WXDLLEXPORT wxPrintSetupData;
#endif
DECLARE_DYNAMIC_CLASS(wxFontData)
public:
wxFontData();
- wxFontData(const wxFontData& fontData);
~wxFontData();
void SetAllowSymbols(bool flag) { allowSymbols = flag; }
void SetRange(int minRange, int maxRange) { minSize = minRange; maxSize = maxRange; }
- void operator=(const wxFontData& data);
+ // encoding info is split into 2 parts: the logical wxWin encoding
+ // (wxFontEncoding) and a structure containing the native parameters for
+ // it (wxNativeEncodingInfo)
+ wxFontEncoding GetEncoding() const { return m_encoding; }
+ void SetEncoding(wxFontEncoding encoding) { m_encoding = encoding; }
+
+ wxNativeEncodingInfo& EncodingInfo() { return m_encodingInfo; }
public:
wxColour fontColour;
wxFont chosenFont;
int minSize;
int maxSize;
+
+private:
+ wxFontEncoding m_encoding;
+ wxNativeEncodingInfo m_encodingInfo;
};
#if wxUSE_PRINTING_ARCHITECTURE
void operator=(const wxPrintData& data);
// For compatibility
-#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__)) && wxUSE_POSTSCRIPT
+#if (defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXPM__) || defined(__WXMAC__)) && wxUSE_POSTSCRIPT
void operator=(const wxPrintSetupData& setupData);
#endif
void ConvertFromNative();
void* GetNativeData() const { return m_devMode; }
void SetNativeData(void* data) { m_devMode = data; }
+ void* GetNativeDataDevNames() const { return m_devNames; }
+ void SetNativeDataDevNames(void* data) { m_devNames = data; }
+#elif defined(__WXMAC__)
+ void ConvertToNative();
+ void ConvertFromNative();
#endif
public:
#ifdef __WXMSW__
void* m_devMode;
+ void* m_devNames;
+#elif defined( __WXMAC__ )
+ #if TARGET_CARBON
+ PMPageFormat m_macPageFormat ;
+ PMPrintSettings m_macPrintSettings ;
+ #else
+ THPrint m_macPrintInfo ;
+ #endif
#endif
private:
void ConvertFromNative();
void SetOwnerWindow(wxWindow* win);
void* GetNativeData() const { return m_printDlgData; }
+#elif defined(__WXMAC__)
+ void ConvertToNative();
+ void ConvertFromNative();
#endif
#ifdef __WXMSW__
void ConvertFromNative();
void SetOwnerWindow(wxWindow* win);
void* GetNativeData() const { return m_pageSetupData; }
+#elif defined(__WXMAC__)
+ void ConvertToNative();
+ void ConvertFromNative();
#endif
// Use paper size defined in this object to set the wxPrintData