mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
127 lines
3.4 KiB
C++
127 lines
3.4 KiB
C++
/*
|
|
Copyright (C) 2002 Rik Hemsley (rikkus) <rik@kde.org>
|
|
Copyright (C) 2002 Benjamin Meyer <ben-devel@meyerhome.net>
|
|
Copyright (C) 2003 Richard Lärkäng <nouseforaname@home.se>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "kcmcddb.h"
|
|
#include "cddbconfigwidget.h"
|
|
|
|
#include "libkcddb/lookup.h"
|
|
#include "libkcddb/cache.h"
|
|
#include "libkcddb/submit.h"
|
|
|
|
#include <QCheckBox>
|
|
#include <qradiobutton.h>
|
|
#include <QVBoxLayout>
|
|
|
|
#include <kconfig.h>
|
|
#include <klocale.h>
|
|
#include <kglobal.h>
|
|
#include <kpluginfactory.h>
|
|
#include <kmessagebox.h>
|
|
#include <kconfigdialogmanager.h>
|
|
|
|
K_PLUGIN_FACTORY(KCDDBFactory, registerPlugin<CDDBModule>();)
|
|
K_EXPORT_PLUGIN(KCDDBFactory( "kcmcddb" ))
|
|
|
|
|
|
CDDBModule::CDDBModule(QWidget *parent, const QVariantList &)
|
|
: KCModule(KCDDBFactory::componentData(), parent)
|
|
{
|
|
KGlobal::locale()->insertCatalog( QLatin1String( "libkcddb" ));
|
|
setButtons(Default | Apply | Help);
|
|
|
|
widget_ = new CDDBConfigWidget(this);
|
|
|
|
KCDDB::Config* cfg = new KCDDB::Config();
|
|
cfg->readConfig();
|
|
|
|
addConfig(cfg, widget_);
|
|
|
|
QVBoxLayout * layout = new QVBoxLayout(this);
|
|
|
|
layout->addWidget(widget_);
|
|
|
|
setQuickHelp(i18n("CDDB is used to get information like artist, title and song-names in CD's"));
|
|
|
|
load();
|
|
}
|
|
|
|
void
|
|
CDDBModule::defaults()
|
|
{
|
|
KCModule::defaults();
|
|
|
|
KCDDB::Config config;
|
|
updateWidgetsFromConfig( config );
|
|
}
|
|
|
|
void
|
|
CDDBModule::checkSettings() const
|
|
{
|
|
KCDDB::Config config;
|
|
|
|
config.readConfig();
|
|
|
|
if (config.smtpHostname().isEmpty() || config.emailAddress().isEmpty()
|
|
|| !config.emailAddress().contains(QLatin1String( "@" )) ||
|
|
(!config.replyTo().isEmpty() && !config.replyTo().contains(QLatin1String( "@" ))))
|
|
|
|
{
|
|
if (config.freedbSubmitTransport() == KCDDB::Submit::SMTP)
|
|
{
|
|
KMessageBox::sorry(widget_, i18n("freedb has been set to use HTTP for submissions "
|
|
"because the email details you have entered are "
|
|
"incomplete. Please review your email settings "
|
|
"and try again."), i18n("Incorrect Email Settings"));
|
|
config.setFreedbSubmitTransport(KCDDB::Submit::HTTP);
|
|
|
|
config.writeConfig();
|
|
}
|
|
}
|
|
}
|
|
|
|
void
|
|
CDDBModule::updateWidgetsFromConfig(const KCDDB::Config & config)
|
|
{
|
|
bool smtpUserIsEmpty = config.smtpUsername().isEmpty();
|
|
widget_->needsAuthenticationBox->setChecked(!smtpUserIsEmpty);
|
|
widget_->kcfg_smtpUsername->setEnabled(!smtpUserIsEmpty);
|
|
}
|
|
|
|
void
|
|
CDDBModule::save()
|
|
{
|
|
KCModule::save();
|
|
|
|
checkSettings();
|
|
}
|
|
|
|
void
|
|
CDDBModule::load()
|
|
{
|
|
KCModule::load();
|
|
|
|
KCDDB::Config config;
|
|
config.readConfig();
|
|
updateWidgetsFromConfig(config);
|
|
}
|
|
|
|
// vim:tabstop=2:shiftwidth=2:expandtab:cinoptions=(s,U1,m1
|
|
|
|
#include "moc_kcmcddb.cpp"
|