KWin
Loading...
Searching...
No Matches
mouseclick_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: 2012 Filip Wieladek <wattos@gmail.com>
6
7 SPDX-License-Identifier: GPL-2.0-or-later
8*/
9
10#pragma once
11
12#include <kcmodule.h>
13
14#include "ui_mouseclick_config.h"
15
16class KActionCollection;
17
18namespace KWin
19{
20
21class MouseClickEffectConfig : public KCModule
22{
23 Q_OBJECT
24public:
25 explicit MouseClickEffectConfig(QObject *parent, const KPluginMetaData &data);
26
27 void save() override;
28
29private:
30 Ui::MouseClickEffectConfigForm m_ui;
31 KActionCollection *m_actionCollection;
32};
33
34} // namespace
MouseClickEffectConfig(QObject *parent, const KPluginMetaData &data)