initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
36
libs/wxWidgets-3.3.1/interface/wx/dcps.h
Normal file
36
libs/wxWidgets-3.3.1/interface/wx/dcps.h
Normal file
@@ -0,0 +1,36 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: dcps.h
|
||||
// Purpose: interface of wxPostScriptDC
|
||||
// Author: wxWidgets team
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
/**
|
||||
@class wxPostScriptDC
|
||||
|
||||
This defines the wxWidgets Encapsulated PostScript device context, which
|
||||
can write PostScript files on any platform. See wxDC for descriptions of
|
||||
the member functions.
|
||||
|
||||
@section start_doc Starting a document
|
||||
|
||||
Document should be started with call to StartDoc() prior to calling any
|
||||
function to execute a drawing operation.
|
||||
However, some functions, like SetFont(), may be legitimately called even
|
||||
before StartDoc().
|
||||
|
||||
@library{wxbase}
|
||||
@category{dc}
|
||||
*/
|
||||
class wxPostScriptDC : public wxDC
|
||||
{
|
||||
public:
|
||||
wxPostScriptDC();
|
||||
|
||||
/**
|
||||
Constructs a PostScript printer device context from a wxPrintData object.
|
||||
*/
|
||||
wxPostScriptDC(const wxPrintData& printData);
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user