qpagelayout.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2014 John Layt <jlayt@kde.org>
  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 QPAGELAYOUT_H
  40. #define QPAGELAYOUT_H
  41. #include <QtCore/qsharedpointer.h>
  42. #include <QtCore/qstring.h>
  43. #include <QtCore/qmargins.h>
  44. #include <QtGui/qpagesize.h>
  45. QT_BEGIN_NAMESPACE
  46. class QPageLayoutPrivate;
  47. class QMarginsF;
  48. class Q_GUI_EXPORT QPageLayout
  49. {
  50. public:
  51. // NOTE: Must keep in sync with QPageSize::Unit and QPrinter::Unit
  52. enum Unit {
  53. Millimeter,
  54. Point,
  55. Inch,
  56. Pica,
  57. Didot,
  58. Cicero
  59. };
  60. // NOTE: Must keep in sync with QPrinter::Orientation
  61. enum Orientation {
  62. Portrait,
  63. Landscape
  64. };
  65. enum Mode {
  66. StandardMode, // Paint Rect includes margins
  67. FullPageMode // Paint Rect excludes margins
  68. };
  69. QPageLayout();
  70. QPageLayout(const QPageSize &pageSize, Orientation orientation,
  71. const QMarginsF &margins, Unit units = Point,
  72. const QMarginsF &minMargins = QMarginsF(0, 0, 0, 0));
  73. QPageLayout(const QPageLayout &other);
  74. #ifdef Q_COMPILER_RVALUE_REFS
  75. QPageLayout &operator=(QPageLayout &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  76. #endif
  77. QPageLayout &operator=(const QPageLayout &other);
  78. ~QPageLayout();
  79. void swap(QPageLayout &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  80. friend Q_GUI_EXPORT bool operator==(const QPageLayout &lhs, const QPageLayout &rhs);
  81. bool isEquivalentTo(const QPageLayout &other) const;
  82. bool isValid() const;
  83. void setMode(Mode mode);
  84. Mode mode() const;
  85. void setPageSize(const QPageSize &pageSize,
  86. const QMarginsF &minMargins = QMarginsF(0, 0, 0, 0));
  87. QPageSize pageSize() const;
  88. void setOrientation(Orientation orientation);
  89. Orientation orientation() const;
  90. void setUnits(Unit units);
  91. Unit units() const;
  92. bool setMargins(const QMarginsF &margins);
  93. bool setLeftMargin(qreal leftMargin);
  94. bool setRightMargin(qreal rightMargin);
  95. bool setTopMargin(qreal topMargin);
  96. bool setBottomMargin(qreal bottomMargin);
  97. QMarginsF margins() const;
  98. QMarginsF margins(Unit units) const;
  99. QMargins marginsPoints() const;
  100. QMargins marginsPixels(int resolution) const;
  101. void setMinimumMargins(const QMarginsF &minMargins);
  102. QMarginsF minimumMargins() const;
  103. QMarginsF maximumMargins() const;
  104. QRectF fullRect() const;
  105. QRectF fullRect(Unit units) const;
  106. QRect fullRectPoints() const;
  107. QRect fullRectPixels(int resolution) const;
  108. QRectF paintRect() const;
  109. QRectF paintRect(Unit units) const;
  110. QRect paintRectPoints() const;
  111. QRect paintRectPixels(int resolution) const;
  112. private:
  113. friend class QPageLayoutPrivate;
  114. QExplicitlySharedDataPointer<QPageLayoutPrivate> d;
  115. };
  116. Q_DECLARE_SHARED(QPageLayout)
  117. Q_GUI_EXPORT bool operator==(const QPageLayout &lhs, const QPageLayout &rhs);
  118. inline bool operator!=(const QPageLayout &lhs, const QPageLayout &rhs)
  119. { return !operator==(lhs, rhs); }
  120. #ifndef QT_NO_DEBUG_STREAM
  121. Q_GUI_EXPORT QDebug operator<<(QDebug dbg, const QPageLayout &pageLayout);
  122. #endif
  123. QT_END_NAMESPACE
  124. Q_DECLARE_METATYPE(QPageLayout)
  125. Q_DECLARE_METATYPE(QPageLayout::Unit)
  126. Q_DECLARE_METATYPE(QPageLayout::Orientation)
  127. #endif // QPAGELAYOUT_H