2023-02-22 01:48:49 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2022-01-29 19:30:56 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2022-01-12 21:09:46 +03:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Layouts 1.2
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
import im.nheko 1.0
|
|
|
|
import "../components/"
|
2023-02-06 15:56:23 +03:00
|
|
|
import ".."
|
2022-01-12 21:09:46 +03:00
|
|
|
|
|
|
|
ColumnLayout {
|
|
|
|
Item {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
|
|
|
|
Image {
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
source: "qrc:/logos/splash.png"
|
|
|
|
height: 256
|
|
|
|
width: 256
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
Layout.bottomMargin: 0
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("Welcome to nheko! The desktop client for the Matrix protocol.")
|
|
|
|
color: Nheko.colors.text
|
|
|
|
font.pointSize: fontMetrics.font.pointSize*2
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
}
|
|
|
|
Label {
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("Enjoy your stay!")
|
|
|
|
color: Nheko.colors.text
|
|
|
|
font.pointSize: fontMetrics.font.pointSize*1.5
|
|
|
|
wrapMode: Text.Wrap
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
2022-01-24 02:41:55 +03:00
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
2022-01-12 21:09:46 +03:00
|
|
|
}
|
2022-01-24 02:41:55 +03:00
|
|
|
FlatButton {
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
text: qsTr("REGISTER")
|
|
|
|
onClicked: {
|
2022-01-28 17:24:56 +03:00
|
|
|
mainWindow.push(registerPage);
|
2022-01-24 02:41:55 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
FlatButton {
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
text: qsTr("LOGIN")
|
|
|
|
onClicked: {
|
|
|
|
mainWindow.push(loginPage);
|
|
|
|
}
|
|
|
|
}
|
2023-02-06 15:56:23 +03:00
|
|
|
|
2022-01-24 02:41:55 +03:00
|
|
|
Item {
|
|
|
|
Layout.fillWidth: true
|
2022-01-12 21:09:46 +03:00
|
|
|
}
|
2023-02-06 15:56:23 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RowLayout {
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
|
|
|
|
ToggleButton {
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
Layout.alignment: Qt.AlignRight
|
|
|
|
checked: Settings.reducedMotion
|
|
|
|
onCheckedChanged: Settings.reducedMotion = checked
|
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.alignment: Qt.AlignLeft
|
|
|
|
Layout.margins: Nheko.paddingLarge
|
|
|
|
text: qsTr("Reduce animations")
|
|
|
|
color: Nheko.colors.text
|
2023-02-09 00:45:09 +03:00
|
|
|
|
|
|
|
HoverHandler {
|
|
|
|
id: hovered
|
|
|
|
}
|
|
|
|
ToolTip.visible: hovered.hovered
|
|
|
|
ToolTip.text: qsTr("Nheko uses animations in several places to make stuff pretty. This allows you to turn those off if they make you feel unwell.")
|
|
|
|
ToolTip.delay: Nheko.tooltipDelay
|
2023-02-06 15:56:23 +03:00
|
|
|
}
|
2022-01-12 21:09:46 +03:00
|
|
|
}
|
|
|
|
Item {
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
|
|
|
}
|