forked from johanhelsing/qtws17-compositor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TitleSlide.qml
36 lines (35 loc) · 1.15 KB
/
TitleSlide.qml
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
import QtQuick 2.8
Item {
id: titleSlide
Column {
anchors.centerIn: parent
Text {
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 3 * settings.baseFontSize
font.family: settings.fontFamily
text: "Qt Wayland Compositor"
}
Text {
topPadding: 0 * settings.vh
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 1.3 * settings.baseFontSize
font.family: settings.fontFamily
wrapMode: Text.WordWrap
text: "Creating your own multi-process user interface"
}
Text {
topPadding: 3 * settings.vh
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 0.8 * settings.baseFontSize
font.family: settings.fontFamily
text: "Johan Helsing"
}
Text {
anchors.horizontalCenter: parent.horizontalCenter
font.pixelSize: 0.8 * settings.baseFontSize
font.family: settings.fontFamily
color: "#41cd52"
text: "[email protected]"
}
}
}