3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 07:12:18 +00:00
Brooklyn/plasma/kcms/keyboard/keyboard_daemon.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

62 lines
1.5 KiB
C++

/*
SPDX-FileCopyrightText: 2010 Andriy Rysin <rysin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KEYBOARD_DAEMON_H_
#define KEYBOARD_DAEMON_H_
#include <KDEDModule>
#include <QStringList>
#include "bindings.h"
#include "keyboard_dbus.h"
#include "layout_memory.h"
#include "layoutnames.h"
class XInputEventNotifier;
class KeyboardConfig;
struct Rules;
class Q_DECL_EXPORT KeyboardDaemon : public KDEDModule
{
Q_OBJECT
Q_CLASSINFO("D-Bus Interface", "org.kde.KeyboardLayouts")
KeyboardConfig *keyboardConfig;
KeyboardLayoutActionCollection *actionCollection;
XInputEventNotifier *xEventNotifier;
LayoutMemory layoutMemory;
const Rules *rules;
void registerListeners();
void registerShortcut();
void unregisterListeners();
void unregisterShortcut();
private Q_SLOTS:
void configureKeyboard();
void configureMouse();
void layoutChangedSlot();
void layoutMapChanged();
bool setLayout(QAction *action);
public Q_SLOTS:
Q_SCRIPTABLE void switchToNextLayout();
Q_SCRIPTABLE void switchToPreviousLayout();
Q_SCRIPTABLE bool setLayout(uint index);
Q_SCRIPTABLE uint getLayout() const;
Q_SCRIPTABLE QVector<LayoutNames> getLayoutsList() const;
Q_SIGNALS:
Q_SCRIPTABLE void layoutChanged(uint index);
Q_SCRIPTABLE void layoutListChanged();
public:
KeyboardDaemon(QObject *parent, const QList<QVariant> &);
~KeyboardDaemon() override;
};
#endif /* KEYBOARD_DAEMON_H_ */