summaryrefslogtreecommitdiffstats
path: root/demos/declarative/twitter/content/MultiTitleBar.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-03-02 14:54:38 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-03-02 14:54:38 (GMT)
commite16b33eefa365986f8e0d26c710cb7568bf9abff (patch)
treeaf0ef803dd8fe2fb1a013a66f338e133173ccd10 /demos/declarative/twitter/content/MultiTitleBar.qml
parentf56893bbffd5eb26dd77e56707615cbb11a26c9b (diff)
downloadQt-e16b33eefa365986f8e0d26c710cb7568bf9abff.zip
Qt-e16b33eefa365986f8e0d26c710cb7568bf9abff.tar.gz
Qt-e16b33eefa365986f8e0d26c710cb7568bf9abff.tar.bz2
Refactor demos
Samegame and Twitter are now trying the new naming convention.
Diffstat (limited to 'demos/declarative/twitter/content/MultiTitleBar.qml')
-rw-r--r--demos/declarative/twitter/content/MultiTitleBar.qml24
1 files changed, 0 insertions, 24 deletions
diff --git a/demos/declarative/twitter/content/MultiTitleBar.qml b/demos/declarative/twitter/content/MultiTitleBar.qml
deleted file mode 100644
index e0205b8..0000000
--- a/demos/declarative/twitter/content/MultiTitleBar.qml
+++ /dev/null
@@ -1,24 +0,0 @@
-import Qt 4.6
-
-Item {
- height: homeBar.height
- HomeTitleBar { id: homeBar; width: parent.width; height: 60;
- onUpdate: rssModel.reload()
- }
- TitleBar { id: titleBar; width: parent.width; height: 60;
- y: -80
- untaggedString: "Latest tweets from everyone"
- taggedString: "Latest tweets from "
- }
- states: [
- State {
- name: "search"; when: screen.userView
- PropertyChanges { target: titleBar; y: 0 }
- PropertyChanges { target: homeBar; y: -80 }
- }
- ]
- transitions: [
- Transition { NumberAnimation { properties: "x,y"; duration: 500; easing.type: "InOutQuad" } }
- ]
-}
-