mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
60 lines
2.3 KiB
QML
60 lines
2.3 KiB
QML
/*import QtQuick 2.6
|
|
import QtQuick.Layouts 1.1
|
|
import QtGraphicalEffects 1.0
|
|
import QtQml.Models 2.2
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
// for Highlight
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
|
import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons
|
|
*/
|
|
import QtQuick 2.5
|
|
import QtQuick.Layouts 1.1
|
|
import QtQuick.Window 2.15
|
|
import org.kde.plasma.core as PlasmaCore
|
|
import org.kde.plasma.plasmoid 2.0
|
|
import org.kde.ksvg 1.0 as KSvg
|
|
import org.kde.kirigami 2.5 as Kirigami // For Settings.tabletMode
|
|
|
|
MouseArea {
|
|
id: toolButton
|
|
|
|
Layout.maximumWidth: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small+1;
|
|
Layout.maximumHeight: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small;
|
|
Layout.preferredWidth: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small+1;
|
|
Layout.preferredHeight: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small;
|
|
width: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small+1;
|
|
height: largeSize ? Kirigami.Units.iconSizes.small + Kirigami.Units.smallSpacing : Kirigami.Units.iconSizes.small
|
|
|
|
//signal clicked
|
|
property string buttonIcon: ""
|
|
property bool checkable: false
|
|
property bool checked: false
|
|
property bool largeSize: false
|
|
|
|
hoverEnabled: true
|
|
KSvg.FrameSvgItem {
|
|
id: normalButton
|
|
imagePath: Qt.resolvedUrl("svgs/button.svgz")
|
|
anchors.fill: parent
|
|
prefix: {
|
|
if(parent.containsPress || (checkable && checked)) return "toolbutton-pressed";
|
|
else return "toolbutton-hover";
|
|
}
|
|
visible: parent.containsMouse || (checkable && checked)
|
|
}
|
|
|
|
KSvg.SvgItem {
|
|
id: buttonIconSvg
|
|
imagePath: Qt.resolvedUrl("svgs/icons.svg");
|
|
elementId: buttonIcon
|
|
width: largeSize ? Kirigami.Units.iconSizes.small : 10;
|
|
height: largeSize ? Kirigami.Units.iconSizes.small : 10;
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
}
|
|
|