aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/demos/stocqt/content/StockListView.qml
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-01-27 12:07:50 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2016-01-27 14:18:04 +0000
commit67c4017054baf394062ab4f869d9ca9d299d3354 (patch)
tree378d13bbc1abb7bde11dc1160d9f89130bc9a958 /examples/quick/demos/stocqt/content/StockListView.qml
parentafbfdcff3b3cd14f16736b7c84e04fe9ad61ef8d (diff)
stocqt example: Choose font depending on platform.
The example used the font "Open Sans" which is only available on UNIX platforms and causes it to look baroque on WinRT. Add a settings file specifying the font and override via file selector. Change-Id: I1a9284d928ac57289d75b5fb9477849ac518787b Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'examples/quick/demos/stocqt/content/StockListView.qml')
-rw-r--r--examples/quick/demos/stocqt/content/StockListView.qml11
1 files changed, 6 insertions, 5 deletions
diff --git a/examples/quick/demos/stocqt/content/StockListView.qml b/examples/quick/demos/stocqt/content/StockListView.qml
index 470531a21e..d1f735fde3 100644
--- a/examples/quick/demos/stocqt/content/StockListView.qml
+++ b/examples/quick/demos/stocqt/content/StockListView.qml
@@ -39,6 +39,7 @@
****************************************************************************/
import QtQuick 2.0
+import "."
Rectangle {
id: root
@@ -144,7 +145,7 @@ Rectangle {
width: 125
height: 40
color: "#000000"
- font.family: "Open Sans"
+ font.family: Settings.fontFamily
font.pointSize: 20
font.weight: Font.Bold
verticalAlignment: Text.AlignVCenter
@@ -160,7 +161,7 @@ Rectangle {
width: 190
height: 40
color: "#000000"
- font.family: "Open Sans"
+ font.family: Settings.fontFamily
font.pointSize: 20
font.bold: true
horizontalAlignment: Text.AlignRight
@@ -178,7 +179,7 @@ Rectangle {
width: 135
height: 40
color: "#328930"
- font.family: "Open Sans"
+ font.family: Settings.fontFamily
font.pointSize: 20
font.bold: true
horizontalAlignment: Text.AlignRight
@@ -200,7 +201,7 @@ Rectangle {
width: 330
height: 30
color: "#000000"
- font.family: "Open Sans"
+ font.family: Settings.fontFamily
font.pointSize: 16
font.bold: false
elide: Text.ElideRight
@@ -217,7 +218,7 @@ Rectangle {
width: 120
height: 30
color: "#328930"
- font.family: "Open Sans"
+ font.family: Settings.fontFamily
font.pointSize: 18
font.bold: false
horizontalAlignment: Text.AlignRight