You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
65 lines
1.6 KiB
/* |
|
SPDX-FileCopyrightText: 2009 Aaron Seigo <aseigo@kde.org> |
|
|
|
SPDX-License-Identifier: LGPL-2.1-or-later |
|
*/ |
|
|
|
#include "keyservice.h" |
|
|
|
#include <kmodifierkeyinfo.h> |
|
|
|
KeyService::KeyService(QObject *parent, KModifierKeyInfo *keyInfo, Qt::Key key) |
|
: Plasma::Service(parent) |
|
, m_keyInfo(keyInfo) |
|
, m_key(key) |
|
{ |
|
setName(QStringLiteral("modifierkeystate")); |
|
setDestination(QStringLiteral("keys")); |
|
} |
|
|
|
Plasma::ServiceJob *KeyService::createJob(const QString &operation, QMap<QString, QVariant> ¶meters) |
|
{ |
|
if (operation == QLatin1String("Lock")) { |
|
return new LockKeyJob(this, parameters); |
|
} else if (operation == QLatin1String("Latch")) { |
|
return new LatchKeyJob(this, parameters); |
|
} |
|
|
|
return nullptr; |
|
} |
|
|
|
void KeyService::lock(bool lock) |
|
{ |
|
m_keyInfo->setKeyLocked(m_key, lock); |
|
} |
|
|
|
void KeyService::latch(bool lock) |
|
{ |
|
m_keyInfo->setKeyLatched(m_key, lock); |
|
} |
|
|
|
LockKeyJob::LockKeyJob(KeyService *service, const QMap<QString, QVariant> ¶meters) |
|
: Plasma::ServiceJob(service->destination(), QStringLiteral("Lock"), parameters, service) |
|
, m_service(service) |
|
{ |
|
} |
|
|
|
void LockKeyJob::start() |
|
{ |
|
m_service->lock(parameters().value(QStringLiteral("Lock")).toBool()); |
|
setResult(true); |
|
} |
|
|
|
LatchKeyJob::LatchKeyJob(KeyService *service, const QMap<QString, QVariant> ¶meters) |
|
: Plasma::ServiceJob(service->destination(), QStringLiteral("Lock"), parameters, service) |
|
, m_service(service) |
|
{ |
|
} |
|
|
|
void LatchKeyJob::start() |
|
{ |
|
m_service->latch(parameters().value(QStringLiteral("Lock")).toBool()); |
|
setResult(true); |
|
} |
|
|
|
// vim: sw=4 sts=4 et tw=100
|
|
|