From c807547c32dd25e9d181d396590af9915b7a1166 Mon Sep 17 00:00:00 2001 From: ulf69 Date: Thu, 05 Aug 2004 22:50:37 +0000 Subject: enabled the sending of emails to selected contacts, and mailing of vCards --- (limited to 'microkde/kutils') diff --git a/microkde/kutils/kcmultidialog.cpp b/microkde/kutils/kcmultidialog.cpp index 4136622..13be2ce 100644 --- a/microkde/kutils/kcmultidialog.cpp +++ b/microkde/kutils/kcmultidialog.cpp @@ -43,17 +43,20 @@ KCMultiDialog::KCMultiDialog(const QString& baseGroup, QWidget *parent, const ch { enableButton(Apply, false); //connect(this, SIGNAL(aboutToShowPage(QWidget *)), this, SLOT(slotAboutToShow(QWidget *))); + + connect( this, SIGNAL( defaultClicked() ), SLOT( slotDefault() ) ); + _baseGroup = baseGroup; mMainWidget = new KJanusWidget( this, "JanusWidget", KJanusWidget::Tabbed ); setMainWidget(mMainWidget ); #ifdef DESKTOP_VERSION resize(640,480); #else - resize(640,480); + resize(640,480); setMaximumSize( KMIN(KGlobal::getDesktopWidth()-5, 640), KMIN(KGlobal::getDesktopHeight()-20, 480)); //showMaximized(); #endif - + } KCMultiDialog::~KCMultiDialog() @@ -65,7 +68,7 @@ void KCMultiDialog::slotDefault() { int curPageIndex = mMainWidget->activePageIndex(); - + QPtrListIterator it(modules); for (; it.current(); ++it) { @@ -76,7 +79,7 @@ void KCMultiDialog::slotDefault() return; } } - + } void KCMultiDialog::slotApply() @@ -89,14 +92,14 @@ qDebug("KCMultiDialog::slotApply clicked"); clientChanged(false); emit applyClicked(); - + } void KCMultiDialog::slotOk() { qDebug("KCMultiDialog::slotOk clicked"); - + QPtrListIterator it(modules); for (; it.current(); ++it) (*it)->save(); @@ -119,7 +122,7 @@ void KCMultiDialog::slotHelp() } else { new KRun(url); } -*/ +*/ } void KCMultiDialog::clientChanged(bool state) @@ -127,7 +130,7 @@ void KCMultiDialog::clientChanged(bool state) enableButton(Apply, state); } -/*US +/*US void KCMultiDialog::addModule(const QString& path, bool withfallback) { kdDebug(1208) << "KCMultiDialog::addModule " << path << endl; @@ -157,7 +160,7 @@ void KCMultiDialog::addModule(KCModule* module ) //, const QString& modulename, modules.append(module); connect(module, SIGNAL(changed(bool)), this, SLOT(clientChanged(bool))); - + } @@ -197,5 +200,5 @@ void KCMultiDialog::slotAboutToShow(QWidget *page) QApplication::restoreOverrideCursor(); */ -qDebug("KCMultiDialog::slotAboutToShow not implemented"); +qDebug("KCMultiDialog::slotAboutToShow not implemented"); } -- cgit v0.9.0.2