KWin
Loading...
Searching...
No Matches
invert_config.h
Go to the documentation of this file.
1/*
2 KWin - the KDE window manager
3 This file is part of the KDE project.
4
5 SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
6
7 SPDX-License-Identifier: GPL-2.0-or-later
8*/
9
10#pragma once
11
12#include <kcmodule.h>
13
14class KShortcutsEditor;
15
16namespace KWin
17{
18
19class InvertEffectConfig : public KCModule
20{
21 Q_OBJECT
22public:
23 explicit InvertEffectConfig(QObject *parent, const KPluginMetaData &data);
24
25public Q_SLOTS:
26 void save() override;
27 void load() override;
28 void defaults() override;
29
30private:
31 KShortcutsEditor *mShortcutEditor;
32};
33
34} // namespace
InvertEffectConfig(QObject *parent, const KPluginMetaData &data)