diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 22:45:15 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-04 22:45:15 +1000 |
| commit | c5381c5194adf97c240acb98eb4c4c950633b325 (patch) | |
| tree | 52b18eb1771ec6708c86f11d786684f03b8a7c48 /components/controls | |
| parent | dashboard: display correct temp units (diff) | |
| download | caelestia-shell-c5381c5194adf97c240acb98eb4c4c950633b325.tar.gz caelestia-shell-c5381c5194adf97c240acb98eb4c4c950633b325.tar.bz2 caelestia-shell-c5381c5194adf97c240acb98eb4c4c950633b325.zip | |
internal: refactor widgets folder
Split into subdirs and rename to components
Diffstat (limited to '')
| -rw-r--r-- | components/controls/CustomMouseArea.qml (renamed from widgets/CustomMouseArea.qml) | 0 | ||||
| -rw-r--r-- | components/controls/CustomSpinBox.qml (renamed from widgets/CustomSpinBox.qml) | 1 | ||||
| -rw-r--r-- | components/controls/StyledBusyIndicator.qml (renamed from widgets/StyledBusyIndicator.qml) | 0 | ||||
| -rw-r--r-- | components/controls/StyledScrollBar.qml (renamed from widgets/StyledScrollBar.qml) | 1 | ||||
| -rw-r--r-- | components/controls/StyledSwitch.qml (renamed from widgets/StyledSwitch.qml) | 1 | ||||
| -rw-r--r-- | components/controls/StyledTextField.qml (renamed from widgets/StyledTextField.qml) | 1 | ||||
| -rw-r--r-- | components/controls/VerticalSlider.qml (renamed from widgets/VerticalSlider.qml) | 3 |
7 files changed, 6 insertions, 1 deletions
diff --git a/widgets/CustomMouseArea.qml b/components/controls/CustomMouseArea.qml index 7c973c2..7c973c2 100644 --- a/widgets/CustomMouseArea.qml +++ b/components/controls/CustomMouseArea.qml diff --git a/widgets/CustomSpinBox.qml b/components/controls/CustomSpinBox.qml index 7bd4d2b..4611bed 100644 --- a/widgets/CustomSpinBox.qml +++ b/components/controls/CustomSpinBox.qml @@ -1,5 +1,6 @@ pragma ComponentBehavior: Bound +import ".." import qs.services import qs.config import QtQuick diff --git a/widgets/StyledBusyIndicator.qml b/components/controls/StyledBusyIndicator.qml index 060870f..060870f 100644 --- a/widgets/StyledBusyIndicator.qml +++ b/components/controls/StyledBusyIndicator.qml diff --git a/widgets/StyledScrollBar.qml b/components/controls/StyledScrollBar.qml index 9e1f891..61ddc6d 100644 --- a/widgets/StyledScrollBar.qml +++ b/components/controls/StyledScrollBar.qml @@ -1,3 +1,4 @@ +import ".." import qs.services import qs.config import QtQuick diff --git a/widgets/StyledSwitch.qml b/components/controls/StyledSwitch.qml index 9a7448c..c9d7330 100644 --- a/widgets/StyledSwitch.qml +++ b/components/controls/StyledSwitch.qml @@ -1,3 +1,4 @@ +import ".." import qs.services import qs.config import QtQuick diff --git a/widgets/StyledTextField.qml b/components/controls/StyledTextField.qml index d4a470a..30db314 100644 --- a/widgets/StyledTextField.qml +++ b/components/controls/StyledTextField.qml @@ -1,5 +1,6 @@ pragma ComponentBehavior: Bound +import ".." import qs.services import qs.config import QtQuick diff --git a/widgets/VerticalSlider.qml b/components/controls/VerticalSlider.qml index 9b55a0d..306cc24 100644 --- a/widgets/VerticalSlider.qml +++ b/components/controls/VerticalSlider.qml @@ -1,4 +1,5 @@ -import qs.widgets +import ".." +import "../effects" import qs.services import qs.config import QtQuick |