diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-05-13 05:07:21 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-05-13 05:07:21 (GMT) |
commit | ae8e4afcadc9ff084e1d1859c29fbc8b629e3392 (patch) | |
tree | 675801312aa5740bc68f67444cb5754dd9e5abe1 /src/declarative/graphicsitems/qdeclarativepathview_p.h | |
parent | a19df56265e59bb26f927638aa5c75ccd666c388 (diff) | |
download | Qt-ae8e4afcadc9ff084e1d1859c29fbc8b629e3392.zip Qt-ae8e4afcadc9ff084e1d1859c29fbc8b629e3392.tar.gz Qt-ae8e4afcadc9ff084e1d1859c29fbc8b629e3392.tar.bz2 |
Add an example spinner.
Also add missing increment/decrementCurrentIndex() slots to PathView,
and tweak the number of points cached along a Path.
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativepathview_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativepathview_p.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativepathview_p.h b/src/declarative/graphicsitems/qdeclarativepathview_p.h index 85f47fd..349a01c 100644 --- a/src/declarative/graphicsitems/qdeclarativepathview_p.h +++ b/src/declarative/graphicsitems/qdeclarativepathview_p.h @@ -132,6 +132,10 @@ public: static QDeclarativePathViewAttached *qmlAttachedProperties(QObject *); +public Q_SLOTS: + void incrementCurrentIndex(); + void decrementCurrentIndex(); + Q_SIGNALS: void currentIndexChanged(); void offsetChanged(); |