107 lines
2.9 KiB
QML
107 lines
2.9 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import QtGraphicalEffects 1.13
|
|
import "../imports"
|
|
|
|
Item {
|
|
// property string label: "My Label"
|
|
property string label: ""
|
|
readonly property bool hasLabel: label !== ""
|
|
property color bgColor: Theme.grey
|
|
readonly property int labelMargin: 7
|
|
property var selectOptions
|
|
property int customHeight: 44
|
|
|
|
id: inputBox
|
|
height: inputRectangle.height + (hasLabel ? inputLabel.height + labelMargin : 0)
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
|
|
StyledText {
|
|
id: inputLabel
|
|
text: inputBox.label
|
|
font.weight: Font.Medium
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: 0
|
|
anchors.top: parent.top
|
|
anchors.topMargin: 0
|
|
font.pixelSize: 13
|
|
color: Theme.black
|
|
}
|
|
|
|
Rectangle {
|
|
id: inputRectangle
|
|
height: customHeight
|
|
color: bgColor
|
|
radius: 8
|
|
anchors.top: inputBox.hasLabel ? inputLabel.bottom : parent.top
|
|
anchors.topMargin: inputBox.hasLabel ? inputBox.labelMargin : 0
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
|
|
Menu {
|
|
id: selectMenu
|
|
width: parent.width
|
|
padding: 10
|
|
background: Rectangle {
|
|
width: parent.width
|
|
height: parent.height
|
|
color: Theme.grey
|
|
radius: Theme.radius
|
|
}
|
|
Component.onCompleted: {
|
|
if (!selectOptions) {
|
|
return
|
|
}
|
|
|
|
selectOptions.forEach(function (element) {
|
|
var item = menuItem.createObject(undefined, element)
|
|
selectMenu.addItem(item)
|
|
})
|
|
}
|
|
|
|
Component {
|
|
id: menuItem
|
|
MenuItem {
|
|
property var onClicked: console.log("Default click function. Override me please")
|
|
property color bgColor: Theme.white
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
onTriggered: function () {
|
|
onClicked()
|
|
}
|
|
background: Rectangle {
|
|
color: bgColor
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
SVGImage {
|
|
id: caret
|
|
width: 11
|
|
height: 6
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.padding
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
fillMode: Image.PreserveAspectFit
|
|
source: "../app/img/caret.svg"
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
anchors.fill: parent
|
|
onClicked: {
|
|
selectMenu.open()
|
|
}
|
|
}
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.25}
|
|
}
|
|
##^##*/
|