qscreen.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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 QSCREEN_H
  40. #define QSCREEN_H
  41. #include <QtCore/QList>
  42. #include <QtCore/QObject>
  43. #include <QtCore/QRect>
  44. #include <QtCore/QSize>
  45. #include <QtCore/QSizeF>
  46. #include <QtGui/QTransform>
  47. #include <QtCore/qnamespace.h>
  48. QT_BEGIN_NAMESPACE
  49. class QPlatformScreen;
  50. class QScreenPrivate;
  51. class QWindow;
  52. class QRect;
  53. class QPixmap;
  54. #ifndef QT_NO_DEBUG_STREAM
  55. class QDebug;
  56. #endif
  57. class Q_GUI_EXPORT QScreen : public QObject
  58. {
  59. Q_OBJECT
  60. Q_DECLARE_PRIVATE(QScreen)
  61. Q_PROPERTY(QString name READ name CONSTANT)
  62. Q_PROPERTY(int depth READ depth CONSTANT)
  63. Q_PROPERTY(QSize size READ size NOTIFY geometryChanged)
  64. Q_PROPERTY(QSize availableSize READ availableSize NOTIFY availableGeometryChanged)
  65. Q_PROPERTY(QSize virtualSize READ virtualSize NOTIFY virtualGeometryChanged)
  66. Q_PROPERTY(QSize availableVirtualSize READ availableVirtualSize NOTIFY virtualGeometryChanged)
  67. Q_PROPERTY(QRect geometry READ geometry NOTIFY geometryChanged)
  68. Q_PROPERTY(QRect availableGeometry READ availableGeometry NOTIFY availableGeometryChanged)
  69. Q_PROPERTY(QRect virtualGeometry READ virtualGeometry NOTIFY virtualGeometryChanged)
  70. Q_PROPERTY(QRect availableVirtualGeometry READ availableVirtualGeometry NOTIFY virtualGeometryChanged)
  71. Q_PROPERTY(QSizeF physicalSize READ physicalSize NOTIFY physicalSizeChanged)
  72. Q_PROPERTY(qreal physicalDotsPerInchX READ physicalDotsPerInchX NOTIFY physicalDotsPerInchChanged)
  73. Q_PROPERTY(qreal physicalDotsPerInchY READ physicalDotsPerInchY NOTIFY physicalDotsPerInchChanged)
  74. Q_PROPERTY(qreal physicalDotsPerInch READ physicalDotsPerInch NOTIFY physicalDotsPerInchChanged)
  75. Q_PROPERTY(qreal logicalDotsPerInchX READ logicalDotsPerInchX NOTIFY logicalDotsPerInchChanged)
  76. Q_PROPERTY(qreal logicalDotsPerInchY READ logicalDotsPerInchY NOTIFY logicalDotsPerInchChanged)
  77. Q_PROPERTY(qreal logicalDotsPerInch READ logicalDotsPerInch NOTIFY logicalDotsPerInchChanged)
  78. Q_PROPERTY(qreal devicePixelRatio READ devicePixelRatio NOTIFY physicalDotsPerInchChanged)
  79. Q_PROPERTY(Qt::ScreenOrientation primaryOrientation READ primaryOrientation NOTIFY primaryOrientationChanged)
  80. Q_PROPERTY(Qt::ScreenOrientation orientation READ orientation NOTIFY orientationChanged)
  81. Q_PROPERTY(Qt::ScreenOrientation nativeOrientation READ nativeOrientation)
  82. Q_PROPERTY(qreal refreshRate READ refreshRate NOTIFY refreshRateChanged)
  83. public:
  84. ~QScreen();
  85. QPlatformScreen *handle() const;
  86. QString name() const;
  87. int depth() const;
  88. QSize size() const;
  89. QRect geometry() const;
  90. QSizeF physicalSize() const;
  91. qreal physicalDotsPerInchX() const;
  92. qreal physicalDotsPerInchY() const;
  93. qreal physicalDotsPerInch() const;
  94. qreal logicalDotsPerInchX() const;
  95. qreal logicalDotsPerInchY() const;
  96. qreal logicalDotsPerInch() const;
  97. qreal devicePixelRatio() const;
  98. QSize availableSize() const;
  99. QRect availableGeometry() const;
  100. QList<QScreen *> virtualSiblings() const;
  101. QSize virtualSize() const;
  102. QRect virtualGeometry() const;
  103. QSize availableVirtualSize() const;
  104. QRect availableVirtualGeometry() const;
  105. Qt::ScreenOrientation primaryOrientation() const;
  106. Qt::ScreenOrientation orientation() const;
  107. Qt::ScreenOrientation nativeOrientation() const;
  108. Qt::ScreenOrientations orientationUpdateMask() const;
  109. void setOrientationUpdateMask(Qt::ScreenOrientations mask);
  110. int angleBetween(Qt::ScreenOrientation a, Qt::ScreenOrientation b) const;
  111. QTransform transformBetween(Qt::ScreenOrientation a, Qt::ScreenOrientation b, const QRect &target) const;
  112. QRect mapBetween(Qt::ScreenOrientation a, Qt::ScreenOrientation b, const QRect &rect) const;
  113. bool isPortrait(Qt::ScreenOrientation orientation) const;
  114. bool isLandscape(Qt::ScreenOrientation orientation) const;
  115. QPixmap grabWindow(WId window, int x = 0, int y = 0, int w = -1, int h = -1);
  116. qreal refreshRate() const;
  117. Q_SIGNALS:
  118. void geometryChanged(const QRect &geometry);
  119. void availableGeometryChanged(const QRect &geometry);
  120. void physicalSizeChanged(const QSizeF &size);
  121. void physicalDotsPerInchChanged(qreal dpi);
  122. void logicalDotsPerInchChanged(qreal dpi);
  123. void virtualGeometryChanged(const QRect &rect);
  124. void primaryOrientationChanged(Qt::ScreenOrientation orientation);
  125. void orientationChanged(Qt::ScreenOrientation orientation);
  126. void refreshRateChanged(qreal refreshRate);
  127. private:
  128. explicit QScreen(QPlatformScreen *screen);
  129. Q_DISABLE_COPY(QScreen)
  130. friend class QGuiApplicationPrivate;
  131. friend class QPlatformIntegration;
  132. friend class QPlatformScreen;
  133. friend class QHighDpiScaling;
  134. };
  135. #ifndef QT_NO_DEBUG_STREAM
  136. Q_GUI_EXPORT QDebug operator<<(QDebug, const QScreen *);
  137. #endif
  138. QT_END_NAMESPACE
  139. #endif // QSCREEN_H