mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00

I think the icon on the button is too small, but that's not currently configurable. Will have to look into that. Contributes to issue CURA-8565.
47 lines
No EOL
1.4 KiB
QML
47 lines
No EOL
1.4 KiB
QML
// Copyright (c) 2021 Ultimaker B.V.
|
|
// Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Cura 1.0 as Cura
|
|
import UM 1.0 as UM
|
|
|
|
Item
|
|
{
|
|
Column
|
|
{
|
|
anchors.fill: parent
|
|
anchors.margins: UM.Theme.getSize("default_margin").width
|
|
|
|
RowLayout
|
|
{
|
|
spacing: UM.Theme.getSize("default_margin").width
|
|
|
|
Cura.SecondaryButton
|
|
{
|
|
Layout.alignment: Qt.AlignVCenter
|
|
Layout.preferredHeight: UM.Theme.getSize("action_button").height
|
|
Layout.preferredWidth: height
|
|
|
|
onClicked: contextStack.pop() //Remove this page, returning to the main package list or whichever thing is beneath it.
|
|
|
|
tooltip: catalog.i18nc("@button:tooltip", "Back")
|
|
toolTipContentAlignment: Cura.ToolTip.ContentAlignment.AlignRight
|
|
iconSource: UM.Theme.getIcon("ArrowLeft")
|
|
leftPadding: UM.Theme.getSize("narrow_margin").width
|
|
rightPadding: leftPadding
|
|
}
|
|
|
|
Label
|
|
{
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
text: "Install Plug-ins" //TODO: Depend on package type, and translate.
|
|
font: UM.Theme.getFont("large")
|
|
color: UM.Theme.getColor("text")
|
|
}
|
|
}
|
|
}
|
|
} |