qqmllist.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 QtQml 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 QQMLLIST_H
  40. #define QQMLLIST_H
  41. #include <QtQml/qtqmlglobal.h>
  42. #include <QtCore/qlist.h>
  43. #include <QtCore/qvariant.h>
  44. QT_BEGIN_NAMESPACE
  45. class QObject;
  46. struct QMetaObject;
  47. #ifndef QQMLLISTPROPERTY
  48. #define QQMLLISTPROPERTY
  49. template<typename T>
  50. class QQmlListProperty {
  51. public:
  52. typedef void (*AppendFunction)(QQmlListProperty<T> *, T*);
  53. typedef int (*CountFunction)(QQmlListProperty<T> *);
  54. typedef T *(*AtFunction)(QQmlListProperty<T> *, int);
  55. typedef void (*ClearFunction)(QQmlListProperty<T> *);
  56. QQmlListProperty()
  57. : object(Q_NULLPTR),
  58. data(Q_NULLPTR),
  59. append(Q_NULLPTR),
  60. count(Q_NULLPTR),
  61. at(Q_NULLPTR),
  62. clear(Q_NULLPTR),
  63. dummy1(Q_NULLPTR),
  64. dummy2(Q_NULLPTR)
  65. {}
  66. QQmlListProperty(QObject *o, QList<T *> &list)
  67. : object(o), data(&list), append(qlist_append), count(qlist_count), at(qlist_at),
  68. clear(qlist_clear),
  69. dummy1(Q_NULLPTR),
  70. dummy2(Q_NULLPTR)
  71. {}
  72. QQmlListProperty(QObject *o, void *d, AppendFunction a, CountFunction c, AtFunction t,
  73. ClearFunction r )
  74. : object(o),
  75. data(d),
  76. append(a),
  77. count(c),
  78. at(t),
  79. clear(r),
  80. dummy1(Q_NULLPTR),
  81. dummy2(Q_NULLPTR)
  82. {}
  83. QQmlListProperty(QObject *o, void *d, CountFunction c, AtFunction t)
  84. : object(o),
  85. data(d),
  86. append(Q_NULLPTR),
  87. count(c), at(t),
  88. clear(Q_NULLPTR),
  89. dummy1(Q_NULLPTR),
  90. dummy2(Q_NULLPTR)
  91. {}
  92. bool operator==(const QQmlListProperty &o) const {
  93. return object == o.object &&
  94. data == o.data &&
  95. append == o.append &&
  96. count == o.count &&
  97. at == o.at &&
  98. clear == o.clear;
  99. }
  100. QObject *object;
  101. void *data;
  102. AppendFunction append;
  103. CountFunction count;
  104. AtFunction at;
  105. ClearFunction clear;
  106. void *dummy1;
  107. void *dummy2;
  108. private:
  109. static void qlist_append(QQmlListProperty *p, T *v) {
  110. reinterpret_cast<QList<T *> *>(p->data)->append(v);
  111. }
  112. static int qlist_count(QQmlListProperty *p) {
  113. return reinterpret_cast<QList<T *> *>(p->data)->count();
  114. }
  115. static T *qlist_at(QQmlListProperty *p, int idx) {
  116. return reinterpret_cast<QList<T *> *>(p->data)->at(idx);
  117. }
  118. static void qlist_clear(QQmlListProperty *p) {
  119. return reinterpret_cast<QList<T *> *>(p->data)->clear();
  120. }
  121. };
  122. #endif
  123. class QQmlEngine;
  124. class QQmlListReferencePrivate;
  125. class Q_QML_EXPORT QQmlListReference
  126. {
  127. public:
  128. QQmlListReference();
  129. QQmlListReference(QObject *, const char *property, QQmlEngine * = Q_NULLPTR);
  130. QQmlListReference(const QQmlListReference &);
  131. QQmlListReference &operator=(const QQmlListReference &);
  132. ~QQmlListReference();
  133. bool isValid() const;
  134. QObject *object() const;
  135. const QMetaObject *listElementType() const;
  136. bool canAppend() const;
  137. bool canAt() const;
  138. bool canClear() const;
  139. bool canCount() const;
  140. bool isManipulable() const;
  141. bool isReadable() const;
  142. bool append(QObject *) const;
  143. QObject *at(int) const;
  144. bool clear() const;
  145. int count() const;
  146. private:
  147. friend class QQmlListReferencePrivate;
  148. QQmlListReferencePrivate* d;
  149. };
  150. QT_END_NAMESPACE
  151. Q_DECLARE_METATYPE(QQmlListReference)
  152. #endif // QQMLLIST_H