You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
697 B
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2007 Rivo Laks <rivolaks@hot.ee>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_INVERT_CONFIG_H
#define KWIN_INVERT_CONFIG_H
#include <kcmodule.h>
class KShortcutsEditor;
namespace KWin
{
class InvertEffectConfig : public KCModule
{
Q_OBJECT
public:
explicit InvertEffectConfig(QWidget* parent = nullptr, const QVariantList& args = QVariantList());
~InvertEffectConfig() override;
public Q_SLOTS:
void save() override;
void load() override;
void defaults() override;
private:
KShortcutsEditor* mShortcutEditor;
};
} // namespace
#endif