summaryrefslogtreecommitdiff
path: root/modules/launcher/items/CalcItem.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-01-08 16:13:14 -0500
committerFreya Murphy <freya@freyacat.org>2026-01-08 16:13:14 -0500
commit814d2f336c6a56e53412201bf99ca69753bda71b (patch)
treedd793d6efe906b30ced51152f377f9907f1ab06f /modules/launcher/items/CalcItem.qml
parentclean up lock screen (diff)
downloadcaelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.tar.gz
caelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.tar.bz2
caelestia-shell-814d2f336c6a56e53412201bf99ca69753bda71b.zip
remove themes and configs from launcher
Diffstat (limited to 'modules/launcher/items/CalcItem.qml')
-rw-r--r--modules/launcher/items/CalcItem.qml123
1 files changed, 0 insertions, 123 deletions
diff --git a/modules/launcher/items/CalcItem.qml b/modules/launcher/items/CalcItem.qml
deleted file mode 100644
index 65489d9..0000000
--- a/modules/launcher/items/CalcItem.qml
+++ /dev/null
@@ -1,123 +0,0 @@
-import qs.components
-import qs.services
-import qs.config
-import Caelestia
-import Quickshell
-import QtQuick
-import QtQuick.Layouts
-
-Item {
- id: root
-
- required property var list
- readonly property string math: list.search.text.slice(`${Config.launcher.actionPrefix}calc `.length)
-
- function onClicked(): void {
- Quickshell.execDetached(["wl-copy", Qalculator.eval(math, false)]);
- root.list.visibilities.launcher = false;
- }
-
- implicitHeight: Config.launcher.sizes.itemHeight
-
- anchors.left: parent?.left
- anchors.right: parent?.right
-
- StateLayer {
- radius: Appearance.rounding.normal
-
- function onClicked(): void {
- root.onClicked();
- }
- }
-
- RowLayout {
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.verticalCenter: parent.verticalCenter
- anchors.margins: Appearance.padding.larger
-
- spacing: Appearance.spacing.normal
-
- MaterialIcon {
- text: "function"
- font.pointSize: Appearance.font.size.extraLarge
- Layout.alignment: Qt.AlignVCenter
- }
-
- StyledText {
- id: result
-
- color: {
- if (text.includes("error: ") || text.includes("warning: "))
- return Colours.palette.m3error;
- if (!root.math)
- return Colours.palette.m3onSurfaceVariant;
- return Colours.palette.m3onSurface;
- }
-
- text: root.math.length > 0 ? Qalculator.eval(root.math) : qsTr("Type an expression to calculate")
- elide: Text.ElideLeft
-
- Layout.fillWidth: true
- Layout.alignment: Qt.AlignVCenter
- }
-
- StyledRect {
- color: Colours.palette.m3tertiary
- radius: Appearance.rounding.normal
- clip: true
-
- implicitWidth: (stateLayer.containsMouse ? label.implicitWidth + label.anchors.rightMargin : 0) + icon.implicitWidth + Appearance.padding.normal * 2
- implicitHeight: Math.max(label.implicitHeight, icon.implicitHeight) + Appearance.padding.small * 2
-
- Layout.alignment: Qt.AlignVCenter
-
- StateLayer {
- id: stateLayer
-
- color: Colours.palette.m3onTertiary
-
- function onClicked(): void {
- Quickshell.execDetached(["app2unit", "--", ...Config.general.apps.terminal, "fish", "-C", `exec qalc -i '${root.math}'`]);
- root.list.visibilities.launcher = false;
- }
- }
-
- StyledText {
- id: label
-
- anchors.verticalCenter: parent.verticalCenter
- anchors.right: icon.left
- anchors.rightMargin: Appearance.spacing.small
-
- text: qsTr("Open in calculator")
- color: Colours.palette.m3onTertiary
- font.pointSize: Appearance.font.size.normal
-
- opacity: stateLayer.containsMouse ? 1 : 0
-
- Behavior on opacity {
- Anim {}
- }
- }
-
- MaterialIcon {
- id: icon
-
- anchors.verticalCenter: parent.verticalCenter
- anchors.right: parent.right
- anchors.rightMargin: Appearance.padding.normal
-
- text: "open_in_new"
- color: Colours.palette.m3onTertiary
- font.pointSize: Appearance.font.size.large
- }
-
- Behavior on implicitWidth {
- Anim {
- easing.bezierCurve: Appearance.anim.curves.emphasized
- }
- }
- }
- }
-}