diff options
author | Martin Jones <martin.jones@nokia.com> | 2009-08-21 03:27:52 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2009-08-21 03:27:52 (GMT) |
commit | 08a4fffc4c93c324f95f5759c620287330c68d9d (patch) | |
tree | 4bced6b7c308f405ef021c1e006de65cfaaeaa1e /demos/declarative/webbrowser | |
parent | 1d9ae86dda99d8f0eb4949d3779777e795eb52be (diff) | |
download | Qt-08a4fffc4c93c324f95f5759c620287330c68d9d.zip Qt-08a4fffc4c93c324f95f5759c620287330c68d9d.tar.gz Qt-08a4fffc4c93c324f95f5759c620287330c68d9d.tar.bz2 |
Rename State change elements.
SetProperties -> PropertyChanges
RunScript -> StateChangeScript
SetAnchors -> AnchorChanges
Diffstat (limited to 'demos/declarative/webbrowser')
-rw-r--r-- | demos/declarative/webbrowser/fieldtext/FieldText.qml | 12 | ||||
-rw-r--r-- | demos/declarative/webbrowser/webbrowser.qml | 28 |
2 files changed, 20 insertions, 20 deletions
diff --git a/demos/declarative/webbrowser/fieldtext/FieldText.qml b/demos/declarative/webbrowser/fieldtext/FieldText.qml index cbacfd8..4d59705 100644 --- a/demos/declarative/webbrowser/fieldtext/FieldText.qml +++ b/demos/declarative/webbrowser/fieldtext/FieldText.qml @@ -115,15 +115,15 @@ Item { states: [ State { name: "editing" - SetProperties { + PropertyChanges { target: confirmIcon opacity: 1 } - SetProperties { + PropertyChanges { target: cancelIcon opacity: 1 } - SetProperties { + PropertyChanges { target: textEdit color: "black" readOnly: false @@ -131,15 +131,15 @@ Item { selectionStart: 0 selectionEnd: -1 } - SetProperties { + PropertyChanges { target: editRegion opacity: 0 } - SetProperties { + PropertyChanges { target: textEdit.anchors leftMargin: 34 } - SetProperties { + PropertyChanges { target: textEdit.anchors rightMargin: 34 } diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml index 8d5bc6d..2e57c72 100644 --- a/demos/declarative/webbrowser/webbrowser.qml +++ b/demos/declarative/webbrowser/webbrowser.qml @@ -160,12 +160,12 @@ Item { State { name: "Normal" when: MyWebView.progress == 1.0 - SetProperties { target: Header; progressOff: 1 } + PropertyChanges { target: Header; progressOff: 1 } }, State { name: "ProgressShown" when: MyWebView.progress < 1.0 - SetProperties { target: Header; progressOff: 0; } + PropertyChanges { target: Header; progressOff: 0; } } ] transitions: [ @@ -256,14 +256,14 @@ Item { State { name: "Enabled" when: MyWebView.back.enabled==true - SetProperties { target: back_e; opacity: 1 } - SetProperties { target: back_d; opacity: 0 } + PropertyChanges { target: back_e; opacity: 1 } + PropertyChanges { target: back_d; opacity: 0 } }, State { name: "Disabled" when: MyWebView.back.enabled==false - SetProperties { target: back_e; opacity: 0 } - SetProperties { target: back_d; opacity: 1 } + PropertyChanges { target: back_e; opacity: 0 } + PropertyChanges { target: back_d; opacity: 1 } } ] transitions: [ @@ -312,14 +312,14 @@ Item { State { name: "Enabled" when: MyWebView.forward.enabled==true - SetProperties { target: forward_e; opacity: 1 } - SetProperties { target: forward_d; opacity: 0 } + PropertyChanges { target: forward_e; opacity: 1 } + PropertyChanges { target: forward_d; opacity: 0 } }, State { name: "Disabled" when: MyWebView.forward.enabled==false - SetProperties { target: forward_e; opacity: 0 } - SetProperties { target: forward_d; opacity: 1 } + PropertyChanges { target: forward_e; opacity: 0 } + PropertyChanges { target: forward_d; opacity: 1 } } ] transitions: [ @@ -341,13 +341,13 @@ Item { states: [ State { name: "Normal" - SetProperties { target: MyWebView; zoomedOut: 0 } - SetProperties { target: Flick; explicit: true; xPosition: Math.min(MyWebView.width-Flick.width,Math.max(0,Flick.centerX-Flick.width/2)) } - SetProperties { target: Flick; explicit: true; yPosition: Math.min(MyWebView.height-Flick.height,Math.max(0,Flick.centerY-Flick.height/2)) } + PropertyChanges { target: MyWebView; zoomedOut: 0 } + PropertyChanges { target: Flick; explicit: true; xPosition: Math.min(MyWebView.width-Flick.width,Math.max(0,Flick.centerX-Flick.width/2)) } + PropertyChanges { target: Flick; explicit: true; yPosition: Math.min(MyWebView.height-Flick.height,Math.max(0,Flick.centerY-Flick.height/2)) } }, State { name: "ZoomedOut" - SetProperties { target: MyWebView; zoomedOut: 1 } + PropertyChanges { target: MyWebView; zoomedOut: 1 } } ] transitions: [ |