allow generating PS on an output stream and not only a FILE (patch 876362)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25724 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-02-10 22:46:12 +00:00
parent 0891fcb11f
commit 244e5e34c2
6 changed files with 492 additions and 487 deletions

View File

@@ -129,7 +129,15 @@ public:
static void SetResolution(int ppi);
static int GetResolution();
void PsPrintf( const wxChar* fmt, ... );
void PsPrint( const char* psdata );
void PsPrint( int ch );
#if wxUSE_UNICODE
void PsPrint( const wxChar* psdata ) { PsPrint( wxConvUTF8.cWX2MB( psdata ) ); }
#endif
private:
static float ms_PSScaleFactor;