KWin
Loading...
Searching...
No Matches
windowvieweffectkcm.h
Go to the documentation of this file.
1/*
2 SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include <KCModule>
10
11#include "ui_windowvieweffectkcm.h"
12
13namespace KWin
14{
15
16class WindowViewEffectConfig : public KCModule
17{
18 Q_OBJECT
19
20public:
21 explicit WindowViewEffectConfig(QObject *parent, const KPluginMetaData &data);
22
23public Q_SLOTS:
24 void save() override;
25 void defaults() override;
26
27private:
28 ::Ui::WindowViewEffectConfig ui;
29};
30
31} // namespace KWin
WindowViewEffectConfig(QObject *parent, const KPluginMetaData &data)