You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.9 KiB
82 lines
1.9 KiB
15 years ago
|
// File khttpoptdlg.cpp by Jacek Konieczny <jajcus@zeus.posl.gliwice.pl>
|
||
|
// Port to KControl by David Faure <faure@kde.org>
|
||
|
|
||
|
#include <qlayout.h> //CT
|
||
|
|
||
|
#include <klocale.h>
|
||
|
#include <kglobal.h>
|
||
|
#include "khttpoptdlg.h"
|
||
|
|
||
|
|
||
|
KHTTPOptions::KHTTPOptions(KConfig *config, QString group, QWidget *parent, const char *name)
|
||
|
: KCModule( parent, name ), m_pConfig(config), m_groupname(group)
|
||
|
{
|
||
|
QVBoxLayout *lay = new QVBoxLayout(this, 10, 5);
|
||
|
|
||
|
lay->addWidget( new QLabel(i18n("Accept languages:"), this) );
|
||
|
|
||
|
le_languages = new QLineEdit(this);
|
||
|
lay->addWidget( le_languages );
|
||
|
connect(le_languages, SIGNAL(textChanged(const QString&)),
|
||
|
this, SLOT(slotChanged()));
|
||
|
|
||
|
lay->addSpacing(10);
|
||
|
lay->addWidget( new QLabel(i18n("Accept character sets:"), this) );
|
||
|
|
||
|
le_charsets = new QLineEdit(this);
|
||
|
lay->addWidget( le_charsets );
|
||
|
connect(le_charsets, SIGNAL(textChanged(const QString&)),
|
||
|
this, SLOT(slotChanged()));
|
||
|
|
||
|
lay->addStretch(10);
|
||
|
|
||
|
// defaultCharsets = QString("utf-8 ")+klocale->charset()+" iso-8859-1";
|
||
|
defaultCharsets = QString("utf-8 ")+" iso-8859-1"; // TODO
|
||
|
|
||
|
// finaly read the options
|
||
|
load();
|
||
|
}
|
||
|
|
||
|
void KHTTPOptions::load()
|
||
|
{
|
||
|
load( false );
|
||
|
}
|
||
|
|
||
|
void KHTTPOptions::load( bool useDefaults )
|
||
|
{
|
||
|
QString tmp;
|
||
|
|
||
|
m_pConfig->setReadDefaults( useDefaults );
|
||
|
|
||
|
m_pConfig->setGroup( "Browser Settings/HTTP" );
|
||
|
tmp = m_pConfig->readEntry( "AcceptLanguages",KGlobal::locale()->languageList().join(","));
|
||
|
le_languages->setText( tmp );
|
||
|
tmp = m_pConfig->readEntry( "AcceptCharsets",defaultCharsets);
|
||
|
le_charsets->setText( tmp );
|
||
|
|
||
|
emit changed( useDefaults );
|
||
|
|
||
|
}
|
||
|
|
||
|
void KHTTPOptions::save()
|
||
|
{
|
||
|
m_pConfig->setGroup( "Browser Settings/HTTP" );
|
||
|
m_pConfig->writeEntry( "AcceptLanguages", le_languages->text());
|
||
|
m_pConfig->writeEntry( "AcceptCharsets", le_charsets->text());
|
||
|
m_pConfig->sync();
|
||
|
}
|
||
|
|
||
|
void KHTTPOptions::defaults()
|
||
|
{
|
||
|
load( true );
|
||
|
}
|
||
|
|
||
|
|
||
|
void KHTTPOptions::slotChanged()
|
||
|
{
|
||
|
emit changed(true);
|
||
|
}
|
||
|
|
||
|
|
||
|
#include "khttpoptdlg.moc"
|