mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-06 07:14:20 +08:00
71 lines
1.3 KiB
QML
71 lines
1.3 KiB
QML
// Copyright (c) 2015 Ultimaker B.V.
|
|
// Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
import QtQuick 2.2
|
|
import QtQuick.Controls 1.1
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.1
|
|
|
|
import UM 1.0 as UM
|
|
|
|
Column
|
|
{
|
|
id: wizardPage
|
|
property string title
|
|
anchors.fill: parent;
|
|
|
|
Label
|
|
{
|
|
text: parent.title
|
|
font.pointSize: 18;
|
|
}
|
|
|
|
Label
|
|
{
|
|
//: Add Printer wizard page description
|
|
text: qsTr("Please select the type of printer:");
|
|
}
|
|
|
|
ScrollView
|
|
{
|
|
height: parent.height - 50
|
|
width: parent.width
|
|
ListView
|
|
{
|
|
id: machineList;
|
|
model: UM.Models.availableMachinesModel
|
|
delegate: RadioButton
|
|
{
|
|
exclusiveGroup: printerGroup;
|
|
text: model.name;
|
|
onClicked:
|
|
{
|
|
ListView.view.currentIndex = index;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Label
|
|
{
|
|
//: Add Printer wizard field label
|
|
text: qsTr("Printer Name:");
|
|
}
|
|
|
|
TextField
|
|
{
|
|
id: machineName; Layout.fillWidth: true; text: machineList.model.getItem(machineList.currentIndex).name
|
|
|
|
}
|
|
|
|
Item
|
|
{
|
|
Layout.fillWidth: true;
|
|
Layout.fillHeight: true;
|
|
}
|
|
|
|
ExclusiveGroup
|
|
{
|
|
id: printerGroup;
|
|
}
|
|
} |