summaryrefslogtreecommitdiff
path: root/noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-07-31 14:03:07 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-07-31 14:03:07 +0700
commit4835f660f9435fa64336daaaae1ea3cab1dfbee6 (patch)
tree45524b7f7cdb6009fa85558cea44678b2b563a43 /noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml
parent59226408d8bc950d7ec8c21623f28b5f7de8fce0 (diff)
mouse
Diffstat (limited to 'noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml')
-rw-r--r--noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml93
1 files changed, 0 insertions, 93 deletions
diff --git a/noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml b/noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml
deleted file mode 100644
index 7094a4a..0000000
--- a/noctalia/.config/plugins/keybind-cheatsheet/ColorPairRow.qml
+++ /dev/null
@@ -1,93 +0,0 @@
-import QtQuick
-import QtQuick.Controls
-import QtQuick.Layouts
-import qs.Commons
-import qs.Widgets
-import "." as Local
-
-// Label + background pill + text pill + optional rename field + reset. Used by
-// Settings.qml for per-category color customization. Empty bgValue/textValue
-// means "use fallback". When showLabel is set, an extra text field lets the user
-// rename the key's display label (used for the generic Mod2/Mod3/Mod5 keys).
-RowLayout {
- id: row
-
- property var pluginApi
- property var screen
- property string labelText: ""
- property string bgValue: ""
- property string textValue: ""
- property color bgFallback: "#888888"
- property color textFallback: "#FFFFFF"
- property string letter: "A"
- property string clipboardHex: ""
- property bool showBg: true
- property bool showText: true
- // Optional display-label override (e.g. rename "Mod3" -> "Hyper")
- property bool showLabel: false
- property string labelValue: ""
- property string labelPlaceholder: ""
-
- signal bgPicked(color value)
- signal textPicked(color value)
- signal bgPasted(string hex)
- signal textPasted(string hex)
- signal labelEdited(string value)
- signal resetRequested()
-
- Layout.fillWidth: true
- spacing: Style.marginM
-
- NText {
- text: row.labelText
- color: Color.mOnSurface
- pointSize: Style.fontSizeM
- Layout.preferredWidth: 180 * Style.uiScaleRatio
- elide: Text.ElideRight
- }
-
- Local.ColorPill {
- Layout.preferredWidth: 130 * Style.uiScaleRatio
- visible: row.showBg
- screen: row.screen
- hexValue: row.bgValue
- displayColor: row.bgValue.length > 0 ? row.bgValue : row.bgFallback
- textMode: false
- clipboardHex: row.clipboardHex
- placeholderText: row.bgValue.length === 0 ? row.pluginApi?.tr("settings.color-auto") : ""
- onColorPicked: c => row.bgPicked(c)
- onPasteRequested: hex => row.bgPasted(hex)
- }
-
- Local.ColorPill {
- Layout.preferredWidth: 130 * Style.uiScaleRatio
- visible: row.showText
- screen: row.screen
- hexValue: row.textValue
- displayColor: row.textValue.length > 0 ? row.textValue : row.textFallback
- textMode: true
- letter: row.letter
- textModeBg: row.bgValue.length > 0 ? row.bgValue : row.bgFallback
- clipboardHex: row.clipboardHex
- placeholderText: row.textValue.length === 0 ? row.pluginApi?.tr("settings.color-auto") : ""
- onColorPicked: c => row.textPicked(c)
- onPasteRequested: hex => row.textPasted(hex)
- }
-
- NTextInput {
- Layout.preferredWidth: 160 * Style.uiScaleRatio
- Layout.preferredHeight: Style.baseWidgetSize
- visible: row.showLabel
- text: row.labelValue
- placeholderText: row.labelPlaceholder
- onTextChanged: row.labelEdited(text)
- }
-
- Item { Layout.fillWidth: true }
-
- NIconButton {
- icon: "rotate"
- tooltipText: row.pluginApi?.tr("settings.reset-color")
- onClicked: row.resetRequested()
- }
-}