diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-11-03 01:54:57 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-11-03 01:54:57 (GMT) |
commit | 9063457d08b2bcc8c055f6f0370f73360e6ec1dc (patch) | |
tree | d0bbae0c62ded054c5de1e3e3b394a94c2c0758c /examples/declarative/fonts/fonts.qml | |
parent | 1e8034a10d2496d7fb7aa987357333c6e2c3258d (diff) | |
download | Qt-9063457d08b2bcc8c055f6f0370f73360e6ec1dc.zip Qt-9063457d08b2bcc8c055f6f0370f73360e6ec1dc.tar.gz Qt-9063457d08b2bcc8c055f6f0370f73360e6ec1dc.tar.bz2 |
* add more font examples
* add missing properties to QmlFontValueType
Diffstat (limited to 'examples/declarative/fonts/fonts.qml')
-rw-r--r-- | examples/declarative/fonts/fonts.qml | 56 |
1 files changed, 30 insertions, 26 deletions
diff --git a/examples/declarative/fonts/fonts.qml b/examples/declarative/fonts/fonts.qml index e68bdb6..80d82ad 100644 --- a/examples/declarative/fonts/fonts.qml +++ b/examples/declarative/fonts/fonts.qml @@ -1,12 +1,10 @@ import Qt 4.6 Rectangle { - property string myText: "Lorem ipsum dolor sit amet, consectetur adipisicing elit" + property string myText: "The quick brown fox jumps over the lazy dog." - width: 800; height: 600 - color: palette.base - - SystemPalette { id: palette; colorGroup: Qt.Active } + width: 800; height: 480 + color: "steelblue" FontLoader { id: fixedFont; name: "Courier" } @@ -17,28 +15,36 @@ Rectangle { FontLoader { id: webFont2; source: "http://wrong.address.org" } Column { - anchors.fill: parent + anchors.fill: parent; spacing: 10 anchors.leftMargin: 10; anchors.rightMargin: 10 Text { - text: myText - color: palette.windowText + text: myText; color: "lightsteelblue" width: parent.width; elide: Text.ElideRight - font.family: "Times" - font.pointSize: 32 + font.family: "Times"; font.pointSize: 36 } Text { - text: myText - color: palette.windowText - width: parent.width; elide: Text.ElideRight - font.family: fixedFont.name - font.pointSize: 32 + text: myText; color: "lightsteelblue" + width: parent.width; elide: Text.ElideLeft + font.family: "Times"; font.pointSize: 36 + font.capitalization: "AllUppercase" + } + Text { + text: myText; color: "lightsteelblue" + width: parent.width; elide: Text.ElideMiddle + font.family: fixedFont.name; font.pointSize: 36; font.weight: "Bold" + font.capitalization: "AllLowercase" } Text { - text: myText - color: palette.windowText + text: myText; color: "lightsteelblue" width: parent.width; elide: Text.ElideRight - font.family: localFont.name - font.pointSize: 32 + font.family: fixedFont.name; font.pointSize: 36; font.italic: true + font.capitalization: "SmallCaps" + } + Text { + text: myText; color: "lightsteelblue" + width: parent.width; elide: Text.ElideLeft + font.family: localFont.name; font.pointSize: 36 + font.capitalization: "Capitalize" } Text { text: { @@ -46,10 +52,9 @@ Rectangle { else if (webFont.status == 2) "Loading..." else if (webFont.status == 3) "Error loading font" } - color: palette.windowText - width: parent.width; elide: Text.ElideRight - font.family: webFont.name - font.pointSize: 32 + color: "lightsteelblue" + width: parent.width; elide: Text.ElideMiddle + font.family: webFont.name; font.pointSize: 36 } Text { text: { @@ -57,10 +62,9 @@ Rectangle { else if (webFont2.status == 2) "Loading..." else if (webFont2.status == 3) "Error loading font" } - color: palette.windowText + color: "lightsteelblue" width: parent.width; elide: Text.ElideRight - font.family: webFont2.name - font.pointSize: 32 + font.family: webFont2.name; font.pointSize: 36 } } } |