KWin
Loading...
Searching...
No Matches
showpaint_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: 2018 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
6
7 SPDX-License-Identifier: GPL-2.0-or-later
8*/
9
10#pragma once
11
12#include <KCModule>
13
14#include "ui_showpaint_config.h"
15
16namespace KWin
17{
18
19class ShowPaintEffectConfig : public KCModule
20{
21 Q_OBJECT
22
23public:
24 explicit ShowPaintEffectConfig(QObject *parent, const KPluginMetaData &data);
25
26public Q_SLOTS:
27 void save() override;
28 void defaults() override;
29
30private:
31 Ui::ShowPaintEffectConfig m_ui;
32};
33
34} // namespace KWin
ShowPaintEffectConfig(QObject *parent, const KPluginMetaData &data)