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