diff options
Diffstat (limited to 'Header.ui.qml')
-rw-r--r-- | Header.ui.qml | 76 |
1 files changed, 2 insertions, 74 deletions
diff --git a/Header.ui.qml b/Header.ui.qml index f2c61eb..29091b6 100644 --- a/Header.ui.qml +++ b/Header.ui.qml @@ -6,6 +6,7 @@ import Eduport 1.4 import "DropShadow" as DrpShdw import "Button" as Btn import "Label" as Lbl +import "Header" ToolBar { property alias logo: logo @@ -133,80 +134,7 @@ ToolBar { width: 256 sourceComponent: background } - delegate: MenuItem { - id: cartMenuItem - contentItem: ColumnLayout { - - Loader { - Layout.fillWidth: true - Layout.topMargin: -24 - Layout.leftMargin: -8 - Layout.rightMargin: -8 - sourceComponent: menuSeparator - } - - RowLayout { - Layout.margins: 16 - - Loader { - property string - imageSource: - cartMenuItem - .icon.source - property int - imageWidth: 50 - property int - imageHeight: 50 - property real - maskRadius: 5.2 - sourceComponent: image - Layout.alignment: - Qt.AlignTop - } - - ColumnLayout { - - RowLayout { - - Lbl.H6 { - text: - cartMenuItem - .text - Layout - .fillWidth: - true - } - - Button { - Layout.alignment: Qt.AlignTop - contentItem: Image { - source: "Bootstrap/icons/x.svg" - - ColorOverlay { - color: Eduport.bsGray600 - source: parent - anchors.fill: parent - } - } - background: Rectangle { - color: "transparent" - implicitWidth: 13 - } - } - } - - ComboBox { - model: [1, 2, - 3, 4, - 5] - } - } - } - } - background: Rectangle { - color: "transparent" - } - } + delegate: CartItem {} Lbl.H5 { text: qsTr("Cart items") |