Added UI skeleton for BMS settings screen
This commit is contained in:
22
qml/Controls/LinkLabel.qml
Normal file
22
qml/Controls/LinkLabel.qml
Normal file
@@ -0,0 +1,22 @@
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Controls 2.12
|
||||
|
||||
import Utils 1.0
|
||||
|
||||
Label {
|
||||
id: control
|
||||
color: Palette.selectedTextColor
|
||||
font.pixelSize: 18
|
||||
font.weight: Font.Medium
|
||||
font.underline : true
|
||||
elide: Text.ElideRight
|
||||
|
||||
signal clicked()
|
||||
|
||||
MouseArea{
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: control.clicked()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user