/* * SPDX-FileCopyrightText: 2021 Aleix Pol * * SPDX-License-Identifier: GPL-2.0-or-later */ #pragma once #include #include #include #include #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