dcps.h 763 B

1234567891011121314151617181920212223242526272829
  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name: dcps.h
  3. // Purpose: interface of wxPostScriptDC
  4. // Author: wxWidgets team
  5. // Licence: wxWindows licence
  6. /////////////////////////////////////////////////////////////////////////////
  7. /**
  8. @class wxPostScriptDC
  9. This defines the wxWidgets Encapsulated PostScript device context, which
  10. can write PostScript files on any platform. See wxDC for descriptions of
  11. the member functions.
  12. @library{wxbase}
  13. @category{dc}
  14. */
  15. class wxPostScriptDC : public wxDC
  16. {
  17. public:
  18. wxPostScriptDC();
  19. /**
  20. Constructs a PostScript printer device context from a wxPrintData object.
  21. */
  22. wxPostScriptDC(const wxPrintData& printData);
  23. };