diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-05-13 15:07:21 +1000 |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-05-13 15:07:21 +1000 |
commit | ae8e4afcadc9ff084e1d1859c29fbc8b629e3392 (patch) | |
tree | 675801312aa5740bc68f67444cb5754dd9e5abe1 /examples/declarative | |
parent | a19df56265e59bb26f927638aa5c75ccd666c388 (diff) | |
download | qt4-tools-ae8e4afcadc9ff084e1d1859c29fbc8b629e3392.tar.gz |
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 'examples/declarative')
-rw-r--r-- | examples/declarative/declarative.pro | 1 | ||||
-rw-r--r-- | examples/declarative/spinner/content/Spinner.qml | 25 | ||||
-rw-r--r-- | examples/declarative/spinner/content/spinner-bg.png | bin | 0 -> 345 bytes | |||
-rw-r--r-- | examples/declarative/spinner/content/spinner-select.png | bin | 0 -> 320 bytes | |||
-rw-r--r-- | examples/declarative/spinner/main.qml | 18 | ||||
-rw-r--r-- | examples/declarative/spinner/spinner.qmlproject | 16 |
6 files changed, 60 insertions, 0 deletions
diff --git a/examples/declarative/declarative.pro b/examples/declarative/declarative.pro index ba9b6282a6..913b2b05d8 100644 --- a/examples/declarative/declarative.pro +++ b/examples/declarative/declarative.pro @@ -37,6 +37,7 @@ sources.files = \ scrollbar \ searchbox \ slideswitch \ + spinner \ sql \ states \ tabwidget \ diff --git a/examples/declarative/spinner/content/Spinner.qml b/examples/declarative/spinner/content/Spinner.qml new file mode 100644 index 0000000000..8145a28dcd --- /dev/null +++ b/examples/declarative/spinner/content/Spinner.qml @@ -0,0 +1,25 @@ +import Qt 4.7 + +Image { + property alias model: view.model + property alias delegate: view.delegate + property alias currentIndex: view.currentIndex + property real itemHeight: 30 + source: "spinner-bg.png" + clip: true + PathView { + id: view + anchors.fill: parent + pathItemCount: height/itemHeight + preferredHighlightBegin: 0.5 + preferredHighlightEnd: 0.5 + highlight: Image { source: "spinner-select.png"; width: view.width; height: itemHeight+4 } + dragMargin: view.width/2 + path: Path { + startX: view.width/2; startY: -itemHeight/2 + PathLine { x: view.width/2; y: view.pathItemCount*itemHeight + itemHeight } + } + } + Keys.onDownPressed: view.incrementCurrentIndex() + Keys.onUpPressed: view.decrementCurrentIndex() +} diff --git a/examples/declarative/spinner/content/spinner-bg.png b/examples/declarative/spinner/content/spinner-bg.png Binary files differnew file mode 100644 index 0000000000..b3556f1f9f --- /dev/null +++ b/examples/declarative/spinner/content/spinner-bg.png diff --git a/examples/declarative/spinner/content/spinner-select.png b/examples/declarative/spinner/content/spinner-select.png Binary files differnew file mode 100644 index 0000000000..95a17a1fe2 --- /dev/null +++ b/examples/declarative/spinner/content/spinner-select.png diff --git a/examples/declarative/spinner/main.qml b/examples/declarative/spinner/main.qml new file mode 100644 index 0000000000..6be567a0a5 --- /dev/null +++ b/examples/declarative/spinner/main.qml @@ -0,0 +1,18 @@ +import Qt 4.7 +import "content" + +Rectangle { + width: 240; height: 320 + Column { + y: 20; x: 20; spacing: 20 + Spinner { + id: spinner + width: 200; height: 240 + focus: true + model: 20 + itemHeight: 30 + delegate: Text { font.pixelSize: 25; text: index; height: 30 } + } + Text { text: "Current item index: " + spinner.currentIndex } + } +} diff --git a/examples/declarative/spinner/spinner.qmlproject b/examples/declarative/spinner/spinner.qmlproject new file mode 100644 index 0000000000..d4909f8685 --- /dev/null +++ b/examples/declarative/spinner/spinner.qmlproject @@ -0,0 +1,16 @@ +import QmlProject 1.0 + +Project { + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "." + } + JavaScriptFiles { + directory: "." + } + ImageFiles { + directory: "." + } + /* List of plugin directories passed to QML runtime */ + // importPaths: [ " ../exampleplugin " ] +} |