aboutsummaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/TemplateButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/TemplateButton.qml')
-rw-r--r--mobile-widgets/qml/TemplateButton.qml22
1 files changed, 22 insertions, 0 deletions
diff --git a/mobile-widgets/qml/TemplateButton.qml b/mobile-widgets/qml/TemplateButton.qml
new file mode 100644
index 000000000..49ca8c0dd
--- /dev/null
+++ b/mobile-widgets/qml/TemplateButton.qml
@@ -0,0 +1,22 @@
+// SPDX-License-Identifier: GPL-2.0
+import QtQuick 2.6
+import QtQuick.Controls 2.2
+import org.kde.kirigami 2.4 as Kirigami
+
+Button {
+ id: root
+ background: Rectangle {
+ id: buttonBackground
+ color: root.enabled? (root.pressed ? subsurfaceTheme.darkerPrimaryColor : subsurfaceTheme.primaryColor) : "gray"
+ antialiasing: true
+ radius: Kirigami.Units.smallSpacing * 2
+ height: buttonText.height * 2
+ }
+ contentItem: Text {
+ id: buttonText
+ text: root.text
+ font.pointSize: subsurfaceTheme.regularPointSize
+ anchors.centerIn: buttonBackground
+ color: root.pressed ? subsurfaceTheme.darkerPrimaryTextColor :subsurfaceTheme.primaryTextColor
+ }
+}