summaryrefslogtreecommitdiffstats
path: root/demos/declarative/phonebrowser/content/ScrollBar.qml
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2009-05-07 03:45:35 (GMT)
committerMartin Jones <martin.jones@nokia.com>2009-05-07 03:45:35 (GMT)
commitacd9d0a135d054d9766e8c486c276c63c1771104 (patch)
tree8d42e85304feac6470fda18590b3f1f5bbb26a5b /demos/declarative/phonebrowser/content/ScrollBar.qml
parent1d1acbdf3161bc5d79ddd73704687f1c604c766a (diff)
parent2eb30b4a9c0176bdf8737f0ed8b1496770cc1d20 (diff)
downloadQt-acd9d0a135d054d9766e8c486c276c63c1771104.zip
Qt-acd9d0a135d054d9766e8c486c276c63c1771104.tar.gz
Qt-acd9d0a135d054d9766e8c486c276c63c1771104.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'demos/declarative/phonebrowser/content/ScrollBar.qml')
-rw-r--r--demos/declarative/phonebrowser/content/ScrollBar.qml37
1 files changed, 0 insertions, 37 deletions
diff --git a/demos/declarative/phonebrowser/content/ScrollBar.qml b/demos/declarative/phonebrowser/content/ScrollBar.qml
deleted file mode 100644
index e65f92f..0000000
--- a/demos/declarative/phonebrowser/content/ScrollBar.qml
+++ /dev/null
@@ -1,37 +0,0 @@
-Item {
- property var flickableArea
-
- id: Container
- Rect {
- radius: 5
- color: "black"
- opacity: 0.3
- pen.color: "white"
- pen.width: 2
- x: 0
- y: flickableArea.pageYPosition * Container.height
- width: parent.width
- height: flickableArea.pageHeight * Container.height
- }
- states: [
- State {
- name: "show"
- when: flickableArea.moving
- SetProperties {
- target: Container
- opacity: 1
- }
- }
- ]
- transitions: [
- Transition {
- fromState: "*"
- toState: "*"
- NumericAnimation {
- target: Container
- properties: "opacity"
- duration: 400
- }
- }
- ]
-}