diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-12-01 23:44:43 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-12-01 23:44:43 (GMT) |
commit | ba661047f46ff6d6affb5f3ebad0b90a48d7982a (patch) | |
tree | 8bd4bea869a2d6ee576c52ea935673d6458b4ad0 /src/declarative/graphicsitems/qmlgraphicslistview_p.h | |
parent | 4b6c67881431cf34eee30319b81bad2030b94ff5 (diff) | |
parent | 17772ed96a126b48fda3dbaa945f705059681e06 (diff) | |
download | Qt-ba661047f46ff6d6affb5f3ebad0b90a48d7982a.zip Qt-ba661047f46ff6d6affb5f3ebad0b90a48d7982a.tar.gz Qt-ba661047f46ff6d6affb5f3ebad0b90a48d7982a.tar.bz2 |
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/graphicsitems/qmlgraphicslistview_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qmlgraphicslistview_p.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicslistview_p.h b/src/declarative/graphicsitems/qmlgraphicslistview_p.h index 543c70a..6dc131c 100644 --- a/src/declarative/graphicsitems/qmlgraphicslistview_p.h +++ b/src/declarative/graphicsitems/qmlgraphicslistview_p.h @@ -84,6 +84,9 @@ class Q_DECLARATIVE_EXPORT QmlGraphicsListView : public QmlGraphicsFlickable Q_PROPERTY(SnapMode snapMode READ snapMode WRITE setSnapMode) + Q_PROPERTY(QmlComponent *header READ header WRITE setHeader) + Q_PROPERTY(QmlComponent *footer READ footer WRITE setFooter) + Q_ENUMS(HighlightRangeMode) Q_ENUMS(Orientation) Q_ENUMS(SnapMode) @@ -149,6 +152,12 @@ public: SnapMode snapMode() const; void setSnapMode(SnapMode mode); + QmlComponent *footer() const; + void setFooter(QmlComponent *); + + QmlComponent *header() const; + void setHeader(QmlComponent *); + static QmlGraphicsListViewAttached *qmlAttachedProperties(QObject *); public Q_SLOTS: |