diff options
Diffstat (limited to 'kcontrol/konq/browser.cpp')
-rw-r--r-- | kcontrol/konq/browser.cpp | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/kcontrol/konq/browser.cpp b/kcontrol/konq/browser.cpp new file mode 100644 index 000000000..dc6c20b73 --- /dev/null +++ b/kcontrol/konq/browser.cpp @@ -0,0 +1,109 @@ +/* This file is part of the KDE project + Copyright (C) 2002 Waldo Bastian <bastian@kde.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License version 2 as published by the Free Software Foundation. + + This library 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 + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. +*/ + +#include <tqlayout.h> +#include <tqtabwidget.h> +#include <tqfile.h> + +#include <tdelocale.h> +#include <kdialog.h> +#include <fixx11h.h> +#include <tdecmoduleloader.h> + +#include "behaviour.h" +#include "fontopts.h" +#include "previews.h" +#include "browser.h" + +KBrowserOptions::KBrowserOptions(TDEConfig *config, TQString group, TQWidget *parent, const char *name) + : TDECModule( parent, "kcmkonq" ) +{ + TQVBoxLayout *layout = new TQVBoxLayout(this); + TQTabWidget *tab = new TQTabWidget(this); + layout->addWidget(tab); + + appearance = new KonqFontOptions(config, group, false, tab, name); + appearance->layout()->setMargin( KDialog::marginHint() ); + + behavior = new KBehaviourOptions(config, group, tab, name); + behavior->layout()->setMargin( KDialog::marginHint() ); + + previews = new KPreviewOptions(tab, name); + previews->layout()->setMargin( KDialog::marginHint() ); + + kuick = TDECModuleLoader::loadModule("kcmkuick", tab); + + tab->addTab(appearance, i18n("&Appearance")); + tab->addTab(behavior, i18n("&Behavior")); + tab->addTab(previews, i18n("&Previews && Meta-Data")); + if (kuick) + { + kuick->layout()->setMargin( KDialog::marginHint() ); + tab->addTab(kuick, i18n("&Quick Copy && Move")); + } + + connect(appearance, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + connect(behavior, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + connect(previews, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + if (kuick) + connect(kuick, TQT_SIGNAL(changed(bool)), this, TQT_SIGNAL(changed(bool))); + + connect(tab, TQT_SIGNAL(currentChanged(TQWidget *)), + this, TQT_SIGNAL(quickHelpChanged())); + m_tab = tab; +} + +void KBrowserOptions::load() +{ + appearance->load(); + behavior->load(); + previews->load(); + if (kuick) + kuick->load(); +} + +void KBrowserOptions::defaults() +{ + appearance->defaults(); + behavior->defaults(); + previews->defaults(); + if (kuick) + kuick->defaults(); +} + +void KBrowserOptions::save() +{ + appearance->save(); + behavior->save(); + previews->save(); + if (kuick) + kuick->save(); +} + +TQString KBrowserOptions::quickHelp() const +{ + TQWidget *w = m_tab->currentPage(); + if (w->inherits("TDECModule")) + { + TDECModule *m = static_cast<TDECModule *>(w); + return m->quickHelp(); + } + return TQString::null; +} + +#include "browser.moc" |