132 lines
2.9 KiB
QML
132 lines
2.9 KiB
QML
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
import QtQuick.Controls 1.2
|
|
import QtQuick.Layouts 1.2
|
|
|
|
ComponentBase {
|
|
Grid {
|
|
anchors.fill: parent
|
|
anchors.margins: 20
|
|
spacing: 20
|
|
columns: 2
|
|
|
|
Label {
|
|
text: "icon + text"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
iconSource: "list-remove"
|
|
text: "test"
|
|
}
|
|
|
|
Label {
|
|
text: "icon alone, should look small and square"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
iconSource: "list-remove"
|
|
}
|
|
|
|
Label {
|
|
text: "text alone, should be about 12 chars wide"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
text: "test"
|
|
}
|
|
|
|
Label {
|
|
text: "This should look highlighted on load"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
text: "test"
|
|
focus: true
|
|
}
|
|
|
|
|
|
Label {
|
|
text: "long text, should expand to fit"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
iconSource: "list-remove"
|
|
text: "This is a really really really really long button"
|
|
}
|
|
|
|
Label {
|
|
text: "long text but constrained, should be 150px and elided"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
iconSource: "list-remove"
|
|
text: "This is a really really really really long button"
|
|
width: 150
|
|
}
|
|
|
|
Label {
|
|
text: "button with menu"
|
|
}
|
|
|
|
PlasmaComponents.Button {
|
|
text: "test"
|
|
menu: Menu {
|
|
MenuItem {
|
|
text: "Cut"
|
|
shortcut: "Ctrl+X"
|
|
}
|
|
|
|
MenuItem {
|
|
text: "Copy"
|
|
shortcut: "Ctrl+C"
|
|
}
|
|
|
|
MenuItem {
|
|
text: "Paste"
|
|
shortcut: "Ctrl+V"
|
|
}
|
|
|
|
MenuSeparator { }
|
|
|
|
Menu {
|
|
title: "More Stuff"
|
|
|
|
MenuItem {
|
|
text: "Do Nothing"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Label {
|
|
text: "button (with or without icon) and textfield should have the same height"
|
|
}
|
|
|
|
RowLayout {
|
|
PlasmaComponents.Button {
|
|
text: "test"
|
|
}
|
|
PlasmaComponents.Button {
|
|
iconSource: "application-menu"
|
|
text: "test"
|
|
}
|
|
PlasmaComponents.TextField {
|
|
}
|
|
}
|
|
|
|
Label {
|
|
text: "minimum width property. Should be two letters wide"
|
|
}
|
|
|
|
RowLayout {
|
|
PlasmaComponents.Button {
|
|
text: "AA"
|
|
implicitWidth: minimumWidth
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|