mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 06:33:55 -06:00
75 lines
2 KiB
QML
75 lines
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.Layouts 1.3
|
|
|
|
import UM 1.3 as UM
|
|
import Cura 1.1 as Cura
|
|
|
|
import "../components"
|
|
|
|
Item
|
|
{
|
|
id: backupsPage
|
|
anchors.fill: parent
|
|
anchors.margins: UM.Theme.getSize("wide_margin").width
|
|
|
|
ColumnLayout
|
|
{
|
|
spacing: UM.Theme.getSize("wide_margin").height
|
|
width: parent.width
|
|
anchors.fill: parent
|
|
|
|
Label
|
|
{
|
|
id: backupTitle
|
|
text: catalog.i18nc("@title", "My Backups")
|
|
font: UM.Theme.getFont("large")
|
|
color: UM.Theme.getColor("text")
|
|
Layout.fillWidth: true
|
|
renderType: Text.NativeRendering
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: catalog.i18nc("@empty_state",
|
|
"You don't have any backups currently. Use the 'Backup Now' button to create one.")
|
|
width: parent.width
|
|
font: UM.Theme.getFont("default")
|
|
color: UM.Theme.getColor("text")
|
|
wrapMode: Label.WordWrap
|
|
visible: backupList.model.length == 0
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
renderType: Text.NativeRendering
|
|
}
|
|
|
|
BackupList
|
|
{
|
|
id: backupList
|
|
model: CuraDrive.backups
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
}
|
|
|
|
Label
|
|
{
|
|
text: catalog.i18nc("@backup_limit_info",
|
|
"During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones.")
|
|
width: parent.width
|
|
font: UM.Theme.getFont("default")
|
|
color: UM.Theme.getColor("text")
|
|
wrapMode: Label.WordWrap
|
|
visible: backupList.model.length > 4
|
|
renderType: Text.NativeRendering
|
|
}
|
|
|
|
BackupListFooter
|
|
{
|
|
id: backupListFooter
|
|
|
|
}
|
|
}
|
|
}
|