mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-15 03:35:55 +00:00
21 lines
658 B
C
21 lines
658 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "virtualkeyboard_interface.h"
|
||
|
|
||
|
class 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)
|
||
|
Q_PROPERTY(bool available READ available NOTIFY availableChanged)
|
||
|
public:
|
||
|
KwinVirtualKeyboardInterface();
|
||
|
};
|