3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-07 06:44:18 +00:00
Brooklyn/plasma/kcms/touchpad/kded/kded.h
2022-04-02 18:24:21 +05:00

77 lines
2.0 KiB
C++

/*
SPDX-FileCopyrightText: 2013 Alexander Mezin <mezin.alexander@gmail.com>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KDED_H
#define KDED_H
#include <QDBusPendingCallWatcher>
#include <QDBusServiceWatcher>
#include <QPointer>
#include <QTimer>
#include <QVariantList>
#include <KDEDModule>
#include <KNotification>
#include "kdedsettings.h"
#include "touchpadbackend.h"
class TouchpadDisabler : public KDEDModule
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.touchpad")
public:
TouchpadDisabler(QObject *, const QVariantList &);
Q_SIGNALS:
Q_SCRIPTABLE void enabledChanged(bool);
Q_SCRIPTABLE void mousePluggedInChanged(bool);
Q_SCRIPTABLE void workingTouchpadFoundChanged(bool);
public Q_SLOTS:
Q_SCRIPTABLE Q_NOREPLY void reloadSettings();
Q_SCRIPTABLE Q_NOREPLY void toggle();
Q_SCRIPTABLE Q_NOREPLY void disable();
Q_SCRIPTABLE Q_NOREPLY void enable();
Q_SCRIPTABLE bool isEnabled() const;
Q_SCRIPTABLE bool workingTouchpadFound() const;
Q_SCRIPTABLE bool isMousePluggedIn() const;
private Q_SLOTS:
void keyboardActivityStarted();
void keyboardActivityFinished();
void timerElapsed();
void mousePlugged();
void updateCurrentState();
void serviceRegistered(const QString &);
void handleReset();
void serviceNameFetchFinished(QDBusPendingCallWatcher *);
void onPrepareForSleep(bool sleep);
private:
void showNotification(const QString &name, const QString &text);
void lateInit();
void updateWorkingTouchpadFound();
void showOsd();
TouchpadBackend *m_backend;
TouchpadDisablerSettings m_settings;
QTimer m_keyboardActivityTimeout;
QDBusServiceWatcher m_dependencies;
TouchpadBackend::TouchpadOffState m_keyboardDisableState;
bool m_userRequestedState, m_touchpadEnabled;
bool m_workingTouchpadFound;
bool m_keyboardActivity, m_mouse;
QPointer<KNotification> m_notification;
bool m_preparingForSleep = false;
};
#endif // KDED_H