shift-shell/components/mobileshell/components/direction.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
324 B
C
Raw Normal View History

/*
* SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QObject>
#include <qqmlregistration.h>
class Direction : public QObject
{
Q_OBJECT
QML_ELEMENT
public:
enum Type { None = 0, Up, Down, Left, Right };
Q_ENUM(Type)
};