-
Andreas Traczyk authored
Change-Id: I6a9b406ad93fc1144ccaa3c4f9eed3b8fabd256f
Andreas Traczyk authoredChange-Id: I6a9b406ad93fc1144ccaa3c4f9eed3b8fabd256f
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
WelcomePage.qml 7.82 KiB
/*
* Copyright (C) 2020 by Savoir-faire Linux
* Author: Yang Wang <yang.wang@savoirfairelinux.com>
* Author: Sébastien blin <sebastien.blin@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
import QtQuick 2.14
import QtQuick.Layouts 1.3
import QtQuick.Controls 2.14
import QtGraphicalEffects 1.15
import net.jami.Models 1.0
import net.jami.Adapters 1.0
import "../../constant"
import "../../commoncomponents"
Rectangle {
id: root
property int preferredHeight: welcomePageColumnLayout.implicitHeight
signal welcomePageRedirectPage(int toPageIndex)
signal leavePage
signal scrollToBottom
color: JamiTheme.backgroundColor
ColumnLayout {
id: welcomePageColumnLayout
anchors.centerIn: parent
spacing: layoutSpacing
Text {
id: welcomeLabel
Layout.alignment: Qt.AlignCenter
Layout.topMargin: backButtonMargins
Layout.preferredHeight: contentHeight
text: qsTr("Welcome to")
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pointSize: 30
font.kerning: true
}
ResponsiveImage {
id: welcomeLogo
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: 300
Layout.preferredHeight: 150
smooth: true
antialiasing: true
source: "qrc:/images/logo-jami-standard-coul.svg"
}
MaterialButton {
id: newAccountButton
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
text: JamiStrings.createNewJA
fontCapitalization: Font.AllUppercase
toolTipText: qsTr("Create new Jami account")
source: "qrc:/images/default_avatar_overlay.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(1)
}
}
MaterialButton {
id: newRdvButton
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
text: JamiStrings.createRV
fontCapitalization: Font.AllUppercase
toolTipText: JamiStrings.createNewRV
source: "qrc:/images/icons/groups-24px.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(8)
}
}
MaterialButton {
id: fromDeviceButton
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
text: JamiStrings.linkFromAnotherDevice
fontCapitalization: Font.AllUppercase
toolTipText: qsTr("Import account from other device")
source: "qrc:/images/icons/devices-24px.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(5)
}
}
MaterialButton {
id: fromBackupButton
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
text: JamiStrings.connectFromBackup
fontCapitalization: Font.AllUppercase
toolTipText: qsTr("Import account from backup file")
source: "qrc:/images/icons/backup-24px.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(3)
}
}
MaterialButton {
id: showAdvancedButton
Layout.alignment: Qt.AlignCenter
Layout.bottomMargin: newSIPAccountButton.visible ? 0 : backButtonMargins
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
text: JamiStrings.advancedFeatures
fontCapitalization: Font.AllUppercase
toolTipText: JamiStrings.showAdvancedFeatures
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
outlined: true
hoverEnabled: true
ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval
ToolTip.visible: hovered
ToolTip.text: JamiStrings.showAdvancedFeatures
onClicked: {
connectAccountManagerButton.visible = !connectAccountManagerButton.visible
newSIPAccountButton.visible = !newSIPAccountButton.visible
}
}
MaterialButton {
id: connectAccountManagerButton
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
visible: false
text: JamiStrings.connectJAMSServer
fontCapitalization: Font.AllUppercase
toolTipText: JamiStrings.createFromJAMS
source: "qrc:/images/icons/router-24px.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(6)
}
}
MaterialButton {
id: newSIPAccountButton
Layout.alignment: Qt.AlignCenter
Layout.bottomMargin: backButtonMargins
Layout.preferredWidth: preferredWidth
Layout.preferredHeight: preferredHeight
visible: false
text: JamiStrings.addSIPAccount
fontCapitalization: Font.AllUppercase
toolTipText: qsTr("Create new SIP account")
source: "qrc:/images/default_avatar_overlay.svg"
color: JamiTheme.buttonTintedBlue
hoveredColor: JamiTheme.buttonTintedBlueHovered
pressedColor: JamiTheme.buttonTintedBluePressed
onClicked: {
welcomePageRedirectPage(2)
}
}
onHeightChanged: scrollToBottom()
}
PushButton {
id: backButton
anchors.left: parent.left
anchors.top: parent.top
anchors.margins: backButtonMargins
Connections {
target: LRCInstance
function onAccountListChanged() {
backButton.visible = UtilsAdapter.getAccountListSize()
}
}
width: 35
height: 35
visible: UtilsAdapter.getAccountListSize()
normalColor: root.color
source: "qrc:/images/icons/ic_arrow_back_24px.svg"
toolTipText: JamiStrings.back
onClicked: leavePage()
}
}