summaryrefslogtreecommitdiff
path: root/src/controls/Private/qquicksceneposlistener_p.h
diff options
context:
space:
mode:
authorChristian Strømme <christian.stromme@theqtcompany.com>2015-04-15 12:06:49 +0200
committerChristian Stromme <christian.stromme@theqtcompany.com>2015-04-15 10:50:41 +0000
commit7e86a65cb03c3a35f1c8fb3e16a55193e42930ab (patch)
tree4cc0bfc6c7925107896bd78ead3cac87a119a713 /src/controls/Private/qquicksceneposlistener_p.h
parentded73ee2ae8aa333894ab11ce2297e755ec03f3e (diff)
downloadqtquickcontrols-7e86a65cb03c3a35f1c8fb3e16a55193e42930ab.tar.gz
Add internal ScenePosListener
Makes it possible to implement floating text selection handle popups that retain correct position whilst the scene position of the attached text input control changes. The text input may be eg. in a Flickable and thus does not receive geometry change notifications since its own position in relation to the direct parent does not change. Task-number: QTBUG-42538 Change-Id: I63cb15ddb1daa7d39cbe95d6421b171cd1c01596 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/controls/Private/qquicksceneposlistener_p.h')
-rw-r--r--src/controls/Private/qquicksceneposlistener_p.h93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/controls/Private/qquicksceneposlistener_p.h b/src/controls/Private/qquicksceneposlistener_p.h
new file mode 100644
index 00000000..7f0b6f37
--- /dev/null
+++ b/src/controls/Private/qquicksceneposlistener_p.h
@@ -0,0 +1,93 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://www.qt.io/licensing/
+**
+** This file is part of the Qt Quick Controls 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 QQUICKSCENEPOSLISTENER_P_H
+#define QQUICKSCENEPOSLISTENER_P_H
+
+#include <QtCore/qobject.h>
+#include <QtCore/qpoint.h>
+#include <QtCore/qset.h>
+#include <QtQuick/private/qquickitemchangelistener_p.h>
+
+QT_BEGIN_NAMESPACE
+
+class QQuickItem;
+
+class QQuickScenePosListener : public QObject, public QQuickItemChangeListener
+{
+ Q_OBJECT
+ Q_PROPERTY(QQuickItem *item READ item WRITE setItem FINAL)
+ Q_PROPERTY(QPointF scenePos READ scenePos NOTIFY scenePosChanged FINAL)
+ Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged FINAL)
+
+public:
+ explicit QQuickScenePosListener(QObject *parent = 0);
+ ~QQuickScenePosListener();
+
+ QQuickItem *item() const;
+ void setItem(QQuickItem *item);
+
+ QPointF scenePos() const;
+
+ bool isEnabled() const;
+ void setEnabled(bool enabled);
+
+Q_SIGNALS:
+ void scenePosChanged();
+ void enabledChanged();
+
+protected:
+ void itemGeometryChanged(QQuickItem *, const QRectF &, const QRectF &);
+ void itemParentChanged(QQuickItem *, QQuickItem *parent);
+ void itemChildRemoved(QQuickItem *, QQuickItem *child);
+ void itemDestroyed(QQuickItem *item);
+
+private:
+ void updateScenePos();
+
+ void removeAncestorListeners(QQuickItem *item);
+ void addAncestorListeners(QQuickItem *item);
+
+ bool isAncestor(QQuickItem *item) const;
+
+ bool m_enabled;
+ QPointF m_scenePos;
+ QQuickItem *m_item;
+};
+
+QT_END_NAMESPACE
+
+#endif // QQUICKSCENEPOSLISTENER_P_H