summaryrefslogtreecommitdiffstats
path: root/src/compositor/global/qwaylandquickextension.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/global/qwaylandquickextension.h')
-rw-r--r--src/compositor/global/qwaylandquickextension.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/compositor/global/qwaylandquickextension.h b/src/compositor/global/qwaylandquickextension.h
index a0e07dad3..c721bcb97 100644
--- a/src/compositor/global/qwaylandquickextension.h
+++ b/src/compositor/global/qwaylandquickextension.h
@@ -107,42 +107,6 @@ QT_BEGIN_NAMESPACE
QList<QObject *> m_objects; \
};
-#define Q_COMPOSITOR_DECLARE_QUICK_PARENT_CLASS(className) \
- class Q_WAYLAND_COMPOSITOR_EXPORT className##QuickParent : public className \
- { \
-/* qmake ignore Q_OBJECT */ \
- Q_OBJECT \
- Q_PROPERTY(QQmlListProperty<QObject> data READ data DESIGNABLE false) \
- Q_CLASSINFO("DefaultProperty", "data") \
- public: \
- QQmlListProperty<QObject> data() \
- { \
- return QQmlListProperty<QObject>(this, this, \
- &className##QuickParent::appendFunction, \
- &className##QuickParent::countFunction, \
- &className##QuickParent::atFunction, \
- &className##QuickParent::clearFunction); \
- } \
- static void appendFunction(QQmlListProperty<QObject> *list, QObject *object) \
- { \
- static_cast<className##QuickParent *>(list->data)->m_children.append(object); \
- } \
- static int countFunction(QQmlListProperty<QObject> *list) \
- { \
- return static_cast<className##QuickParent *>(list->data)->m_children.size(); \
- } \
- static QObject *atFunction(QQmlListProperty<QObject> *list, int index) \
- { \
- return static_cast<className##QuickParent *>(list->data)->m_children.at(index); \
- } \
- static void clearFunction(QQmlListProperty<QObject> *list) \
- { \
- static_cast<className##QuickParent *>(list->data)->m_children.clear(); \
- } \
- private: \
- QVector<QObject *> m_children; \
- };
-
QT_END_NAMESPACE
#endif /*QWAYLANDQUICKEXTENSION_H*/