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.
tdenetwork/kget/dlgPreferences.cpp

165 lines
4.6 KiB

/***************************************************************************
* dlgPreferences.cpp
* -------------------
*
* Revision : $Id$
* begin : Tue Jan 29 2002
* copyright : (C) 2002 by Patrick Charbonnier
* : Based On Caitoo v.0.7.3 (c) 1998 - 2000, Matej Koss
* email : pch@freeshell.org
*
****************************************************************************/
/***************************************************************************
*
* 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.
*
***************************************************************************/
#include <tqlayout.h>
#include <tdeapplication.h>
#include <tdelocale.h>
#include <tdeaction.h>
#include <kcombobox.h>
#include "dlgConnection.h"
#include "dlgAutomation.h"
#include "dlgLimits.h"
#include "dlgAdvanced.h"
#include "dlgDirectories.h"
#include "dlgSystem.h"
#include "settings.h"
#ifdef index
#undef index
#endif
#include "tdemainwidget.h"
#include "dlgPreferences.h"
DlgPreferences::DlgPreferences(TQWidget * parent):
KDialogBase(Tabbed, i18n("Configure"), Ok|Apply|Help|Cancel, Ok, parent, "DlgPreferences", true)
{
// add pages
TQFrame *page = addPage(i18n("Connection"));
TQVBoxLayout *topLayout = new TQVBoxLayout(page, 0, spacingHint());
conDlg = new DlgConnection(page);
topLayout->addWidget(conDlg);
page = addPage(i18n("Automation"));
topLayout = new TQVBoxLayout(page, 0, spacingHint());
autDlg = new DlgAutomation(page);
topLayout->addWidget(autDlg);
topLayout->addStretch();
page = addPage(i18n("Limits"));
topLayout = new TQVBoxLayout(page, 0, spacingHint());
limDlg = new DlgLimits(page);
topLayout->addWidget(limDlg);
topLayout->addStretch();
page = addPage(i18n("Advanced"));
topLayout = new TQVBoxLayout(page, 0, spacingHint());
advDlg = new DlgAdvanced(page);
topLayout->addWidget(advDlg);
topLayout->addStretch();
// page = addPage(i18n("Search"));
// topLayout = new TQVBoxLayout(page, 0, spacingHint());
// seaDlg = new DlgSearch(page);
// topLayout->addWidget(seaDlg);
page = addPage(i18n("Folders"));
topLayout = new TQVBoxLayout(page, 0, spacingHint());
dirDlg = new DlgDirectories(page);
topLayout->addWidget(dirDlg);
topLayout->addStretch();
page = addPage(i18n("System"));
topLayout = new TQVBoxLayout(page, 0, spacingHint());
sysDlg = new DlgSystem(page);
topLayout->addWidget(sysDlg);
topLayout->addStretch();
// type of connection influences autoDisconnect & timedDisconnect features
connect(conDlg, TQ_SIGNAL(typeChanged(int)), autDlg, TQ_SLOT(slotTypeChanged(int)));
loadAllData();
connect( conDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
connect( autDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
connect( limDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
connect( advDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
connect( dirDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
connect( sysDlg, TQ_SIGNAL( configChanged() ), this, TQ_SLOT( slotChanged() ) );
}
void DlgPreferences::slotChanged()
{
changed = true;
enableButton( Apply, true );
}
void DlgPreferences::applySettings()
{
conDlg->applyData();
autDlg->applyData();
limDlg->applyData();
advDlg->applyData();
// seaDlg->applyData();
dirDlg->applyData();
sysDlg->applyData();
ksettings.save();
changed = false;
enableButton( Apply, false );
}
void DlgPreferences::slotOk()
{
if ( changed )
applySettings();
accept();
}
void DlgPreferences::slotCancel()
{
if ( changed )
loadAllData();
reject();
}
void DlgPreferences::slotApply()
{
applySettings();
}
void DlgPreferences::loadAllData()
{
conDlg->setData();
autDlg->setData();
limDlg->setData();
advDlg->setData();
// seaDlg->setData();
dirDlg->setData();
sysDlg->setData();
changed = false;
enableButton( Apply, false );
}
#include "dlgPreferences.moc"