123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // 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
- {
- id: detailPage
- property var packageData: packages.selectedPackage
- RowLayout
- {
- id: header
- anchors
- {
- top: parent.top
- topMargin: UM.Theme.getSize("default_margin").height
- left: parent.left
- leftMargin: UM.Theme.getSize("default_margin").width
- right: parent.right
- rightMargin: anchors.leftMargin
- }
- 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
- leftPadding: UM.Theme.getSize("narrow_margin").width
- rightPadding: leftPadding
- iconSource: UM.Theme.getIcon("ArrowLeft")
- iconSize: height - leftPadding * 2
- }
- Label
- {
- Layout.alignment: Qt.AlignVCenter
- Layout.fillWidth: true
- text: "Install Plug-ins" //TODO: Depend on package type, and translate.
- font: UM.Theme.getFont("large")
- color: UM.Theme.getColor("text")
- }
- }
- Rectangle
- {
- anchors
- {
- top: header.bottom
- topMargin: UM.Theme.getSize("default_margin").height
- left: parent.left
- right: parent.right
- bottom: parent.bottom
- }
- color: UM.Theme.getColor("detail_background")
- PackageCard
- {
- packageData: detailPage.packageData
- }
- }
- }
|