summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3drenderer/items/quick3dtechnique.h
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2014-10-16 15:42:04 +0200
committerPaul Lemire <paul.lemire@kdab.com>2014-10-17 21:16:36 +0200
commit28c986e8be4c3fcb9a1002ab7ef9e8ad1b30ef03 (patch)
tree690a157d887e03f546ac414f9ed74de5ae363dec /src/quick3d/quick3drenderer/items/quick3dtechnique.h
parent7f2972745acb721bb17378b216f6e5001744ca05 (diff)
QTechnique: renamed criteria property to annotations
Change-Id: I5a919ac6d0cc5fd7b27a72b22a2a497114241d9d Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/quick3d/quick3drenderer/items/quick3dtechnique.h')
-rw-r--r--src/quick3d/quick3drenderer/items/quick3dtechnique.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/quick3d/quick3drenderer/items/quick3dtechnique.h b/src/quick3d/quick3drenderer/items/quick3dtechnique.h
index c07fce942..56a7732a9 100644
--- a/src/quick3d/quick3drenderer/items/quick3dtechnique.h
+++ b/src/quick3d/quick3drenderer/items/quick3dtechnique.h
@@ -57,23 +57,19 @@ namespace Quick {
class QT3DQUICKRENDERERSHARED_EXPORT Quick3DTechnique : public QObject
{
Q_OBJECT
- Q_PROPERTY(QQmlListProperty<Qt3D::QAnnotation> criteria READ criteriaList NOTIFY criteriaChanged)
- Q_PROPERTY(QQmlListProperty<Qt3D::QRenderPass> renderPasses READ renderPassList NOTIFY renderPassesChanged)
+ Q_PROPERTY(QQmlListProperty<Qt3D::QAnnotation> annotations READ annotationList)
+ Q_PROPERTY(QQmlListProperty<Qt3D::QRenderPass> renderPasses READ renderPassList)
Q_PROPERTY(QQmlListProperty<Qt3D::QParameter> parameters READ parameterList)
public:
explicit Quick3DTechnique(QObject *parent = 0);
- QQmlListProperty<Qt3D::QAnnotation> criteriaList();
+ QQmlListProperty<Qt3D::QAnnotation> annotationList();
QQmlListProperty<Qt3D::QRenderPass> renderPassList();
QQmlListProperty<Qt3D::QParameter> parameterList();
// Use QAbstractTechnique when it has been properly defined
inline QTechnique *parentTechnique() const { return qobject_cast<QTechnique*>(parent()); }
-Q_SIGNALS:
- void criteriaChanged();
- void renderPassesChanged();
-
private:
static void appendParameter(QQmlListProperty<QParameter> *list, QParameter *param);
@@ -81,10 +77,10 @@ private:
static int parametersCount(QQmlListProperty<QParameter> *list);
static void clearParameterList(QQmlListProperty<QParameter> *list);
- static void appendCriterion(QQmlListProperty<QAnnotation> *list, QAnnotation *criterion);
- static QAnnotation *criterionAt(QQmlListProperty<QAnnotation> *list, int index);
- static int criteriaCount(QQmlListProperty<QAnnotation> *list);
- static void clearCriteriaList(QQmlListProperty<QAnnotation> *list);
+ static void appendAnnotation(QQmlListProperty<QAnnotation> *list, QAnnotation *Annotation);
+ static QAnnotation *annotationAt(QQmlListProperty<QAnnotation> *list, int index);
+ static int annotationCount(QQmlListProperty<QAnnotation> *list);
+ static void clearAnnotationList(QQmlListProperty<QAnnotation> *list);
static void appendRenderPass(QQmlListProperty<QRenderPass> *list, QRenderPass* renderPass);
static QRenderPass *renderPassAt(QQmlListProperty<QRenderPass> *list, int index);