mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 15:03:09 +00:00
22 lines
428 B
QML
22 lines
428 B
QML
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2025 Micah Stanley <stanleymicah@proton.me>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
import QtQuick.Layouts
|
||
|
|
|
||
|
|
import org.kde.plasma.private.mobileshell.state as MobileShellState
|
||
|
|
import org.kde.plasma.private.mobileshell as MobileShell
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This sets up the popup action buttons.
|
||
|
|
*/
|
||
|
|
QtObject {
|
||
|
|
id: component
|
||
|
|
|
||
|
|
property var rotationButton: RotationButton {}
|
||
|
|
}
|
||
|
|
|