aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlqt/data/font.qml
blob: 9ebf460caf1b5f0c68574a30be2c51c51711d09f (plain)
1
2
3
4
5
6
7
8
import QtQuick 2.0

QtObject {
    property variant test1: Qt.font({ family: "Arial", pointSize: 22 });
    property variant test2: Qt.font({ family: "Arial", pointSize: 20, weight: Font.DemiBold, italic: true });
    property variant test3: Qt.font("Arial", 22);
    property variant test4: Qt.font({ something: "Arial", other: 22 });
}