3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-21 22:55:53 +00:00
Brooklyn/plasma/kcms/touchpad/applet/touchpadservice.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

29 lines
672 B
C++

/*
SPDX-FileCopyrightText: 2013 Alexander Mezin <mezin.alexander@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TOUCHPADSERVICE_H
#define TOUCHPADSERVICE_H
#include <Plasma/Service>
class OrgKdeTouchpadInterface;
class TouchpadService : public Plasma::Service
{
Q_OBJECT
public:
TouchpadService(OrgKdeTouchpadInterface *daemon, const QString &destination, QObject *parent = nullptr);
~TouchpadService();
protected:
Plasma::ServiceJob *createJob(const QString &operation, QMap<QString, QVariant> &parameters) override;
private:
OrgKdeTouchpadInterface *m_daemon;
QString m_destination;
};
#endif // TOUCHPADSERVICE_H