plasma-sharkle/contents/ui/configGeneral.qml

22 lines
No EOL
474 B
QML

// configGeneral.qml
import QtQuick 2.0
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.1
import org.kde.kirigami 2.5 as Kirigami
Item {
id: page
property alias cfg_sharkleColor: sharkleColor.currentText
Kirigami.FormLayout {
anchors.left: parent.left
anchors.right: parent.right
ComboBox {
id: sharkleColor
Kirigami.FormData.label: "Sharkle Color:"
model: ["Black", "White"]
}
}
}