diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:07:19 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-19 21:07:19 -0500 |
| commit | 978a3f430226ae6cead3284329b4dcb309e979ee (patch) | |
| tree | 716c94756a86320eddd07c37e2651b5fb9709bf5 /modules/controlcenter/components/SplitPaneWithDetails.qml | |
| parent | refactor: ToggleButton Tooltips and DeviceList (diff) | |
| download | caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.tar.gz caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.tar.bz2 caelestia-shell-978a3f430226ae6cead3284329b4dcb309e979ee.zip | |
cleanup: removed comments
Diffstat (limited to '')
| -rw-r--r-- | modules/controlcenter/components/SplitPaneWithDetails.qml | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/modules/controlcenter/components/SplitPaneWithDetails.qml b/modules/controlcenter/components/SplitPaneWithDetails.qml index e139aca..6af8c1a 100644 --- a/modules/controlcenter/components/SplitPaneWithDetails.qml +++ b/modules/controlcenter/components/SplitPaneWithDetails.qml @@ -9,41 +9,6 @@ import Quickshell.Widgets import QtQuick import QtQuick.Layouts -/** - * SplitPaneWithDetails - * - * A reusable component that provides a split-pane layout with a list on the left - * and a details/settings view on the right. The right pane automatically switches - * between details and settings views based on whether an item is selected. - * - * This component eliminates duplication across WirelessPane, EthernetPane, and BtPane - * by providing a standardized pattern for split-pane layouts with transition animations. - * - * Usage: - * ```qml - * SplitPaneWithDetails { - * activeItem: root.session.network.active - * leftContent: Component { - * WirelessList { - * session: root.session - * } - * } - * rightDetailsComponent: Component { - * WirelessDetails { - * session: root.session - * } - * } - * rightSettingsComponent: Component { - * StyledFlickable { - * WirelessSettings { - * session: root.session - * } - * } - * } - * paneIdGenerator: (item) => item ? (item.ssid || item.bssid || "") : "" - * } - * ``` - */ Item { id: root |