- wxPostScriptDC();
-
- // Deprecated constructor
- wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
-
- // Recommended constructor
- wxPostScriptDC(const wxPrintData& printData);
-
- ~wxPostScriptDC();
-
- // Deprecated
- bool Create(const wxString& output, bool interactive = TRUE, wxWindow *parent = (wxWindow *) NULL);
-
- virtual bool Ok() const;
-
- // Deprecated: use wxGenericPrintDialog instead
- virtual bool PrinterDialog(wxWindow *parent = (wxWindow *) NULL);
-
- virtual void BeginDrawing() {}
- virtual void EndDrawing() {}
-
- void DoFloodFill(long x1, long y1, const wxColour &col, int style=wxFLOOD_SURFACE );
- bool DoGetPixel(long x1, long y1, wxColour *col) const;
-
- void DoDrawLine(long x1, long y1, long x2, long y2);
- void DoCrossHair(long x, long y) ;
- void DoDrawArc(long x1,long y1,long x2,long y2,long xc,long yc);
- void DoDrawEllipticArc(long x,long y,long w,long h,double sa,double ea);
- void DoDrawPoint(long x, long y);
- void DoDrawLines(int n, wxPoint points[], long xoffset = 0, long yoffset = 0);
- void DoDrawPolygon(int n, wxPoint points[], long xoffset = 0, long yoffset = 0, int fillStyle=wxODDEVEN_RULE);
- void DoDrawRectangle(long x, long y, long width, long height);
- void DoDrawRoundedRectangle(long x, long y, long width, long height, double radius = 20);
- void DoDrawEllipse(long x, long y, long width, long height);
-
- void DoDrawSpline(wxList *points);
-
- bool DoBlit(long xdest, long ydest, long width, long height,
- wxDC *source, long xsrc, long ysrc, int rop = wxCOPY, bool useMask = FALSE);
- inline bool CanDrawBitmap(void) const { return TRUE; }
-
- void DoDrawIcon( const wxIcon& icon, long x, long y );
- void DoDrawBitmap( const wxBitmap& bitmap, long x, long y, bool useMask=FALSE );
-
- void DoDrawText(const wxString& text, long x, long y );
-
- void Clear();
- void SetFont( const wxFont& font );
- void SetPen( const wxPen& pen );
- void SetBrush( const wxBrush& brush );
- void SetLogicalFunction( int function );
- void SetBackground( const wxBrush& brush );
-
- void SetClippingRegion(long x, long y, long width, long height);
- void SetClippingRegion( const wxRegion ®ion );
- void DestroyClippingRegion();
-
- void DoSetClippingRegionAsRegion( const wxRegion &WXUNUSED(clip) ) {}
-
- bool StartDoc(const wxString& message);
- void EndDoc();
- void StartPage();
- void EndPage();
-
- long GetCharHeight() const;
- long GetCharWidth() const;
- inline bool CanGetTextExtent(void) const { return FALSE; }
- void GetTextExtent(const wxString& string, long *x, long *y,
- long *descent = (long *) NULL,
- long *externalLeading = (long *) NULL,
- wxFont *theFont = (wxFont *) NULL ) const;
-
- void GetSize(int* width, int* height) const;
- void GetSizeMM(int *width, int *height) const;
-
- // Resolution in pixels per logical inch
- wxSize GetPPI(void) const;
-
- void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
- void SetDeviceOrigin( long x, long y );
-
- inline void SetBackgroundMode(int WXUNUSED(mode)) {}
- inline void SetPalette(const wxPalette& WXUNUSED(palette)) {}