qquickwidget.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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 QtQuick 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 QQUICKWIDGET_H
  40. #define QQUICKWIDGET_H
  41. #include <QtWidgets/qwidget.h>
  42. #include <QtQuick/qquickwindow.h>
  43. #include <QtCore/qurl.h>
  44. #include <QtQml/qqmldebug.h>
  45. #include <QtQuickWidgets/qtquickwidgetsglobal.h>
  46. #include <QtGui/qimage.h>
  47. QT_BEGIN_NAMESPACE
  48. class QQmlEngine;
  49. class QQmlContext;
  50. class QQmlError;
  51. class QQuickItem;
  52. class QQmlComponent;
  53. class QQuickWidgetPrivate;
  54. class Q_QUICKWIDGETS_EXPORT QQuickWidget : public QWidget
  55. {
  56. Q_OBJECT
  57. Q_PROPERTY(ResizeMode resizeMode READ resizeMode WRITE setResizeMode)
  58. Q_PROPERTY(Status status READ status NOTIFY statusChanged)
  59. Q_PROPERTY(QUrl source READ source WRITE setSource DESIGNABLE true)
  60. public:
  61. explicit QQuickWidget(QWidget *parent = Q_NULLPTR);
  62. QQuickWidget(QQmlEngine* engine, QWidget *parent);
  63. explicit QQuickWidget(const QUrl &source, QWidget *parent = Q_NULLPTR);
  64. virtual ~QQuickWidget();
  65. QUrl source() const;
  66. QQmlEngine* engine() const;
  67. QQmlContext* rootContext() const;
  68. QQuickItem *rootObject() const;
  69. enum ResizeMode { SizeViewToRootObject, SizeRootObjectToView };
  70. Q_ENUM(ResizeMode)
  71. ResizeMode resizeMode() const;
  72. void setResizeMode(ResizeMode);
  73. enum Status { Null, Ready, Loading, Error };
  74. Q_ENUM(Status)
  75. Status status() const;
  76. QList<QQmlError> errors() const;
  77. QSize sizeHint() const;
  78. QSize initialSize() const;
  79. void setFormat(const QSurfaceFormat &format);
  80. QSurfaceFormat format() const;
  81. QImage grabFramebuffer() const;
  82. void setClearColor(const QColor &color);
  83. QQuickWindow *quickWindow() const;
  84. public Q_SLOTS:
  85. void setSource(const QUrl&);
  86. void setContent(const QUrl& url, QQmlComponent *component, QObject *item);
  87. Q_SIGNALS:
  88. void statusChanged(QQuickWidget::Status);
  89. void sceneGraphError(QQuickWindow::SceneGraphError error, const QString &message);
  90. private Q_SLOTS:
  91. // ### Qt 6: make these truly private slots through Q_PRIVATE_SLOT
  92. void continueExecute();
  93. void createFramebufferObject();
  94. void destroyFramebufferObject();
  95. void triggerUpdate();
  96. protected:
  97. virtual void resizeEvent(QResizeEvent *);
  98. virtual void timerEvent(QTimerEvent*);
  99. virtual void keyPressEvent(QKeyEvent *);
  100. virtual void keyReleaseEvent(QKeyEvent *);
  101. virtual void mousePressEvent(QMouseEvent *);
  102. virtual void mouseReleaseEvent(QMouseEvent *);
  103. virtual void mouseMoveEvent(QMouseEvent *);
  104. virtual void mouseDoubleClickEvent(QMouseEvent *);
  105. virtual void showEvent(QShowEvent *);
  106. virtual void hideEvent(QHideEvent *);
  107. virtual void focusInEvent(QFocusEvent * event);
  108. virtual void focusOutEvent(QFocusEvent * event);
  109. #ifndef QT_NO_WHEELEVENT
  110. virtual void wheelEvent(QWheelEvent *);
  111. #endif
  112. #ifndef QT_NO_DRAGANDDROP
  113. virtual void dragEnterEvent(QDragEnterEvent *);
  114. virtual void dragMoveEvent(QDragMoveEvent *);
  115. virtual void dragLeaveEvent(QDragLeaveEvent *);
  116. virtual void dropEvent(QDropEvent *);
  117. #endif
  118. bool event(QEvent *);
  119. private:
  120. Q_DISABLE_COPY(QQuickWidget)
  121. Q_DECLARE_PRIVATE(QQuickWidget)
  122. };
  123. QT_END_NAMESPACE
  124. #endif // QQuickWidget_H