aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativevaluetypes/data/font_read.qml
blob: d73bb132d37c4d8c13c6599421ac0b95915a73d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Test 1.0

MyTypeObject {
    property string f_family: font.family
    property bool f_bold: font.bold
    property int f_weight: font.weight
    property bool f_italic: font.italic
    property bool f_underline: font.underline
    property bool f_overline: font.overline
    property bool f_strikeout: font.strikeout
    property real f_pointSize: font.pointSize
    property int f_pixelSize: font.pixelSize
    property int f_capitalization: font.capitalization
    property real f_letterSpacing: font.letterSpacing
    property real f_wordSpacing: font.wordSpacing;
    property variant copy: font
}