KWin
Loading...
Searching...
No Matches
wobblywindows_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: 2008 Cédric Borgese <cedric.borgese@gmail.com>
6 SPDX-FileCopyrightText: 2008 Lucas Murray <lmurray@undefinedfire.com>
7
8 SPDX-License-Identifier: GPL-2.0-or-later
9*/
10
11#pragma once
12
13#include <kcmodule.h>
14
15#include "ui_wobblywindows_config.h"
16
17namespace KWin
18{
19
20class WobblyWindowsEffectConfig : public KCModule
21{
22 Q_OBJECT
23public:
24 explicit WobblyWindowsEffectConfig(QObject *parent, const KPluginMetaData &data);
26
27public Q_SLOTS:
28 void save() override;
29
30private Q_SLOTS:
31 void wobblinessChanged();
32
33private:
34 ::Ui::WobblyWindowsEffectConfigForm m_ui;
35};
36
37} // namespace
WobblyWindowsEffectConfig(QObject *parent, const KPluginMetaData &data)