2021-12-25 00:18:38 +00:00
|
|
|
/*
|
|
|
|
|
* 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>
|
|
|
|
|
|
2022-03-13 20:27:14 +00:00
|
|
|
#include "mobileshell_export.h"
|
|
|
|
|
|
|
|
|
|
namespace MobileShell
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class MOBILESHELL_EXPORT KwinVirtualKeyboardInterface : public OrgKdeKwinVirtualKeyboardInterface
|
2021-12-25 00:18:38 +00:00
|
|
|
{
|
|
|
|
|
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();
|
|
|
|
|
};
|
2022-03-13 20:27:14 +00:00
|
|
|
|
|
|
|
|
} // namespace MobileShell
|