File indexing completed on 2024-04-28 05:10:44

0001 /*
0002     This file is part of Akregator.
0003     SPDX-FileCopyrightText: 2008 Frank Osterfeld <osterfeld@kde.org>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
0006 */
0007 
0008 #pragma once
0009 #include <KCModule>
0010 
0011 #include <QVariant>
0012 
0013 namespace Akregator
0014 {
0015 class SettingsAdvanced;
0016 }
0017 
0018 class KCMAkregatorAdvancedConfig : public KCModule
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     explicit KCMAkregatorAdvancedConfig(QObject *parent, const KPluginMetaData &data);
0024 
0025     void load() override;
0026     void save() override;
0027 
0028 private:
0029     Akregator::SettingsAdvanced *const m_widget;
0030 };