mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-06-12 17:27:43 +00:00
14 lines
221 B
QML
14 lines
221 B
QML
|
|
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
||
|
|
|
||
|
|
import QtQuick
|
||
|
|
|
||
|
|
QtObject {
|
||
|
|
enum Orientation {
|
||
|
|
Above,
|
||
|
|
Below,
|
||
|
|
Left,
|
||
|
|
Right
|
||
|
|
}
|
||
|
|
}
|