added column for removing the magic number

CURA-11003
This commit is contained in:
Saumya Jain 2024-04-04 14:09:58 +02:00
parent a6e91fecf3
commit 2ed0377a05

View file

@ -15,7 +15,7 @@ import Cura 1.1 as Cura
Item
{
id: base
property bool findingPrinters: false
property bool searchFilterApplied: false
// The currently selected machine item in the local machine list.
property var currentItem: machineList.currentIndex >= 0 ? machineList.model.getItem(machineList.currentIndex) : null
// The currently active (expanded) section/category, where section/category is the grouping of local machine items.
@ -65,7 +65,7 @@ Item
{
id: printerSearchTimer
onTriggered: filter.editingFinished()
interval: 500
interval: 50
running: false
repeat: false
}
@ -79,10 +79,24 @@ Item
base.currentSections = base.currentSections;
}
Row
{
id: localPrinterSelectionItem
anchors.fill: parent
Column
{
id: root
width: Math.floor(parent.width * 0.48)
height: parent.height
Item
{
width: root.width
height: filter.height
Cura.TextField
{
id: filter
width: Math.floor(parent.width * 0.48)
width:parent.width
implicitHeight: parent.height
placeholderText: catalog.i18nc("@label:textbox", "Search Printer")
font: UM.Theme.getFont("default_italic")
@ -107,14 +121,14 @@ Item
onEditingFinished:
{
machineDefinitionsModel.filter = {"id" : "*" + text.toLowerCase() + "*", "visible": true}
base.findingPrinters = (text.length > 0)
base.searchFilterApplied = (text.length > 0)
updateDefinitionModel()
}
Keys.onEscapePressed: filter.text = ""
function updateDefinitionModel()
{
if (base.findingPrinters)
if (base.searchFilterApplied)
{
base.currentSections.clear()
for (var i = 0; i < machineDefinitionsModel.count; i++)
@ -143,11 +157,12 @@ Item
}
}
UM.SimpleButton
{
id: clearFilterButton
iconSource: UM.Theme.getIcon("Cancel")
visible: base.findingPrinters
visible: base.searchFilterApplied
height: Math.round(filter.height * 0.4)
width: visible ? height : 0
@ -165,19 +180,14 @@ Item
filter.forceActiveFocus()
}
}
Row
{
id: localPrinterSelectionItem
anchors.fill: parent
}
//Selecting a local printer to add from this list.
ListView
{
id: machineList
width: Math.floor(parent.width * 0.48)
height: parent.height - filter.height
y: filter.height
width:root.width
height: root.height - filter.height
clip: true
ScrollBar.vertical: UM.ScrollBar {}
@ -265,6 +275,7 @@ Item
onClicked: base.updateCurrentItem(index)
}
}
}
// Vertical line
Rectangle