shift-shell/libmobileshell/kwinvirtualkeyboardinterface.h

30 lines
704 B
C++

/*
* SPDX-FileCopyrightText: 2021 Aleix Pol <apol@kde.org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <QDBusConnection>
#include <QObject>
#include <QString>
#include <virtualkeyboardinterface.h>
#include "mobileshell_export.h"
namespace MobileShell
{
class MOBILESHELL_EXPORT KwinVirtualKeyboardInterface : public OrgKdeKwinVirtualKeyboardInterface
{
Q_OBJECT
Q_PROPERTY(bool active READ active WRITE setActive NOTIFY activeChanged)
Q_PROPERTY(bool enabled READ enabled WRITE setEnabled NOTIFY enabledChanged)
Q_PROPERTY(bool visible READ visible NOTIFY visibleChanged)
public:
KwinVirtualKeyboardInterface();
};
} // namespace MobileShell