mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-05 16:51:12 -07:00
WIP: Add base QMLs for WelcomeDialog
This commit is contained in:
parent
889bc8a529
commit
3b63f92d55
9 changed files with 380 additions and 2 deletions
41
resources/qml/WelcomePages/UserAgreementContent.qml
Normal file
41
resources/qml/WelcomePages/UserAgreementContent.qml
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
// Copyright (c) 2019 Ultimaker B.V.
|
||||
// Cura is released under the terms of the LGPLv3 or higher.
|
||||
|
||||
import QtQuick 2.10
|
||||
import QtQuick.Controls 2.3
|
||||
|
||||
|
||||
Component
|
||||
{
|
||||
Column
|
||||
{
|
||||
spacing: 20
|
||||
|
||||
Label
|
||||
{
|
||||
id: titleLabel
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
text: "User Agreement" // TODO
|
||||
color: "blue" // TODO
|
||||
//font:
|
||||
renderType: NativeRendering
|
||||
}
|
||||
|
||||
Image {
|
||||
id: curaImage
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
source: "TODO"
|
||||
}
|
||||
|
||||
Label
|
||||
{
|
||||
id: textLabel
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
horizontalAlignment: Text.AlignHCenter
|
||||
text: "Please fllow these steps to set up\nUltimaker Cura. This will only take a few moments."
|
||||
//font:
|
||||
renderType: NativeRendering
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue