diff options
Diffstat (limited to 'demos/declarative')
8 files changed, 28 insertions, 28 deletions
diff --git a/demos/declarative/calculator/CalcButton.qml b/demos/declarative/calculator/CalcButton.qml index f240000..f4ccdae 100644 --- a/demos/declarative/calculator/CalcButton.qml +++ b/demos/declarative/calculator/CalcButton.qml @@ -25,13 +25,13 @@ Item { Image { id: Image - src: "pics/button.sci" + source: "pics/button.sci" width: Button.width; height: Button.height } Image { id: ImagePressed - src: "pics/button-pressed.sci" + source: "pics/button-pressed.sci" width: Button.width; height: Button.height opacity: 0 } diff --git a/demos/declarative/calculator/calculator.qml b/demos/declarative/calculator/calculator.qml index 1e7c30a..145435b 100644 --- a/demos/declarative/calculator/calculator.qml +++ b/demos/declarative/calculator/calculator.qml @@ -2,7 +2,7 @@ Rect { id: MainWindow; width: 320; height: 270; color: "black" - Script { src: "calculator.js" } + Script { source: "calculator.js" } VerticalLayout { spacing: 2; margin: 2 diff --git a/demos/declarative/mediabrowser/content/MediaButton.qml b/demos/declarative/mediabrowser/content/MediaButton.qml index c92305a..6c672ea 100644 --- a/demos/declarative/mediabrowser/content/MediaButton.qml +++ b/demos/declarative/mediabrowser/content/MediaButton.qml @@ -7,8 +7,8 @@ <Property name="text"/> </properties> - <Image id="Image" src="pics/button.png"/> - <Image id="Pressed" src="pics/button-pressed.png" opacity="0"/> + <Image id="Image" source="pics/button.png"/> + <Image id="Pressed" source="pics/button-pressed.png" opacity="0"/> <MouseRegion id="MouseRegion" anchors.fill="{Image}" onClicked="Container.clicked.emit();"/> <Text font.bold="true" color="white" anchors.centeredIn="{Image}" text="{Container.text}"/> <width>{Image.width}</width> diff --git a/demos/declarative/mediabrowser/content/MoviesPathView.qml b/demos/declarative/mediabrowser/content/MoviesPathView.qml index a13437a..abc825b 100644 --- a/demos/declarative/mediabrowser/content/MoviesPathView.qml +++ b/demos/declarative/mediabrowser/content/MoviesPathView.qml @@ -30,11 +30,11 @@ </Script> <Rect id="Dvd" anchors.fill="{parent}" color="white"> - <Image src="{thumb}" width="215" height="305" anchors.centeredIn="{parent}" opaque="true"/> - <Image src="pics/reflection.png" anchors.centeredIn="{parent}"/> - <Image src="pics/shadow-right.png" x="220"/> - <Image src="pics/shadow-bottom.png" y="310"/> - <Image src="pics/shadow-corner.png" x="220" y="310"/> + <Image source="{thumb}" width="215" height="305" anchors.centeredIn="{parent}" opaque="true"/> + <Image source="pics/reflection.png" anchors.centeredIn="{parent}"/> + <Image source="pics/shadow-right.png" x="220"/> + <Image source="pics/shadow-bottom.png" y="310"/> + <Image source="pics/shadow-corner.png" x="220" y="310"/> </Rect> <MouseRegion anchors.fill="{Wrapper}" onClicked="movieClicked()"/> diff --git a/demos/declarative/mediabrowser/content/Star.qml b/demos/declarative/mediabrowser/content/Star.qml index 1db29e8..37d314b 100644 --- a/demos/declarative/mediabrowser/content/Star.qml +++ b/demos/declarative/mediabrowser/content/Star.qml @@ -8,7 +8,7 @@ <Signal name="clicked"/> </signals> - <Image id="Image" src="pics/ghns_star.png" x="6" y="7" opacity="0.4" scale="0.5"/> + <Image id="Image" source="pics/ghns_star.png" x="6" y="7" opacity="0.4" scale="0.5"/> <MouseRegion anchors.fill="{Container}" onClicked="Container.clicked.emit()"/> <states> diff --git a/demos/declarative/mediabrowser/mediabrowser.qml b/demos/declarative/mediabrowser/mediabrowser.qml index df7baa9..3e22de4 100644 --- a/demos/declarative/mediabrowser/mediabrowser.qml +++ b/demos/declarative/mediabrowser/mediabrowser.qml @@ -5,11 +5,11 @@ </properties> <Item id="Background"> - <Image src="content/pics/background.png" opaque="true"/> + <Image source="content/pics/background.png" opaque="true"/> <Rect id="Menu" x="-150" width="150" height="480" color="#232323"> <Text id="IconText" x="30" y="122" font.bold="true" font.size="9" text="Coming Soon" color="white" style="Raised" styleColor="black"/> - <Image src="content/pics/shadow-right-screen.png" x="150" height="480" tile="true"/> + <Image source="content/pics/shadow-right-screen.png" x="150" height="480" tile="true"/> </Rect> <MovieInfoContainer id="MovieInfoContainer" width="750" x="25" y="500" height="440"/> diff --git a/demos/declarative/webbrowser/content/RectSoftShadow.qml b/demos/declarative/webbrowser/content/RectSoftShadow.qml index 0235842..2b39422 100644 --- a/demos/declarative/webbrowser/content/RectSoftShadow.qml +++ b/demos/declarative/webbrowser/content/RectSoftShadow.qml @@ -1,10 +1,10 @@ <Item> - <Image src="pics/softshadow-left.sci" x="-16" y="-16" + <Image source="pics/softshadow-left.sci" x="-16" y="-16" width="16" height="{parent.height+32}" /> - <Image src="pics/softshadow-right.sci" x="{parent.width}" y="-16" + <Image source="pics/softshadow-right.sci" x="{parent.width}" y="-16" width="16" height="{parent.height+32}" /> - <Image src="pics/softshadow-top.png" x="0" y="-16" + <Image source="pics/softshadow-top.png" x="0" y="-16" width="{parent.width}" height="16" /> - <Image src="pics/softshadow-bottom.png" x="0" y="{parent.height}" + <Image source="pics/softshadow-bottom.png" x="0" y="{parent.height}" width="{webview.width*webview.scale}" height="16" /> </Item> diff --git a/demos/declarative/webbrowser/webbrowser.qml b/demos/declarative/webbrowser/webbrowser.qml index 7618f4d..cf96b3f 100644 --- a/demos/declarative/webbrowser/webbrowser.qml +++ b/demos/declarative/webbrowser/webbrowser.qml @@ -18,8 +18,8 @@ <Item id="WebPanel" anchors.fill="{parent}" clip="true"> <Rect color="#555555" anchors.fill="{parent}"/> - <Image src="content/pics/softshadow-bottom.png" width="{WebPanel.width}" height="16" /> - <Image src="content/pics/softshadow-top.png" width="{WebPanel.width}" anchors.bottom="{Footer.top}" height="16" /> + <Image source="content/pics/softshadow-bottom.png" width="{WebPanel.width}" height="16" /> + <Image source="content/pics/softshadow-top.png" width="{WebPanel.width}" anchors.bottom="{Footer.top}" height="16" /> <RectSoftShadow x="{-Flick.xPosition}" y="{-Flick.yPosition}" width="{WebView.width*WebView.scale}" height="{Flick.y+WebView.height*WebView.scale}"/> <Item id="HeaderSpace" width="{parent.width}" height="60" z="1"> @@ -30,7 +30,7 @@ ? -Flick.xPosition+Flick.viewportWidth-Flick.width : 0}" y="{Flick.yPosition < 0 ? -Flick.yPosition : progressOff*(Flick.yPosition>height?-height:-Flick.yPosition)}" - height="64" src="content/pics/header.png"> + height="64" source="content/pics/header.png"> <Text id="HeaderText" text="{WebView.title!='' || WebView.progress == 1.0 ? WebView.title : 'Loading...'}" color="white" styleColor="black" style="Raised" font.family="Helvetica" font.size="10" font.bold="true" elide="ElideRight" @@ -39,8 +39,8 @@ anchors.top="{Header.top}" anchors.topMargin="4" hAlign="AlignHCenter"/> <Item anchors.top="{HeaderText.bottom}" anchors.topMargin="2" anchors.bottom="{parent.bottom}" width="{parent.width}"> <Item id="UrlBox" anchors.left="{parent.left}" anchors.leftMargin="12" anchors.right="{parent.right}" anchors.rightMargin="12" height="31" anchors.top="{parent.top}" clip="true"> - <Image src="content/pics/addressbar.sci" anchors.fill="{UrlBox}"/> - <Image id="UrlBoxhl" src="content/pics/addressbar-filled.sci" opacity="{1-Header.progressOff}" clip="true" width="{parent.width*WebView.progress}" height="{parent.height}"/> + <Image source="content/pics/addressbar.sci" anchors.fill="{UrlBox}"/> + <Image id="UrlBoxhl" source="content/pics/addressbar-filled.sci" opacity="{1-Header.progressOff}" clip="true" width="{parent.width*WebView.progress}" height="{parent.height}"/> <KeyProxy id="proxy" anchors.left="{UrlBox.left}" anchors.fill="{UrlBox}" focusable="true" targets="{[keyActions,EditUrl]}"/> <KeyActions id="keyActions" return="WebBrowser.url = EditUrl.text; proxy.focus=false;"/> <TextEdit id="EditUrl" color="#555555" text="{WebView.url == '' ? ' ' : WebView.url}" @@ -104,11 +104,11 @@ </Rect> </Flickable> <Image id="Footer" width="{parent.width}" anchors.bottom="{parent.bottom}" - height="43" src="content/pics/footer.sci"> + height="43" source="content/pics/footer.sci"> <Rect y="-1" width="{parent.width}" height="1" color="#555555"/> <Item id="backbutton" anchors.right="{reload.left}" anchors.rightMargin="10" anchors.verticalCenter="{parent.verticalCenter}" width="{back_e.width}" height="{back_e.height}"> - <Image anchors.fill="{parent}" id="back_e" src="content/pics/back.png" /> - <Image anchors.fill="{parent}" id="back_d" src="content/pics/back-disabled.png" /> + <Image anchors.fill="{parent}" id="back_e" source="content/pics/back.png" /> + <Image anchors.fill="{parent}" id="back_d" source="content/pics/back-disabled.png" /> <states> <State name="Enabled" when="{WebView.back.enabled==true}"> <SetProperty target="{back_e}" property="opacity" value="1"/> @@ -126,11 +126,11 @@ </transitions> <MouseRegion anchors.fill="{back_e}" onClicked="if (WebView.back.enabled) WebView.back.trigger()"/> </Item> - <Image id="reload" src="content/pics/reload.png" anchors.horizontalCenter="{parent.horizontalCenter}" anchors.verticalCenter="{parent.verticalCenter}"/> + <Image id="reload" source="content/pics/reload.png" anchors.horizontalCenter="{parent.horizontalCenter}" anchors.verticalCenter="{parent.verticalCenter}"/> <MouseRegion anchors.fill="{reload}" onClicked="WebView.reload.trigger()"/> <Item id="forwardbutton" anchors.left="{reload.right}" anchors.leftMargin="10" anchors.verticalCenter="{parent.verticalCenter}" width="{forward_e.width}" height="{forward_e.height}"> - <Image anchors.fill="{parent}" anchors.verticalCenter="{parent.verticalCenter}" id="forward_e" src="content/pics/forward.png" /> - <Image anchors.fill="{parent}" id="forward_d" src="content/pics/forward-disabled.png" /> + <Image anchors.fill="{parent}" anchors.verticalCenter="{parent.verticalCenter}" id="forward_e" source="content/pics/forward.png" /> + <Image anchors.fill="{parent}" id="forward_d" source="content/pics/forward-disabled.png" /> <states> <State name="Enabled" when="{WebView.forward.enabled==true}"> <SetProperty target="{forward_e}" property="opacity" value="1"/> |