7096e3ead8
The .clang-format file is based on the one in ECM except the following style options: - AlwaysBreakBeforeMultilineStrings - BinPackArguments - BinPackParameters - ColumnLimit - BreakBeforeBraces - KeepEmptyLinesAtTheStartOfBlocks
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2017 Martin Flöser <mgraesslin@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#include "virtualkeyboard_dbus.h"
|
|
#include <QDBusConnection>
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
VirtualKeyboardDBus::VirtualKeyboardDBus(InputMethod *parent)
|
|
: QObject(parent)
|
|
, m_inputMethod(parent)
|
|
{
|
|
QDBusConnection::sessionBus().registerObject(QStringLiteral("/VirtualKeyboard"), this,
|
|
QDBusConnection::ExportAllProperties | QDBusConnection::ExportScriptableContents | // qdbuscpp2xml doesn't support yet properties with NOTIFY
|
|
QDBusConnection::ExportAllSlots);
|
|
connect(parent, &InputMethod::activeChanged, this, &VirtualKeyboardDBus::activeChanged);
|
|
connect(parent, &InputMethod::enabledChanged, this, &VirtualKeyboardDBus::enabledChanged);
|
|
connect(parent, &InputMethod::visibleChanged, this, &VirtualKeyboardDBus::visibleChanged);
|
|
connect(parent, &InputMethod::availableChanged, this, &VirtualKeyboardDBus::availableChanged);
|
|
}
|
|
|
|
VirtualKeyboardDBus::~VirtualKeyboardDBus() = default;
|
|
|
|
bool VirtualKeyboardDBus::isActive() const
|
|
{
|
|
return m_inputMethod->isActive();
|
|
}
|
|
|
|
void VirtualKeyboardDBus::setEnabled(bool enabled)
|
|
{
|
|
m_inputMethod->setEnabled(enabled);
|
|
}
|
|
|
|
void VirtualKeyboardDBus::setActive(bool active)
|
|
{
|
|
m_inputMethod->setActive(active);
|
|
}
|
|
|
|
bool VirtualKeyboardDBus::isEnabled() const
|
|
{
|
|
return m_inputMethod->isEnabled();
|
|
}
|
|
|
|
bool VirtualKeyboardDBus::isVisible() const
|
|
{
|
|
return m_inputMethod->isVisible();
|
|
}
|
|
|
|
bool VirtualKeyboardDBus::isAvailable() const
|
|
{
|
|
return m_inputMethod->isAvailable();
|
|
}
|
|
|
|
bool VirtualKeyboardDBus::willShowOnActive() const
|
|
{
|
|
return isAvailable() && isEnabled() && m_inputMethod->shouldShowOnActive();
|
|
}
|
|
|
|
}
|