mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-16 18:59:39 +08:00

Updated the qml WelcomPage with the revised text: "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
45 lines
1.2 KiB
QML
45 lines
1.2 KiB
QML
// Copyright (c) 2018 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Controls 2.1
|
|
import QtQuick.Window 2.2
|
|
|
|
import UM 1.3 as UM
|
|
import Cura 1.1 as Cura
|
|
|
|
Column
|
|
{
|
|
id: welcomePage
|
|
spacing: UM.Theme.getSize("wide_margin").height
|
|
width: parent.width
|
|
height: childrenRect.height
|
|
anchors.centerIn: parent
|
|
|
|
Label
|
|
{
|
|
id: welcomeTextLabel
|
|
text: catalog.i18nc("@description", "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise")
|
|
width: Math.round(parent.width / 2)
|
|
font: UM.Theme.getFont("default")
|
|
color: UM.Theme.getColor("text")
|
|
verticalAlignment: Text.AlignVCenter
|
|
horizontalAlignment: Text.AlignHCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
wrapMode: Label.WordWrap
|
|
renderType: Text.NativeRendering
|
|
}
|
|
|
|
Cura.PrimaryButton
|
|
{
|
|
id: loginButton
|
|
width: UM.Theme.getSize("account_button").width
|
|
height: UM.Theme.getSize("account_button").height
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
text: catalog.i18nc("@button", "Sign in")
|
|
onClicked: Cura.API.account.login()
|
|
fixedWidthMode: true
|
|
}
|
|
}
|
|
|