qwaylandoutput.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2014-2015 Pier Luigi Fiorini <pierluigi.fiorini@gmail.com>
  4. ** Copyright (C) 2013 Klarälvdalens Datakonsult AB (KDAB).
  5. ** Contact: http://www.qt.io/licensing/
  6. **
  7. ** This file is part of the QtWaylandCompositor module of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL3$
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see http://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at http://www.qt.io/contact-us.
  17. **
  18. ** GNU Lesser General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU Lesser
  20. ** General Public License version 3 as published by the Free Software
  21. ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU Lesser General Public License version 3 requirements
  24. ** will be met: https://www.gnu.org/licenses/lgpl.html.
  25. **
  26. ** GNU General Public License Usage
  27. ** Alternatively, this file may be used under the terms of the GNU
  28. ** General Public License version 2.0 or later as published by the Free
  29. ** Software Foundation and appearing in the file LICENSE.GPL included in
  30. ** the packaging of this file. Please review the following information to
  31. ** ensure the GNU General Public License version 2.0 requirements will be
  32. ** met: http://www.gnu.org/licenses/gpl-2.0.html.
  33. **
  34. ** $QT_END_LICENSE$
  35. **
  36. ****************************************************************************/
  37. #ifndef QWAYLANDOUTPUT_H
  38. #define QWAYLANDOUTPUT_H
  39. #include <QtWaylandCompositor/qwaylandcompositorextension.h>
  40. #include <QtCore/QObject>
  41. #include <QObject>
  42. #include <QRect>
  43. #include <QSize>
  44. struct wl_resource;
  45. QT_BEGIN_NAMESPACE
  46. class QWaylandOutputPrivate;
  47. class QWaylandCompositor;
  48. class QWindow;
  49. class QWaylandSurface;
  50. class QWaylandView;
  51. class QWaylandClient;
  52. class QWaylandOutputSpace;
  53. class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandOutput : public QWaylandObject
  54. {
  55. Q_OBJECT
  56. Q_DECLARE_PRIVATE(QWaylandOutput)
  57. Q_PROPERTY(QWaylandCompositor *compositor READ compositor WRITE setCompositor NOTIFY compositorChanged)
  58. Q_PROPERTY(QWindow *window READ window WRITE setWindow NOTIFY windowChanged)
  59. Q_PROPERTY(QString manufacturer READ manufacturer WRITE setManufacturer NOTIFY manufacturerChanged)
  60. Q_PROPERTY(QString model READ model WRITE setModel NOTIFY modelChanged)
  61. Q_PROPERTY(QPoint position READ position WRITE setPosition NOTIFY positionChanged)
  62. Q_PROPERTY(QWaylandOutput::Mode mode READ mode WRITE setMode NOTIFY modeChanged)
  63. Q_PROPERTY(QRect geometry READ geometry NOTIFY geometryChanged)
  64. Q_PROPERTY(QRect availableGeometry READ availableGeometry WRITE setAvailableGeometry NOTIFY availableGeometryChanged)
  65. Q_PROPERTY(QSize physicalSize READ physicalSize WRITE setPhysicalSize NOTIFY physicalSizeChanged)
  66. Q_PROPERTY(QWaylandOutput::Subpixel subpixel READ subpixel WRITE setSubpixel NOTIFY subpixelChanged)
  67. Q_PROPERTY(QWaylandOutput::Transform transform READ transform WRITE setTransform NOTIFY transformChanged)
  68. Q_PROPERTY(int scaleFactor READ scaleFactor WRITE setScaleFactor NOTIFY scaleFactorChanged)
  69. Q_PROPERTY(bool sizeFollowsWindow READ sizeFollowsWindow WRITE setSizeFollowsWindow NOTIFY sizeFollowsWindowChanged)
  70. Q_ENUMS(Subpixel Transform)
  71. public:
  72. enum Subpixel {
  73. SubpixelUnknown = 0,
  74. SubpixelNone,
  75. SubpixelHorizontalRgb,
  76. SubpixelHorizontalBgr,
  77. SubpixelVerticalRgb,
  78. SubpixelVerticalBgr
  79. };
  80. Q_ENUM(Subpixel)
  81. enum Transform {
  82. TransformNormal = 0,
  83. Transform90,
  84. Transform180,
  85. Transform270,
  86. TransformFlipped,
  87. TransformFlipped90,
  88. TransformFlipped180,
  89. TransformFlipped270
  90. };
  91. Q_ENUM(Transform)
  92. struct Mode
  93. {
  94. QSize size;
  95. qreal refreshRate;
  96. };
  97. QWaylandOutput();
  98. QWaylandOutput(QWaylandCompositor *compositor, QWindow *window);
  99. ~QWaylandOutput();
  100. static QWaylandOutput *fromResource(wl_resource *resource);
  101. struct ::wl_resource *resourceForClient(QWaylandClient *client) const;
  102. QWaylandCompositor *compositor() const;
  103. void setCompositor(QWaylandCompositor *compositor);
  104. QWindow *window() const;
  105. void setWindow(QWindow *window);
  106. QString manufacturer() const;
  107. void setManufacturer(const QString &manufacturer);
  108. QString model() const;
  109. void setModel(const QString &model);
  110. QPoint position() const;
  111. void setPosition(const QPoint &pt);
  112. Mode mode() const;
  113. void setMode(const Mode &mode);
  114. QRect geometry() const;
  115. void setGeometry(const QRect &geometry);
  116. void setWidth(int newWidth);
  117. void setHeight(int newHeight);
  118. QRect availableGeometry() const;
  119. void setAvailableGeometry(const QRect &availableGeometry);
  120. QSize physicalSize() const;
  121. void setPhysicalSize(const QSize &size);
  122. Subpixel subpixel() const;
  123. void setSubpixel(const Subpixel &subpixel);
  124. Transform transform() const;
  125. void setTransform(const Transform &transform);
  126. int scaleFactor() const;
  127. void setScaleFactor(int scale);
  128. bool sizeFollowsWindow() const;
  129. void setSizeFollowsWindow(bool follow);
  130. bool physicalSizeFollowsSize() const;
  131. void setPhysicalSizeFollowsSize(bool follow);
  132. void frameStarted();
  133. void sendFrameCallbacks();
  134. void surfaceEnter(QWaylandSurface *surface);
  135. void surfaceLeave(QWaylandSurface *surface);
  136. virtual void update();
  137. Q_SIGNALS:
  138. void compositorChanged();
  139. void windowChanged();
  140. void positionChanged();
  141. void geometryChanged();
  142. void modeChanged();
  143. void availableGeometryChanged();
  144. void physicalSizeChanged();
  145. void scaleFactorChanged();
  146. void subpixelChanged();
  147. void transformChanged();
  148. void sizeFollowsWindowChanged();
  149. void physicalSizeFollowsSizeChanged();
  150. void manufacturerChanged();
  151. void modelChanged();
  152. void windowDestroyed();
  153. private Q_SLOTS:
  154. void handleWindowDestroyed();
  155. protected:
  156. bool event(QEvent *event) Q_DECL_OVERRIDE;
  157. virtual void initialize();
  158. };
  159. QT_END_NAMESPACE
  160. Q_DECLARE_METATYPE(QWaylandOutput::Mode)
  161. #endif // QWAYLANDOUTPUT_H