123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471 |
- /****************************************************************************
- **
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtQuick module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** 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 https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://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.LGPL3 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-3.0.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 (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
- #ifndef QQUICKITEM_H
- #define QQUICKITEM_H
- #include <QtQuick/qtquickglobal.h>
- #include <QtQml/qqml.h>
- #include <QtQml/qqmlcomponent.h>
- #include <QtCore/QObject>
- #include <QtCore/QList>
- #include <QtGui/qevent.h>
- #include <QtGui/qfont.h>
- #include <QtGui/qaccessible.h>
- QT_BEGIN_NAMESPACE
- class QQuickItem;
- class QQuickTransformPrivate;
- class Q_QUICK_EXPORT QQuickTransform : public QObject
- {
- Q_OBJECT
- public:
- explicit QQuickTransform(QObject *parent = Q_NULLPTR);
- ~QQuickTransform();
- void appendToItem(QQuickItem *);
- void prependToItem(QQuickItem *);
- virtual void applyTo(QMatrix4x4 *matrix) const = 0;
- protected Q_SLOTS:
- void update();
- protected:
- QQuickTransform(QQuickTransformPrivate &dd, QObject *parent);
- private:
- Q_DECLARE_PRIVATE(QQuickTransform)
- };
- class QCursor;
- class QQuickItemLayer;
- class QQmlV4Function;
- class QQuickState;
- class QQuickAnchorLine;
- class QQuickTransition;
- class QQuickKeyEvent;
- class QQuickAnchors;
- class QQuickItemPrivate;
- class QQuickWindow;
- class QTouchEvent;
- class QSGNode;
- class QSGTransformNode;
- class QSGTextureProvider;
- class QQuickItemGrabResult;
- class Q_QUICK_EXPORT QQuickItem : public QObject, public QQmlParserStatus
- {
- Q_OBJECT
- Q_INTERFACES(QQmlParserStatus)
- Q_PROPERTY(QQuickItem *parent READ parentItem WRITE setParentItem NOTIFY parentChanged DESIGNABLE false FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QObject> data READ data DESIGNABLE false)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QObject> resources READ resources DESIGNABLE false)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickItem> children READ children NOTIFY childrenChanged DESIGNABLE false)
- Q_PROPERTY(qreal x READ x WRITE setX NOTIFY xChanged FINAL)
- Q_PROPERTY(qreal y READ y WRITE setY NOTIFY yChanged FINAL)
- Q_PROPERTY(qreal z READ z WRITE setZ NOTIFY zChanged FINAL)
- Q_PROPERTY(qreal width READ width WRITE setWidth NOTIFY widthChanged RESET resetWidth FINAL)
- Q_PROPERTY(qreal height READ height WRITE setHeight NOTIFY heightChanged RESET resetHeight FINAL)
- Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity NOTIFY opacityChanged FINAL)
- Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
- Q_PROPERTY(bool visible READ isVisible WRITE setVisible NOTIFY visibleChanged FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickItem> visibleChildren READ visibleChildren NOTIFY visibleChildrenChanged DESIGNABLE false)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickState> states READ states DESIGNABLE false)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQmlListProperty<QQuickTransition> transitions READ transitions DESIGNABLE false)
- Q_PROPERTY(QString state READ state WRITE setState NOTIFY stateChanged)
- Q_PROPERTY(QRectF childrenRect READ childrenRect NOTIFY childrenRectChanged DESIGNABLE false FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchors * anchors READ anchors DESIGNABLE false CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine left READ left CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine right READ right CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine horizontalCenter READ horizontalCenter CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine top READ top CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine bottom READ bottom CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine verticalCenter READ verticalCenter CONSTANT FINAL)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickAnchorLine baseline READ baseline CONSTANT FINAL)
- Q_PROPERTY(qreal baselineOffset READ baselineOffset WRITE setBaselineOffset NOTIFY baselineOffsetChanged)
- Q_PROPERTY(bool clip READ clip WRITE setClip NOTIFY clipChanged)
- Q_PROPERTY(bool focus READ hasFocus WRITE setFocus NOTIFY focusChanged FINAL)
- Q_PROPERTY(bool activeFocus READ hasActiveFocus NOTIFY activeFocusChanged FINAL)
- Q_PROPERTY(bool activeFocusOnTab READ activeFocusOnTab WRITE setActiveFocusOnTab NOTIFY activeFocusOnTabChanged FINAL REVISION 1)
- Q_PROPERTY(qreal rotation READ rotation WRITE setRotation NOTIFY rotationChanged)
- Q_PROPERTY(qreal scale READ scale WRITE setScale NOTIFY scaleChanged)
- Q_PROPERTY(TransformOrigin transformOrigin READ transformOrigin WRITE setTransformOrigin NOTIFY transformOriginChanged)
- Q_PROPERTY(QPointF transformOriginPoint READ transformOriginPoint) // deprecated - see QTBUG-26423
- Q_PROPERTY(QQmlListProperty<QQuickTransform> transform READ transform DESIGNABLE false FINAL)
- Q_PROPERTY(bool smooth READ smooth WRITE setSmooth NOTIFY smoothChanged)
- Q_PROPERTY(bool antialiasing READ antialiasing WRITE setAntialiasing NOTIFY antialiasingChanged RESET resetAntialiasing)
- Q_PROPERTY(qreal implicitWidth READ implicitWidth WRITE setImplicitWidth NOTIFY implicitWidthChanged)
- Q_PROPERTY(qreal implicitHeight READ implicitHeight WRITE setImplicitHeight NOTIFY implicitHeightChanged)
- Q_PRIVATE_PROPERTY(QQuickItem::d_func(), QQuickItemLayer *layer READ layer DESIGNABLE false CONSTANT FINAL)
- Q_CLASSINFO("DefaultProperty", "data")
- Q_CLASSINFO("qt_HasQmlAccessors", "true")
- Q_CLASSINFO("qt_QmlJSWrapperFactoryMethod", "_q_createJSWrapper(QV4::ExecutionEngine*)")
- public:
- enum Flag {
- ItemClipsChildrenToShape = 0x01,
- #ifndef QT_NO_IM
- ItemAcceptsInputMethod = 0x02,
- #endif
- ItemIsFocusScope = 0x04,
- ItemHasContents = 0x08,
- ItemAcceptsDrops = 0x10
- // Remember to increment the size of QQuickItemPrivate::flags
- };
- Q_DECLARE_FLAGS(Flags, Flag)
- enum ItemChange {
- ItemChildAddedChange, // value.item
- ItemChildRemovedChange, // value.item
- ItemSceneChange, // value.window
- ItemVisibleHasChanged, // value.boolValue
- ItemParentHasChanged, // value.item
- ItemOpacityHasChanged, // value.realValue
- ItemActiveFocusHasChanged, // value.boolValue
- ItemRotationHasChanged, // value.realValue
- ItemAntialiasingHasChanged, // value.boolValue
- ItemDevicePixelRatioHasChanged // value.realValue
- };
- union ItemChangeData {
- ItemChangeData(QQuickItem *v) : item(v) {}
- ItemChangeData(QQuickWindow *v) : window(v) {}
- ItemChangeData(qreal v) : realValue(v) {}
- ItemChangeData(bool v) : boolValue(v) {}
- QQuickItem *item;
- QQuickWindow *window;
- qreal realValue;
- bool boolValue;
- };
- enum TransformOrigin {
- TopLeft, Top, TopRight,
- Left, Center, Right,
- BottomLeft, Bottom, BottomRight
- };
- Q_ENUM(TransformOrigin)
- explicit QQuickItem(QQuickItem *parent = Q_NULLPTR);
- virtual ~QQuickItem();
- QQuickWindow *window() const;
- QQuickItem *parentItem() const;
- void setParentItem(QQuickItem *parent);
- void stackBefore(const QQuickItem *);
- void stackAfter(const QQuickItem *);
- QRectF childrenRect();
- QList<QQuickItem *> childItems() const;
- bool clip() const;
- void setClip(bool);
- QString state() const;
- void setState(const QString &);
- qreal baselineOffset() const;
- void setBaselineOffset(qreal);
- QQmlListProperty<QQuickTransform> transform();
- qreal x() const;
- qreal y() const;
- QPointF position() const;
- void setX(qreal);
- void setY(qreal);
- void setPosition(const QPointF &);
- qreal width() const;
- void setWidth(qreal);
- void resetWidth();
- void setImplicitWidth(qreal);
- qreal implicitWidth() const;
- qreal height() const;
- void setHeight(qreal);
- void resetHeight();
- void setImplicitHeight(qreal);
- qreal implicitHeight() const;
- void setSize(const QSizeF &size);
- TransformOrigin transformOrigin() const;
- void setTransformOrigin(TransformOrigin);
- QPointF transformOriginPoint() const;
- void setTransformOriginPoint(const QPointF &);
- qreal z() const;
- void setZ(qreal);
- qreal rotation() const;
- void setRotation(qreal);
- qreal scale() const;
- void setScale(qreal);
- qreal opacity() const;
- void setOpacity(qreal);
- bool isVisible() const;
- void setVisible(bool);
- bool isEnabled() const;
- void setEnabled(bool);
- bool smooth() const;
- void setSmooth(bool);
- bool activeFocusOnTab() const;
- void setActiveFocusOnTab(bool);
- bool antialiasing() const;
- void setAntialiasing(bool);
- void resetAntialiasing();
- Flags flags() const;
- void setFlag(Flag flag, bool enabled = true);
- void setFlags(Flags flags);
- virtual QRectF boundingRect() const;
- virtual QRectF clipRect() const;
- bool hasActiveFocus() const;
- bool hasFocus() const;
- void setFocus(bool);
- void setFocus(bool focus, Qt::FocusReason reason);
- bool isFocusScope() const;
- QQuickItem *scopedFocusItem() const;
- bool isAncestorOf(const QQuickItem *child) const;
- Qt::MouseButtons acceptedMouseButtons() const;
- void setAcceptedMouseButtons(Qt::MouseButtons buttons);
- bool acceptHoverEvents() const;
- void setAcceptHoverEvents(bool enabled);
- #ifndef QT_NO_CURSOR
- QCursor cursor() const;
- void setCursor(const QCursor &cursor);
- void unsetCursor();
- #endif
- bool isUnderMouse() const;
- void grabMouse();
- void ungrabMouse();
- bool keepMouseGrab() const;
- void setKeepMouseGrab(bool);
- bool filtersChildMouseEvents() const;
- void setFiltersChildMouseEvents(bool filter);
- void grabTouchPoints(const QVector<int> &ids);
- void ungrabTouchPoints();
- bool keepTouchGrab() const;
- void setKeepTouchGrab(bool);
- // implemented in qquickitemgrabresult.cpp
- Q_REVISION(2) Q_INVOKABLE bool grabToImage(const QJSValue &callback, const QSize &targetSize = QSize());
- QSharedPointer<QQuickItemGrabResult> grabToImage(const QSize &targetSize = QSize());
- Q_INVOKABLE virtual bool contains(const QPointF &point) const;
- QTransform itemTransform(QQuickItem *, bool *) const;
- QPointF mapToItem(const QQuickItem *item, const QPointF &point) const;
- QPointF mapToScene(const QPointF &point) const;
- Q_REVISION(7) Q_INVOKABLE QPointF mapToGlobal(const QPointF &point) const;
- QRectF mapRectToItem(const QQuickItem *item, const QRectF &rect) const;
- QRectF mapRectToScene(const QRectF &rect) const;
- QPointF mapFromItem(const QQuickItem *item, const QPointF &point) const;
- QPointF mapFromScene(const QPointF &point) const;
- Q_REVISION(7) Q_INVOKABLE QPointF mapFromGlobal(const QPointF &point) const;
- QRectF mapRectFromItem(const QQuickItem *item, const QRectF &rect) const;
- QRectF mapRectFromScene(const QRectF &rect) const;
- void polish();
- Q_INVOKABLE void mapFromItem(QQmlV4Function*) const;
- Q_INVOKABLE void mapToItem(QQmlV4Function*) const;
- Q_INVOKABLE void forceActiveFocus();
- Q_INVOKABLE void forceActiveFocus(Qt::FocusReason reason);
- Q_REVISION(1) Q_INVOKABLE QQuickItem *nextItemInFocusChain(bool forward = true);
- Q_INVOKABLE QQuickItem *childAt(qreal x, qreal y) const;
- #ifndef QT_NO_IM
- virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
- #endif
- struct UpdatePaintNodeData {
- QSGTransformNode *transformNode;
- private:
- friend class QQuickWindowPrivate;
- UpdatePaintNodeData();
- };
- virtual bool isTextureProvider() const;
- virtual QSGTextureProvider *textureProvider() const;
- public Q_SLOTS:
- void update();
- Q_SIGNALS:
- void childrenRectChanged(const QRectF &);
- void baselineOffsetChanged(qreal);
- void stateChanged(const QString &);
- void focusChanged(bool);
- void activeFocusChanged(bool);
- Q_REVISION(1) void activeFocusOnTabChanged(bool);
- void parentChanged(QQuickItem *);
- void transformOriginChanged(TransformOrigin);
- void smoothChanged(bool);
- void antialiasingChanged(bool);
- void clipChanged(bool);
- Q_REVISION(1) void windowChanged(QQuickWindow* window);
- // XXX todo
- void childrenChanged();
- void opacityChanged();
- void enabledChanged();
- void visibleChanged();
- void visibleChildrenChanged();
- void rotationChanged();
- void scaleChanged();
- void xChanged();
- void yChanged();
- void widthChanged();
- void heightChanged();
- void zChanged();
- void implicitWidthChanged();
- void implicitHeightChanged();
- protected:
- bool event(QEvent *) Q_DECL_OVERRIDE;
- bool isComponentComplete() const;
- virtual void itemChange(ItemChange, const ItemChangeData &);
- #ifndef QT_NO_IM
- void updateInputMethod(Qt::InputMethodQueries queries = Qt::ImQueryInput);
- #endif
- bool widthValid() const; // ### better name?
- bool heightValid() const; // ### better name?
- void setImplicitSize(qreal, qreal);
- void classBegin() Q_DECL_OVERRIDE;
- void componentComplete() Q_DECL_OVERRIDE;
- virtual void keyPressEvent(QKeyEvent *event);
- virtual void keyReleaseEvent(QKeyEvent *event);
- #ifndef QT_NO_IM
- virtual void inputMethodEvent(QInputMethodEvent *);
- #endif
- virtual void focusInEvent(QFocusEvent *);
- virtual void focusOutEvent(QFocusEvent *);
- virtual void mousePressEvent(QMouseEvent *event);
- virtual void mouseMoveEvent(QMouseEvent *event);
- virtual void mouseReleaseEvent(QMouseEvent *event);
- virtual void mouseDoubleClickEvent(QMouseEvent *event);
- virtual void mouseUngrabEvent(); // XXX todo - params?
- virtual void touchUngrabEvent();
- #ifndef QT_NO_WHEELEVENT
- virtual void wheelEvent(QWheelEvent *event);
- #endif
- virtual void touchEvent(QTouchEvent *event);
- virtual void hoverEnterEvent(QHoverEvent *event);
- virtual void hoverMoveEvent(QHoverEvent *event);
- virtual void hoverLeaveEvent(QHoverEvent *event);
- #ifndef QT_NO_DRAGANDDROP
- virtual void dragEnterEvent(QDragEnterEvent *);
- virtual void dragMoveEvent(QDragMoveEvent *);
- virtual void dragLeaveEvent(QDragLeaveEvent *);
- virtual void dropEvent(QDropEvent *);
- #endif
- virtual bool childMouseEventFilter(QQuickItem *, QEvent *);
- virtual void windowDeactivateEvent();
- virtual void geometryChanged(const QRectF &newGeometry,
- const QRectF &oldGeometry);
- virtual QSGNode *updatePaintNode(QSGNode *, UpdatePaintNodeData *);
- virtual void releaseResources();
- virtual void updatePolish();
- protected:
- QQuickItem(QQuickItemPrivate &dd, QQuickItem *parent = Q_NULLPTR);
- private:
- Q_PRIVATE_SLOT(d_func(), void _q_resourceObjectDeleted(QObject *))
- Q_PRIVATE_SLOT(d_func(), quint64 _q_createJSWrapper(QV4::ExecutionEngine *))
- friend class QQuickWindow;
- friend class QQuickWindowPrivate;
- friend class QSGRenderer;
- friend class QAccessibleQuickItem;
- friend class QQuickAccessibleAttached;
- Q_DISABLE_COPY(QQuickItem)
- Q_DECLARE_PRIVATE(QQuickItem)
- };
- // XXX todo
- Q_DECLARE_OPERATORS_FOR_FLAGS(QQuickItem::Flags)
- #ifndef QT_NO_DEBUG_STREAM
- QDebug Q_QUICK_EXPORT operator<<(QDebug debug, QQuickItem *item);
- #endif
- QT_END_NAMESPACE
- QML_DECLARE_TYPE(QQuickItem)
- QML_DECLARE_TYPE(QQuickTransform)
- #endif // QQUICKITEM_H
|