PhotoQml: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
 
(Add "cleanup" tag)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
===Categories:===
{{Cleanup | reason=Auto-imported from ExpressionEngine.}}


* [[:Category:Developing with Qt|Developing_with_Qt]]
[[Category:Developing_with_Qt::Qt Quick::Tutorial]]
** [[:Category:Developing with Qt::Qt-Quick|Qt Quick]]
 
* [[:Category:Developing with Qt::Qt-Quick::Tutorial|Tutorial]]
<code>
// File: Photo.qml
import Qt 4.7
 
Rectangle {
property alias imageFile: picture.source
property alias imageTitle: title.text
 
width: frameSize; height: frameSize
color: frameColor
 
Image {
id: picture
x: leftMargin; y: topMargin
}
 
Text {
id: title
x: 0; y: frameSize - bottomMargin
font.pixelSize: fontSize
width: frameSize; horizontalAlignment: Text.AlignHCenter
height: bottomMargin; verticalAlignment: Text.AlignVCenter
}
}

Latest revision as of 16:14, 3 March 2015

This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

// File: Photo.qml import Qt 4.7

Rectangle {

property alias imageFile: picture.source
property alias imageTitle: title.text

width: frameSize; height: frameSize

color: frameColor

Image {

id: picture
x: leftMargin; y: topMargin
}

Text {

id: title
x: 0; y: frameSize - bottomMargin
font.pixelSize: fontSize
width: frameSize; horizontalAlignment: Text.AlignHCenter
height: bottomMargin; verticalAlignment: Text.AlignVCenter
}

}