123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /****************************************************************************
- **
- ** Copyright (C) 2015 The Qt Company Ltd.
- ** Contact: http://www.qt.io/licensing/
- **
- ** This file is part of the QtWaylandCompositor module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL3$
- ** Commercial License Usage
- ** Licensees holding valid commercial Qt licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and The Qt Company. For licensing terms
- ** and conditions see http://www.qt.io/terms-conditions. For further
- ** information use the contact form at http://www.qt.io/contact-us.
- **
- ** GNU Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or later as published by the Free
- ** Software Foundation and appearing in the file LICENSE.GPL included in
- ** the packaging of this file. Please review the following information to
- ** ensure the GNU General Public License version 2.0 requirements will be
- ** met: http://www.gnu.org/licenses/gpl-2.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QWAYLANDSURFACEITEM_H
- #define QWAYLANDSURFACEITEM_H
- #include <QtWaylandCompositor/qwaylandexport.h>
- #include <QtQuick/QQuickItem>
- #include <QtQuick/qsgtexture.h>
- #include <QtQuick/qsgtextureprovider.h>
- #include <QtWaylandCompositor/qwaylandview.h>
- #include <QtWaylandCompositor/qwaylandquicksurface.h>
- Q_DECLARE_METATYPE(QWaylandQuickSurface*)
- QT_BEGIN_NAMESPACE
- class QWaylandInputDevice;
- class QWaylandQuickItemPrivate;
- class Q_WAYLAND_COMPOSITOR_EXPORT QWaylandQuickItem : public QQuickItem
- {
- Q_OBJECT
- Q_DECLARE_PRIVATE(QWaylandQuickItem)
- Q_PROPERTY(QWaylandView *view READ view CONSTANT)
- Q_PROPERTY(QWaylandCompositor *compositor READ compositor)
- Q_PROPERTY(QWaylandSurface *surface READ surface WRITE setSurface NOTIFY surfaceChanged)
- Q_PROPERTY(bool paintEnabled READ paintEnabled WRITE setPaintEnabled)
- Q_PROPERTY(bool touchEventsEnabled READ touchEventsEnabled WRITE setTouchEventsEnabled NOTIFY touchEventsEnabledChanged)
- Q_PROPERTY(QWaylandSurface::Origin origin READ origin NOTIFY originChanged)
- Q_PROPERTY(bool inputEventsEnabled READ inputEventsEnabled WRITE setInputEventsEnabled NOTIFY inputEventsEnabledChanged)
- Q_PROPERTY(bool focusOnClick READ focusOnClick WRITE setFocusOnClick NOTIFY focusOnClickChanged)
- Q_PROPERTY(bool sizeFollowsSurface READ sizeFollowsSurface WRITE setSizeFollowsSurface NOTIFY sizeFollowsSurfaceChanged)
- Q_PROPERTY(QObject *subsurfaceHandler READ subsurfaceHandler WRITE setSubsurfaceHandler NOTIFY subsurfaceHandlerChanged)
- public:
- QWaylandQuickItem(QQuickItem *parent = nullptr);
- ~QWaylandQuickItem();
- QWaylandCompositor *compositor() const;
- QWaylandView *view() const;
- QWaylandSurface *surface() const;
- void setSurface(QWaylandSurface *surface);
- QWaylandSurface::Origin origin() const;
- bool isTextureProvider() const Q_DECL_OVERRIDE;
- QSGTextureProvider *textureProvider() const Q_DECL_OVERRIDE;
- bool paintEnabled() const;
- bool touchEventsEnabled() const;
- void setTouchEventsEnabled(bool enabled);
- bool inputEventsEnabled() const;
- void setInputEventsEnabled(bool enabled);
- bool focusOnClick() const;
- void setFocusOnClick(bool focus);
- bool inputRegionContains(const QPointF &localPosition);
- bool sizeFollowsSurface() const;
- void setSizeFollowsSurface(bool sizeFollowsSurface);
- #ifndef QT_NO_IM
- QVariant inputMethodQuery(Qt::InputMethodQuery query) const Q_DECL_OVERRIDE;
- Q_INVOKABLE QVariant inputMethodQuery(Qt::InputMethodQuery query, QVariant argument) const;
- #endif
- QObject *subsurfaceHandler() const;
- void setSubsurfaceHandler(QObject*);
- protected:
- void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void hoverEnterEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
- void hoverMoveEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
- void hoverLeaveEvent(QHoverEvent *event) Q_DECL_OVERRIDE;
- void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE;
- void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
- void keyReleaseEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
- void touchEvent(QTouchEvent *event) Q_DECL_OVERRIDE;
- void mouseUngrabEvent() Q_DECL_OVERRIDE;
- #ifndef QT_NO_IM
- void inputMethodEvent(QInputMethodEvent *event) Q_DECL_OVERRIDE;
- #endif
- virtual void surfaceChangedEvent(QWaylandSurface *newSurface, QWaylandSurface *oldSurface);
- public Q_SLOTS:
- virtual void takeFocus(QWaylandInputDevice *device = nullptr);
- void setPaintEnabled(bool paintEnabled);
- void raise();
- void lower();
- private Q_SLOTS:
- void surfaceMappedChanged();
- void handleSurfaceChanged();
- void parentChanged(QWaylandSurface *newParent, QWaylandSurface *oldParent);
- void updateSize();
- void updateBuffer(bool hasBuffer);
- void updateWindow();
- void beforeSync();
- void handleSubsurfaceAdded(QWaylandSurface *childSurface);
- void handleSubsurfacePosition(const QPoint &pos);
- #ifndef QT_NO_IM
- void updateInputMethod(Qt::InputMethodQueries queries);
- #endif
- Q_SIGNALS:
- void surfaceChanged();
- void touchEventsEnabledChanged();
- void originChanged();
- void surfaceDestroyed();
- void inputEventsEnabledChanged();
- void focusOnClickChanged();
- void mouseMove(const QPointF &windowPosition);
- void mouseRelease();
- void sizeFollowsSurfaceChanged();
- void subsurfaceHandlerChanged();
- protected:
- QSGNode *updatePaintNode(QSGNode *oldNode, UpdatePaintNodeData *) Q_DECL_OVERRIDE;
- QWaylandQuickItem(QWaylandQuickItemPrivate &dd, QQuickItem *parent = nullptr);
- };
- QT_END_NAMESPACE
- #endif
|