]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/dcps.h
   1 ///////////////////////////////////////////////////////////////////////////// 
   3 // Purpose:     interface of wxPostScriptDC 
   4 // Author:      wxWidgets team 
   6 // Licence:     wxWindows license 
   7 ///////////////////////////////////////////////////////////////////////////// 
  12     This defines the wxWidgets Encapsulated PostScript device context, which 
  13     can write PostScript files on any platform. See wxDC for descriptions of 
  19 class wxPostScriptDC 
: public wxDC
 
  23         Constructs a PostScript printer device context from a wxPrintData object. 
  25     wxPostScriptDC(const wxPrintData
& printData
); 
  28         Return resolution used in PostScript output. 
  32     static int GetResolution() const; 
  35         Set resolution (in pixels per inch) that will be used in PostScript 
  36         output. Default is 720ppi. 
  38     static void SetResolution(int ppi
);