Cura/resources/qml/Dialogs/ChoosePrinterDialog.qml
c.lamboo 62812393b0 Fix typos in translations
CURA-10369
2023-03-07 10:29:37 +01:00

115 lines
3.5 KiB
QML

// Copyright (c) 2022 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.2
import QtQuick.Controls 2.9
import QtQuick.Layouts 2.10
import UM 1.5 as UM
import Cura 1.0 as Cura
UM.Dialog
{
property var manager
property var compatible_machine_model: Cura.CompatibleMachineModel {}
id: base
title: catalog.i18nc("@title:window", "Select Printer")
backgroundColor: UM.Theme.getColor("background_2")
width: minimumWidth
minimumWidth: 550 * screenScaleFactor
height: minimumHeight
minimumHeight: 550 * screenScaleFactor
modality: Qt.ApplicationModal
ScrollView
{
// Workaround for Windowing bugs in Qt:
width: 550 * screenScaleFactor - 3 * UM.Theme.getSize("default_margin").width
height: 550 * screenScaleFactor - 3 * UM.Theme.getSize("default_margin").height
UM.I18nCatalog
{
id: catalog
name: "cura"
}
anchors.fill: parent
Column
{
anchors.fill: parent
spacing: UM.Theme.getSize("default_margin").height
Item
{
width: parent.width
height: childrenRect.height
UM.Label
{
anchors.left: parent.left
text: catalog.i18nc("@title:label", "Compatible Printers")
font: UM.Theme.getFont("large")
anchors.horizontalCenter: parent.horizontalCenter
}
TabButton
{
id: refreshButton
anchors.right: parent.right
width: UM.Theme.getSize("button_icon").width
height: UM.Theme.getSize("button_icon").height
hoverEnabled: true
onClicked:
{
manager.refresh()
base.compatible_machine_model.forceUpdate()
}
background: Rectangle
{
width: UM.Theme.getSize("button_icon").width
height: UM.Theme.getSize("button_icon").height
color: refreshButton.hovered ? UM.Theme.getColor("toolbar_button_hover") : UM.Theme.getColor("toolbar_background")
radius: Math.round(refreshButton.width * 0.5)
}
UM.ColorImage
{
width: UM.Theme.getSize("section_icon").width
height: UM.Theme.getSize("section_icon").height
color: UM.Theme.getColor("text_link")
source: UM.Theme.getIcon("ArrowDoubleCircleRight")
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
}
}
}
Repeater
{
id: contents
model: base.compatible_machine_model
delegate: Cura.PrintSelectorCard
{
name: model.name
unique_id: model.unique_id
extruders: model.extruders
manager: base.manager
}
}
UM.Label
{
visible: contents.count < 1
text: catalog.i18nc("@description", "No compatible printers, that are currently online, were found.")
}
}
}
}