2019-09-10 12:35:55 +02:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
2019-09-10 12:35:55 +02:00
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
2019-09-10 12:35:55 +02:00
|
|
|
|
2019-12-09 17:33:23 +01:00
|
|
|
ComponentBase {
|
2019-09-10 12:35:55 +02:00
|
|
|
Flow {
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 20
|
|
|
|
spacing: 20
|
|
|
|
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
icon.name: "list-remove"
|
|
|
|
text: "test"
|
|
|
|
flat: true
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
icon.name: "list-remove"
|
|
|
|
flat: true
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
text: "test"
|
|
|
|
flat: true
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
icon.name: "list-remove"
|
|
|
|
text: "test"
|
|
|
|
flat: false
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
icon.name: "list-remove"
|
|
|
|
flat: false
|
|
|
|
}
|
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
text: "test"
|
|
|
|
flat: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|