/* * main.cpp * * Copyright (c) 1999 Matthias Hoelzer-Kluepfel * Copyright (c) 2000 Daniel Molkentin * * Requires the Qt widget libraries, available at no cost at * http://www.troll.no/ * * 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 #include #include #include #include #include "jsopts.h" #include "javaopts.h" #include "pluginopts.h" #include "appearance.h" #include "htmlopts.h" #include "filteropts.h" #include "main.h" #include #include "main.moc" extern "C" { KDE_EXPORT KCModule *create_khtml_behavior(TQWidget *parent, const char *name) { KConfig *c = new KConfig( "konquerorrc", false, false ); return new KMiscHTMLOptions(c, "HTML Settings", parent, name); } KDE_EXPORT KCModule *create_khtml_fonts(TQWidget *parent, const char *name) { KConfig *c = new KConfig( "konquerorrc", false, false ); return new KAppearanceOptions(c, "HTML Settings", parent, name); } KDE_EXPORT KCModule *create_khtml_java_js(TQWidget *parent, const char* /*name*/) { KConfig *c = new KConfig( "konquerorrc", false, false ); return new KJSParts(c, parent, "kcmkonqhtml"); } KDE_EXPORT KCModule *create_khtml_plugins(TQWidget *parent, const char *name) { KConfig *c = new KConfig( "konquerorrc", false, false ); return new KPluginOptions(c, "Java/JavaScript Settings", parent, name); } KDE_EXPORT KCModule *create_khtml_filter(TQWidget *parent, const char *name ) { KConfig *c = new KConfig( "khtmlrc", false, false ); return new KCMFilter(c, "Filter Settings", parent, name); } } KJSParts::KJSParts(KConfig *config, TQWidget *parent, const char *name) : KCModule(parent, name), mConfig(config) { TDEAboutData *about = new TDEAboutData(I18N_NOOP("kcmkonqhtml"), I18N_NOOP("Konqueror Browsing Control Module"), 0, 0, TDEAboutData::License_GPL, I18N_NOOP("(c) 1999 - 2001 The Konqueror Developers")); about->addAuthor("Waldo Bastian",0,"bastian@kde.org"); about->addAuthor("David Faure",0,"faure@kde.org"); about->addAuthor("Matthias Kalle Dalheimer",0,"kalle@kde.org"); about->addAuthor("Lars Knoll",0,"knoll@kde.org"); about->addAuthor("Dirk Mueller",0,"mueller@kde.org"); about->addAuthor("Daniel Molkentin",0,"molkentin@kde.org"); about->addAuthor("Wynn Wilkes",0,"wynnw@caldera.com"); about->addCredit("Leo Savernik",I18N_NOOP("JavaScript access controls\n" "Per-domain policies extensions"), "l.savernik@aon.at"); setAboutData( about ); TQVBoxLayout *layout = new TQVBoxLayout(this); tab = new TQTabWidget(this); layout->addWidget(tab); // ### the groupname is duplicated in KJSParts::save java = new KJavaOptions( config, "Java/JavaScript Settings", this, name ); tab->addTab( java, i18n( "&Java" ) ); connect( java, TQT_SIGNAL( changed( bool ) ), TQT_SIGNAL( changed( bool ) ) ); javascript = new KJavaScriptOptions( config, "Java/JavaScript Settings", this, name ); tab->addTab( javascript, i18n( "Java&Script" ) ); connect( javascript, TQT_SIGNAL( changed( bool ) ), TQT_SIGNAL( changed( bool ) ) ); } KJSParts::~KJSParts() { delete mConfig; } void KJSParts::load() { javascript->load(); java->load(); } void KJSParts::save() { javascript->save(); java->save(); // delete old keys after they have been migrated if (javascript->_removeJavaScriptDomainAdvice || java->_removeJavaScriptDomainAdvice) { mConfig->setGroup("Java/JavaScript Settings"); mConfig->deleteEntry("JavaScriptDomainAdvice"); javascript->_removeJavaScriptDomainAdvice = false; java->_removeJavaScriptDomainAdvice = false; } mConfig->sync(); // Send signal to konqueror // Warning. In case something is added/changed here, keep kfmclient in sync TQByteArray data; if ( !kapp->dcopClient()->isAttached() ) kapp->dcopClient()->attach(); kapp->dcopClient()->send( "konqueror*", "KonquerorIface", "reparseConfiguration()", data ); } void KJSParts::defaults() { javascript->defaults(); java->defaults(); } TQString KJSParts::quickHelp() const { return i18n("

JavaScript

On this page, you can configure " "whether JavaScript programs embedded in web pages should " "be allowed to be executed by Konqueror." "

Java

On this page, you can configure " "whether Java applets embedded in web pages should " "be allowed to be executed by Konqueror." "

Note: Active content is always a " "security risk, which is why Konqueror allows you to specify very " "fine-grained from which hosts you want to execute Java and/or " "JavaScript programs." ); }