mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-21 05:09:37 +08:00

Fonts were looking a bit to thick on when using `Text.NativeRendering`, so using `Text.QtRendering` instead. After this the font weight looks identical to figma (as far as I can see). In this commit I also changed all `Label`'s to `UM.Label`'s and removed default properties where I could. CURA-9154
184 lines
5.1 KiB
QML
184 lines
5.1 KiB
QML
//Copyright (C) 2022 Ultimaker B.V.
|
|
//Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Window 2.2
|
|
import QtQuick.Controls 2.3
|
|
|
|
import UM 1.6 as UM
|
|
import Cura 1.6 as Cura
|
|
|
|
import DigitalFactory 1.0 as DF
|
|
|
|
|
|
Item
|
|
{
|
|
id: base
|
|
width: parent.width
|
|
height: parent.height
|
|
|
|
property var fileModel: manager.digitalFactoryFileModel
|
|
property var modelRows: manager.digitalFactoryFileModel.items
|
|
|
|
signal openFilePressed()
|
|
signal selectDifferentProjectPressed()
|
|
|
|
anchors
|
|
{
|
|
fill: parent
|
|
margins: UM.Theme.getSize("default_margin").width
|
|
}
|
|
|
|
ProjectSummaryCard
|
|
{
|
|
id: projectSummaryCard
|
|
|
|
anchors.top: parent.top
|
|
|
|
property var selectedItem: manager.digitalFactoryProjectModel.getItem(manager.selectedProjectIndex)
|
|
|
|
imageSource: selectedItem.thumbnailUrl || "../images/placeholder.svg"
|
|
projectNameText: selectedItem.displayName || ""
|
|
projectUsernameText: selectedItem.username || ""
|
|
projectLastUpdatedText: "Last updated: " + selectedItem.lastUpdated
|
|
cardMouseAreaEnabled: false
|
|
}
|
|
|
|
Rectangle
|
|
{
|
|
id: projectFilesContent
|
|
width: parent.width
|
|
anchors.top: projectSummaryCard.bottom
|
|
anchors.topMargin: UM.Theme.getSize("default_margin").width
|
|
anchors.bottom: selectDifferentProjectButton.top
|
|
anchors.bottomMargin: UM.Theme.getSize("default_margin").width
|
|
|
|
color: UM.Theme.getColor("main_background")
|
|
border.width: UM.Theme.getSize("default_lining").width
|
|
border.color: UM.Theme.getColor("lining")
|
|
|
|
// This is not backwards compatible with Cura < 5.0 due to QT.labs being removed in PyQt6
|
|
Cura.TableView
|
|
{
|
|
id: filesTableView
|
|
anchors.fill: parent
|
|
anchors.margins: parent.border.width
|
|
|
|
columnHeaders: ["Name", "Uploaded by", "Uploaded at"]
|
|
model: UM.TableModel
|
|
{
|
|
id: tableModel
|
|
headers: ["fileName", "username", "uploadedAt"]
|
|
rows: modelRows
|
|
}
|
|
|
|
onCurrentRowChanged:
|
|
{
|
|
manager.setSelectedFileIndices([currentRow]);
|
|
}
|
|
onDoubleClicked: function(row)
|
|
{
|
|
manager.setSelectedFileIndices([row]);
|
|
openFilesButton.clicked();
|
|
}
|
|
}
|
|
|
|
UM.Label
|
|
{
|
|
id: emptyProjectLabel
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: "Select a project to view its files."
|
|
color: UM.Theme.getColor("setting_category_text")
|
|
|
|
Connections
|
|
{
|
|
target: manager
|
|
function onSelectedProjectIndexChanged(newProjectIndex)
|
|
{
|
|
emptyProjectLabel.visible = (newProjectIndex == -1)
|
|
}
|
|
}
|
|
}
|
|
|
|
UM.Label
|
|
{
|
|
id: noFilesInProjectLabel
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
visible: (manager.digitalFactoryFileModel.count == 0 && !emptyProjectLabel.visible && !retrievingFilesBusyIndicator.visible)
|
|
text: "No supported files in this project."
|
|
color: UM.Theme.getColor("setting_category_text")
|
|
}
|
|
|
|
BusyIndicator
|
|
{
|
|
// Shows up while Cura is waiting to receive the files of a project from the digital factory library
|
|
id: retrievingFilesBusyIndicator
|
|
|
|
anchors
|
|
{
|
|
verticalCenter: parent.verticalCenter
|
|
horizontalCenter: parent.horizontalCenter
|
|
}
|
|
|
|
width: parent.width / 4
|
|
height: width
|
|
visible: manager.retrievingFilesStatus == DF.RetrievalStatus.InProgress
|
|
running: visible
|
|
palette.dark: UM.Theme.getColor("text")
|
|
}
|
|
|
|
Connections
|
|
{
|
|
target: manager.digitalFactoryFileModel
|
|
|
|
function onItemsChanged()
|
|
{
|
|
// Make sure no files are selected when the file model changes
|
|
filesTableView.currentRow = -1
|
|
}
|
|
}
|
|
}
|
|
Cura.SecondaryButton
|
|
{
|
|
id: selectDifferentProjectButton
|
|
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
text: "Change Library project"
|
|
|
|
onClicked:
|
|
{
|
|
manager.clearProjectSelection()
|
|
}
|
|
busy: false
|
|
}
|
|
|
|
Cura.PrimaryButton
|
|
{
|
|
id: openFilesButton
|
|
|
|
anchors.bottom: parent.bottom
|
|
anchors.right: parent.right
|
|
text: "Open"
|
|
enabled: filesTableView.currentRow >= 0
|
|
onClicked:
|
|
{
|
|
manager.openSelectedFiles()
|
|
}
|
|
busy: false
|
|
}
|
|
|
|
Component.onCompleted:
|
|
{
|
|
openFilesButton.clicked.connect(base.openFilePressed)
|
|
selectDifferentProjectButton.clicked.connect(base.selectDifferentProjectPressed)
|
|
}
|
|
|
|
onModelRowsChanged:
|
|
{
|
|
tableModel.clear()
|
|
tableModel.rows = modelRows
|
|
}
|
|
} |