/* Copyright (c) 2000 Matthias Elter Copyright (c) 2003 Daniel Molkentin Copyright (c) 2003 Matthias Kretz Copyright (c) 2004 Frans Englich This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 Steet, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "tdecmoduleloader.h" #include "tdecmoduleproxy.h" #include "kcmultiwidget.h" /* Button usage: User1 => Reset User2 => Close User3 => Admin */ class KCMultiWidget::KCMultiWidgetPrivate { public: KCMultiWidgetPrivate() : hasRootKCM( false ), currentModule( 0 ) {} bool hasRootKCM; TDECModuleProxy* currentModule; }; KCMultiWidget::KCMultiWidget(TQWidget *parent, const char *name, bool modal) : KDialogBase(IconList, i18n("Configure"), Help | Default |Cancel | Apply | Ok | User1 | User2 | User3, Ok, parent, name, modal, true, KStdGuiItem::reset(), KStdGuiItem::close(), KStdGuiItem::adminMode()) , dialogface( IconList ), d( new KCMultiWidgetPrivate ) { init(); } KCMultiWidget::KCMultiWidget( int dialogFace, TQWidget * parent, const char * name, bool modal ) : KDialogBase( dialogFace, "Caption", Help | Default | Cancel | Apply | Ok | User1 | User2 | User3, Ok, parent, name, modal, true, KStdGuiItem::reset(), KStdGuiItem::close(), KStdGuiItem::adminMode()) , dialogface( dialogFace ), d( new KCMultiWidgetPrivate ) { init(); } inline void KCMultiWidget::init() { connect( this, TQ_SIGNAL( finished()), TQ_SLOT( dialogClosed())); showButton( Ok, false ); showButton( Cancel, false ); showButton( User1, true ); // Reset button showButton( User2, true ); // Close button. showButton( User3, true); // Admin button. enableButton(Apply, false); enableButton(User1, false); connect(this, TQ_SIGNAL(aboutToShowPage(TQWidget *)), this, TQ_SLOT(slotAboutToShow(TQWidget *))); setInitialSize(TQSize(640,480)); moduleParentComponents.setAutoDelete( true ); } #include KCMultiWidget::~KCMultiWidget() { OrphanMap::Iterator end2 = m_orphanModules.end(); for( OrphanMap::Iterator it = m_orphanModules.begin(); it != end2; ++it ) delete ( *it ); } void KCMultiWidget::slotDefault() { int curPageIndex = activePageIndex(); ModuleList::Iterator end = m_modules.end(); for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex ) { ( *it ).kcm->defaults(); clientChanged( true ); return; } } // Reset button. void KCMultiWidget::slotUser1() { int curPageIndex = activePageIndex(); ModuleList::Iterator end = m_modules.end(); for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex ) { ( *it ).kcm->load(); clientChanged( false ); return; } } void KCMultiWidget::apply() { TQStringList updatedModules; ModuleList::Iterator end = m_modules.end(); for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) { TDECModuleProxy * m = ( *it ).kcm; if( m && m->changed() ) { m->save(); TQStringList * names = moduleParentComponents[ m ]; kdDebug() << k_funcinfo << *names << " saved and added to the list" << endl; for( TQStringList::ConstIterator it = names->begin(); it != names->end(); ++it ) if( updatedModules.find( *it ) == updatedModules.end() ) updatedModules.append( *it ); } } for( TQStringList::const_iterator it = updatedModules.begin(); it != updatedModules.end(); ++it ) { kdDebug() << k_funcinfo << *it << " " << ( *it ).latin1() << endl; emit configCommitted( ( *it ).latin1() ); } emit configCommitted(); } void KCMultiWidget::slotApply() { TQPushButton *button = actionButton(Apply); if (button) button->setFocus(); emit applyClicked(); apply(); } void KCMultiWidget::slotOk() { TQPushButton *button = actionButton(Ok); if (button) button->setFocus(); emit okClicked(); apply(); accept(); } void KCMultiWidget::slotHelp() { TQString docPath; int curPageIndex = activePageIndex(); ModuleList::Iterator end = m_modules.end(); for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) if( pageIndex( ( TQWidget * )( *it ).kcm->parent() ) == curPageIndex ) { docPath = ( *it ).kcm->moduleInfo().docPath(); break; } KURL url( KURL("help:/"), docPath ); if (url.protocol() == "help" || url.protocol() == "man" || url.protocol() == "info") { TDEProcess process; process << "khelpcenter" << url.url(); process.start(TDEProcess::DontCare); process.detach(); } else { new KRun(url); } } // Close button void KCMultiWidget::slotUser2() { emit close(); } void KCMultiWidget::clientChanged(bool state) { kdDebug( 710 ) << k_funcinfo << state << endl; ModuleList::Iterator end = m_modules.end(); for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) if( ( *it ).kcm->changed() ) { enableButton( Apply, true ); enableButton( User1, true); return; } enableButton( Apply, false ); enableButton( User1, false); } void KCMultiWidget::addModule(const TQString& path, bool withfallback) { TQString complete = path; if( !path.endsWith( ".desktop" )) complete += ".desktop"; KService::Ptr service = KService::serviceByStorageId( complete ); addModule( TDECModuleInfo( service ), TQStringList(), withfallback); } void KCMultiWidget::addModule(const TDECModuleInfo& moduleinfo, TQStringList parentmodulenames, bool withfallback) { if( !moduleinfo.service() ) return; if ( !kapp->authorizeControlModule( moduleinfo.service()->menuId() )) return; if( !TDECModuleLoader::testModule( moduleinfo )) return; TQFrame* page = 0; if (!moduleinfo.service()->noDisplay()) switch( dialogface ) { case TreeList: parentmodulenames += moduleinfo.moduleName(); page = addHBoxPage( parentmodulenames, moduleinfo.comment(), SmallIcon( moduleinfo.icon(), IconSize( TDEIcon::Small ) ) ); break; case Tabbed: case IconList: page = addHBoxPage( moduleinfo.moduleName(), moduleinfo.comment(), DesktopIcon( moduleinfo.icon(), TDEIcon::SizeMedium ) ); break; case Plain: page = plainPage(); ( new TQHBoxLayout( page ) )->setAutoAdd( true ); break; default: kdError( 710 ) << "unsupported dialog face for KCMultiWidget" << endl; break; } if(!page) { TDECModuleLoader::unloadModule(moduleinfo); return; } TDECModuleProxy * module; if( m_orphanModules.contains( moduleinfo.service() ) ) { // the TDECModule already exists - it was removed from the dialog in // removeAllModules module = m_orphanModules[ moduleinfo.service() ]; m_orphanModules.remove( moduleinfo.service() ); kdDebug( 710 ) << "Use TDECModule from the list of orphans for " << moduleinfo.moduleName() << ": " << module << endl; module->reparent( page, 0, TQPoint( 0, 0 ), true ); if( module->changed() ) clientChanged( true ); if( activePageIndex() == -1 ) { showPage( pageIndex( page ) ); } } else { module = new TDECModuleProxy( moduleinfo, withfallback, page ); TQStringList parentComponents = moduleinfo.service()->property( "X-TDE-ParentComponents" ).toStringList(); moduleParentComponents.insert( module, new TQStringList( parentComponents ) ); connect(module, TQ_SIGNAL(changed(bool)), this, TQ_SLOT(clientChanged(bool))); } CreatedModule cm; cm.kcm = module; cm.service = moduleinfo.service(); cm.adminmode = false; cm.buttons = module->buttons(); if ( moduleinfo.needsRootPrivileges() && !KUser().isSuperUser() ) {/* If we're embedded, it's true */ d->hasRootKCM = true; cm.adminmode = true; m_modules.append( cm ); if( dialogface==Plain ) { slotAboutToShow( page ); // Won't be called otherwise, necessary for adminMode button } } else { m_modules.append( cm ); } if( m_modules.count() == 1 ) { slotAboutToShow( page ); } } TDECModuleProxy * KCMultiWidget::currentModule() { if(d) { return d->currentModule; } return NULL; } void KCMultiWidget::applyOrRevert(TDECModuleProxy * module){ if( !module || !module->changed() ) return; int res = KMessageBox::warningYesNo(this, i18n("There are unsaved changes in the active module.\n" "Do you want to apply the changes or discard them?"), i18n("Unsaved Changes"), KStdGuiItem::apply(), KStdGuiItem::discard()); if (res == KMessageBox::Yes) { slotApply(); } else { module->load(); clientChanged( false ); } } void KCMultiWidget::slotAboutToShow(TQWidget *page) { TQObject * obj = page->child( 0, "TDECModuleProxy" ); if( ! obj ) return; TDECModuleProxy *module = ( TDECModuleProxy* )obj->tqt_cast( "TDECModuleProxy" ); if( ! module ) return; if( d && d->currentModule ) applyOrRevert( d->currentModule ); d->currentModule = module; emit ( aboutToShow( d->currentModule ) ); ModuleList::Iterator end = m_modules.end(); int buttons = 0; for( ModuleList::Iterator it = m_modules.begin(); it != end; ++it ) { if( ( *it ).kcm==d->currentModule) { showButton(User3, ( *it ).adminmode); buttons = ( *it ).buttons; } } showButton(Apply, buttons & TDECModule::Apply); showButton(User1, buttons & TDECModule::Apply); // Reset button. // Close button. No Apply button implies a Close button. showButton(User2, (buttons & TDECModule::Apply)==0); enableButton( KDialogBase::Help, buttons & TDECModule::Help ); enableButton( KDialogBase::Default, buttons & TDECModule::Default ); disconnect( this, TQ_SIGNAL(user3Clicked()), 0, 0 ); if (d->currentModule->moduleInfo().needsRootPrivileges() && !d->currentModule->rootMode() ) { /* Enable the Admin Mode button */ enableButton( User3, true ); connect( this, TQ_SIGNAL(user3Clicked()), d->currentModule, TQ_SLOT( runAsRoot() )); connect( this, TQ_SIGNAL(user3Clicked()), TQ_SLOT( disableRModeButton() )); } else { enableButton( User3, false ); } } void KCMultiWidget::rootExit() { enableButton( User3, true); } void KCMultiWidget::disableRModeButton() { enableButton( User3, false ); connect ( d->currentModule, TQ_SIGNAL( childClosed() ), TQ_SLOT( rootExit() ) ); } void KCMultiWidget::slotCancel() { dialogClosed(); KDialogBase::slotCancel(); } void KCMultiWidget::dialogClosed() { if(d) { applyOrRevert(d->currentModule); } } #include "kcmultiwidget.moc"