2020-02-19 12:06:03 +01:00
|
|
|
import QtQuick 2.0
|
2020-08-18 11:45:23 +02:00
|
|
|
import QtQuick.Layouts 1.12
|
2020-02-19 12:06:03 +01:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
|
|
|
|
ComponentBase {
|
2020-08-18 11:45:23 +02:00
|
|
|
id: root
|
|
|
|
title: "Plasma Components 3 TabBar with TabButtons"
|
|
|
|
contentItem: PlasmaComponents.TabBar {
|
|
|
|
implicitWidth: tabButton2.implicitWidth*4
|
2020-02-19 12:06:03 +01:00
|
|
|
PlasmaComponents.TabButton {
|
|
|
|
icon.name: "application-menu"
|
|
|
|
text: "Icon Only"
|
|
|
|
display: PlasmaComponents.TabButton.IconOnly
|
|
|
|
}
|
|
|
|
PlasmaComponents.TabButton {
|
2020-08-18 11:45:23 +02:00
|
|
|
id: tabButton2
|
2020-02-19 12:06:03 +01:00
|
|
|
icon.name: "application-menu"
|
|
|
|
text: "Text Beside Icon"
|
|
|
|
display: PlasmaComponents.TabButton.TextBesideIcon
|
|
|
|
}
|
|
|
|
PlasmaComponents.TabButton {
|
|
|
|
icon.name: "application-menu"
|
|
|
|
text: "Text Under Icon"
|
|
|
|
display: PlasmaComponents.TabButton.TextUnderIcon
|
|
|
|
}
|
|
|
|
PlasmaComponents.TabButton {
|
|
|
|
icon.name: "application-menu"
|
|
|
|
text: "Text Only"
|
|
|
|
display: PlasmaComponents.TabButton.TextOnly
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|