1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/*
SPDX-FileCopyrightText: 2014 Sebastian Kügler <sebas@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
import QtQuick 2.1
import org.kde.plasma.core 2.0 as PlasmaCore
import org.kde.plasma.components 2.0 as PlasmaComponents
import org.kde.plasma.extras 2.0 as PlasmaExtras
import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons
// IconTab
Column {
width: 400
height: 400
spacing: PlasmaCore.Units.gridUnit
id: themePage
anchors {
margins: PlasmaCore.Units.largeSpacing
}
Row {
spacing: PlasmaCore.Units.gridUnit/2
PlasmaComponents.CheckBox {
id: boxesCheck
text: "Show Boxes"
}
PlasmaComponents.CheckBox {
id: fontCheck
text: checked ? "Oxygen-Sans" : "Comme"
}
PlasmaComponents.CheckBox {
id: lightCheck
//tristate: true
text: checked ? "Light" : "Regular"
}
PlasmaComponents.CheckBox {
id: paintedHeightCheck
text: "Painted Height"
checked: true
visible: false
}
}
FontGizmo {
id: giz1
font: PlasmaCore.Theme.smallestFont
//font.family: "Oxygen-Sans"
}
FontGizmo {
id: giz2
font.pixelSize: PlasmaCore.Units.gridUnit * 1
}
FontGizmo {
id: giz3
font.pixelSize: PlasmaCore.Units.gridUnit * 2
}
FontGizmo {
id: giz4
font.pixelSize: PlasmaCore.Units.gridUnit * 2
text: "AlignTop"
verticalAlignment: Text.AlignTop
}
FontGizmo {
id: giz5
font.pixelSize: PlasmaCore.Units.gridUnit * 2
text: "AlignVCenter"
verticalAlignment: Text.AlignVCenter
}
// FontGizmo {
// id: giz3
// font.family: "Oxygen Mono"
//
// }
//
Rectangle {
width: parent.width
height: PlasmaCore.Units.gridUnit * 6
color: "transparent"
border.width: boxesCheck.checked ? 1 : 0
border.color: "red"
Rectangle {
id: img
color: "orange"
height: PlasmaCore.Units.gridUnit * 2
width: height
anchors {
top: parent.top
left: parent.left
}
}
PlasmaExtras.Heading {
font.weight: lightCheck.checked ? Font.Light : Font.Normal
font.family: fontCheck.text
font.pointSize: 24
verticalAlignment: Text.AlignTop
text: "That's a Headline"
//height: paintedHeight
height: PlasmaCore.Units.gridUnit
font.pixelSize: height
anchors {
left: img.right
leftMargin: PlasmaCore.Units.gridUnit / 2
top: img.top
}
}
}
}
|