qpagedpaintdevice.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QPAGEDPAINTDEVICE_H
  40. #define QPAGEDPAINTDEVICE_H
  41. #include <QtGui/qpaintdevice.h>
  42. #include <QtGui/qpagelayout.h>
  43. QT_BEGIN_NAMESPACE
  44. #if defined(B0)
  45. #undef B0 // Terminal hang-up. We assume that you do not want that.
  46. #endif
  47. class QPagedPaintDevicePrivate;
  48. class Q_GUI_EXPORT QPagedPaintDevice : public QPaintDevice
  49. {
  50. public:
  51. QPagedPaintDevice();
  52. ~QPagedPaintDevice();
  53. virtual bool newPage() = 0;
  54. // ### Qt6 Remove in favor of QPage::PageSize
  55. // NOTE: Must keep in sync with QPageSize and QPrinter
  56. enum PageSize {
  57. // Existing Qt sizes
  58. A4,
  59. B5,
  60. Letter,
  61. Legal,
  62. Executive,
  63. A0,
  64. A1,
  65. A2,
  66. A3,
  67. A5,
  68. A6,
  69. A7,
  70. A8,
  71. A9,
  72. B0,
  73. B1,
  74. B10,
  75. B2,
  76. B3,
  77. B4,
  78. B6,
  79. B7,
  80. B8,
  81. B9,
  82. C5E,
  83. Comm10E,
  84. DLE,
  85. Folio,
  86. Ledger,
  87. Tabloid,
  88. Custom,
  89. // New values derived from PPD standard
  90. A10,
  91. A3Extra,
  92. A4Extra,
  93. A4Plus,
  94. A4Small,
  95. A5Extra,
  96. B5Extra,
  97. JisB0,
  98. JisB1,
  99. JisB2,
  100. JisB3,
  101. JisB4,
  102. JisB5,
  103. JisB6,
  104. JisB7,
  105. JisB8,
  106. JisB9,
  107. JisB10,
  108. // AnsiA = Letter,
  109. // AnsiB = Ledger,
  110. AnsiC,
  111. AnsiD,
  112. AnsiE,
  113. LegalExtra,
  114. LetterExtra,
  115. LetterPlus,
  116. LetterSmall,
  117. TabloidExtra,
  118. ArchA,
  119. ArchB,
  120. ArchC,
  121. ArchD,
  122. ArchE,
  123. Imperial7x9,
  124. Imperial8x10,
  125. Imperial9x11,
  126. Imperial9x12,
  127. Imperial10x11,
  128. Imperial10x13,
  129. Imperial10x14,
  130. Imperial12x11,
  131. Imperial15x11,
  132. ExecutiveStandard,
  133. Note,
  134. Quarto,
  135. Statement,
  136. SuperA,
  137. SuperB,
  138. Postcard,
  139. DoublePostcard,
  140. Prc16K,
  141. Prc32K,
  142. Prc32KBig,
  143. FanFoldUS,
  144. FanFoldGerman,
  145. FanFoldGermanLegal,
  146. EnvelopeB4,
  147. EnvelopeB5,
  148. EnvelopeB6,
  149. EnvelopeC0,
  150. EnvelopeC1,
  151. EnvelopeC2,
  152. EnvelopeC3,
  153. EnvelopeC4,
  154. // EnvelopeC5 = C5E,
  155. EnvelopeC6,
  156. EnvelopeC65,
  157. EnvelopeC7,
  158. // EnvelopeDL = DLE,
  159. Envelope9,
  160. // Envelope10 = Comm10E,
  161. Envelope11,
  162. Envelope12,
  163. Envelope14,
  164. EnvelopeMonarch,
  165. EnvelopePersonal,
  166. EnvelopeChou3,
  167. EnvelopeChou4,
  168. EnvelopeInvite,
  169. EnvelopeItalian,
  170. EnvelopeKaku2,
  171. EnvelopeKaku3,
  172. EnvelopePrc1,
  173. EnvelopePrc2,
  174. EnvelopePrc3,
  175. EnvelopePrc4,
  176. EnvelopePrc5,
  177. EnvelopePrc6,
  178. EnvelopePrc7,
  179. EnvelopePrc8,
  180. EnvelopePrc9,
  181. EnvelopePrc10,
  182. EnvelopeYou4,
  183. // Last item, with commonly used synynoms from QPagedPrintEngine / QPrinter
  184. LastPageSize = EnvelopeYou4,
  185. NPageSize = LastPageSize,
  186. NPaperSize = LastPageSize,
  187. // Convenience overloads for naming consistency
  188. AnsiA = Letter,
  189. AnsiB = Ledger,
  190. EnvelopeC5 = C5E,
  191. EnvelopeDL = DLE,
  192. Envelope10 = Comm10E
  193. };
  194. // ### Qt6 Make these virtual
  195. bool setPageLayout(const QPageLayout &pageLayout);
  196. bool setPageSize(const QPageSize &pageSize);
  197. bool setPageOrientation(QPageLayout::Orientation orientation);
  198. bool setPageMargins(const QMarginsF &margins);
  199. bool setPageMargins(const QMarginsF &margins, QPageLayout::Unit units);
  200. QPageLayout pageLayout() const;
  201. virtual void setPageSize(PageSize size);
  202. PageSize pageSize() const;
  203. virtual void setPageSizeMM(const QSizeF &size);
  204. QSizeF pageSizeMM() const;
  205. // ### Qt6 Remove in favor of QMarginsF
  206. struct Margins {
  207. qreal left;
  208. qreal right;
  209. qreal top;
  210. qreal bottom;
  211. };
  212. virtual void setMargins(const Margins &margins);
  213. Margins margins() const;
  214. protected:
  215. QPagedPaintDevice(QPagedPaintDevicePrivate *dd);
  216. QPagedPaintDevicePrivate *dd();
  217. QPageLayout devicePageLayout() const;
  218. QPageLayout &devicePageLayout();
  219. friend class QPagedPaintDevicePrivate;
  220. QPagedPaintDevicePrivate *d;
  221. };
  222. QT_END_NAMESPACE
  223. #endif