refactor: remove unsed component
This commit is contained in:
parent
7fe218fc85
commit
e97f1c5e37
|
@ -1,79 +0,0 @@
|
||||||
import QtQuick 2.13
|
|
||||||
import QtQuick.Controls 2.13
|
|
||||||
import QtQuick.Layouts 1.13
|
|
||||||
import QtGraphicalEffects 1.13
|
|
||||||
|
|
||||||
import utils 1.0
|
|
||||||
import "../../shared"
|
|
||||||
import "../../shared/panels"
|
|
||||||
|
|
||||||
Button {
|
|
||||||
id: control
|
|
||||||
property string label: ""
|
|
||||||
property string description: ""
|
|
||||||
property string info: ""
|
|
||||||
|
|
||||||
width: parent.width
|
|
||||||
horizontalPadding: 0
|
|
||||||
|
|
||||||
background: Rectangle {
|
|
||||||
anchors.fill: parent
|
|
||||||
color: "transparent"
|
|
||||||
}
|
|
||||||
|
|
||||||
contentItem: RowLayout {
|
|
||||||
id: item
|
|
||||||
width: parent.width
|
|
||||||
|
|
||||||
Column {
|
|
||||||
spacing: 2
|
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: control.label
|
|
||||||
font.pixelSize: 15
|
|
||||||
}
|
|
||||||
|
|
||||||
StyledText {
|
|
||||||
text: control.description
|
|
||||||
color: Style.current.secondaryText
|
|
||||||
font.pixelSize: 15
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Item {
|
|
||||||
Layout.alignment: Qt.AlignRight
|
|
||||||
height: info.height
|
|
||||||
StyledText {
|
|
||||||
id: info
|
|
||||||
text: control.info
|
|
||||||
color: Style.current.secondaryText
|
|
||||||
font.pixelSize: 15
|
|
||||||
anchors.right: icon.left
|
|
||||||
anchors.rightMargin: icon.width + Style.current.padding
|
|
||||||
}
|
|
||||||
|
|
||||||
SVGImage {
|
|
||||||
id: icon
|
|
||||||
source: Style.svg("caret")
|
|
||||||
width: 13
|
|
||||||
height: 7
|
|
||||||
rotation: -90
|
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
|
||||||
}
|
|
||||||
|
|
||||||
ColorOverlay {
|
|
||||||
anchors.fill: icon
|
|
||||||
source: icon
|
|
||||||
color: Style.current.darkGrey
|
|
||||||
rotation: -90
|
|
||||||
antialiasing: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
MouseArea {
|
|
||||||
cursorShape: Qt.PointingHandCursor
|
|
||||||
anchors.fill: parent
|
|
||||||
onPressed: mouse.accepted = false
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -11,7 +11,6 @@ StatusImageIdenticon 1.0 StatusImageIdenticon.qml
|
||||||
StatusRadioButton 1.0 StatusRadioButton.qml
|
StatusRadioButton 1.0 StatusRadioButton.qml
|
||||||
StatusRoundButton 1.0 StatusRoundButton.qml
|
StatusRoundButton 1.0 StatusRoundButton.qml
|
||||||
StatusSectionHeadline 1.0 StatusSectionHeadline.qml
|
StatusSectionHeadline 1.0 StatusSectionHeadline.qml
|
||||||
StatusSectionMenuItem 1.0 StatusSectionMenuItem.qml
|
|
||||||
StatusSlider 1.0 StatusSlider.qml
|
StatusSlider 1.0 StatusSlider.qml
|
||||||
StatusStickerButton 1.0 StatusStickerButton.qml
|
StatusStickerButton 1.0 StatusStickerButton.qml
|
||||||
StatusStickerList 1.0 StatusStickerList.qml
|
StatusStickerList 1.0 StatusStickerList.qml
|
||||||
|
|
Loading…
Reference in New Issue