Make it compiles when deprecated method are disabled. Add more find package
[kdepim.git] / akregator / configuration / akregator_config_advanced.cpp
blobc4d465a024f06f24d015563f4f7add75bcbd628a
1 /*
2 This file is part of Akregator.
3 Copyright (c) 2008 Frank Osterfeld <osterfeld@kde.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 As a special exception, permission is given to link this program
20 with any edition of Qt, and distribute the resulting executable,
21 without including the source code for Qt in the source distribution.
24 #include "akregator_config_advanced.h"
25 #include "akregatorconfig.h"
27 #include "settings_advanced.h"
29 #include <KAboutData>
30 #include <KPluginFactory>
31 #include <KLocalizedString>
33 #include <QVBoxLayout>
35 using namespace Akregator;
37 K_PLUGIN_FACTORY_WITH_JSON(KCMAkregatorAdvancedConfigFactory, "akregator_config_advanced.json", registerPlugin<KCMAkregatorAdvancedConfig>();)
39 KCMAkregatorAdvancedConfig::KCMAkregatorAdvancedConfig(QWidget *parent, const QVariantList &args)
40 : KCModule(parent, args), m_widget(new SettingsAdvanced)
42 QVBoxLayout *layout = new QVBoxLayout(this);
43 layout->addWidget(m_widget);
44 KAboutData *about = new KAboutData(QStringLiteral("kcmakradvancedconfig"),
45 i18n("Advanced Feed Reader Settings"),
46 QString(), QString(), KAboutLicense::GPL,
47 i18n("(c), 2004 - 2008 Frank Osterfeld"));
49 about->addAuthor(i18n("Frank Osterfeld"), QString(), QStringLiteral("osterfeld@kde.org"));
51 setAboutData(about);
52 addConfig(Settings::self(), m_widget);
55 void KCMAkregatorAdvancedConfig::load()
57 KCModule::load();
58 m_widget->selectFactory(Settings::archiveBackend());
61 void KCMAkregatorAdvancedConfig::save()
63 Settings::setArchiveBackend(m_widget->selectedFactory());
64 KCModule::save();
67 #include "akregator_config_advanced.moc"