]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dcprint.h | |
e54c96f1 | 3 | // Purpose: interface of wxPrinterDC |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
9 | /** | |
10 | @class wxPrinterDC | |
7c913512 | 11 | |
3a7fb603 BP |
12 | A printer device context is specific to MSW and Mac, and allows access to |
13 | any printer with a Windows or Macintosh driver. See wxDC for further | |
14 | information on device contexts, and wxDC::GetSize() for advice on achieving | |
15 | the correct scaling for the page. | |
7c913512 | 16 | |
23324ae1 FM |
17 | @library{wxcore} |
18 | @category{printing} | |
7c913512 | 19 | |
3a7fb603 | 20 | @see @ref overview_printing, wxDC |
23324ae1 FM |
21 | */ |
22 | class wxPrinterDC : public wxDC | |
23 | { | |
24 | public: | |
23324ae1 | 25 | /** |
3a7fb603 BP |
26 | Constructor. Pass a wxPrintData object with information necessary for |
27 | setting up a suitable printer device context. This is the recommended | |
28 | way to construct a wxPrinterDC. Make sure you specify a reference to a | |
29 | wxPrintData object, not a pointer - you may not even get a warning if | |
30 | you pass a pointer instead. | |
23324ae1 FM |
31 | */ |
32 | wxPrinterDC(const wxPrintData& printData); | |
23324ae1 FM |
33 | |
34 | /** | |
3a7fb603 BP |
35 | Return the rectangle in device coordinates that corresponds to the full |
36 | paper area, including the nonprinting regions of the paper. The point | |
37 | (0,0) in device coordinates is the top left corner of the page | |
38 | rectangle, which is the printable area on MSW and Mac. The coordinates | |
39 | of the top left corner of the paper rectangle will therefore have small | |
40 | negative values, while the bottom right coordinates will be somewhat | |
41 | larger than the values returned by wxDC::GetSize(). | |
23324ae1 | 42 | */ |
4ccf0566 | 43 | wxRect GetPaperRect() const; |
23324ae1 | 44 | }; |
e54c96f1 | 45 |