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.
tdepim/kmailcvt/kmailcvt.cpp

101 lines
3.3 KiB

/***************************************************************************
kmailcvt.cpp - description
-------------------
copyright : (C) 2003 by Laurence Anderson
email : l.d.anderson@warwick.ac.uk
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "kmailcvt.h"
#include <kaboutapplication.h>
#include <tqpushbutton.h>
#include <dcopclient.h>
#include <dcopref.h>
#include <kdebug.h>
#include "filters.hxx"
KMailCVT::KMailCVT(TQWidget *parent, const char *name)
: KWizard(parent, name, true) {
setCaption( i18n( "KMailCVT Import Tool" ) );
selfilterpage = new KSelFilterPage(this);
addPage( selfilterpage, i18n( "Step 1: Select Filter" ) );
importpage = new KImportPage(this);
addPage( importpage, i18n( "Step 2: Importing..." ) );
}
KMailCVT::~KMailCVT() {
endImport();
}
void KMailCVT::endImport() {
if ( !kapp->dcopClient()->isApplicationRegistered( "kmail" ) )
TDEApplication::startServiceByDesktopName( "kmail", TQString() ); // Will wait until kmail is started
DCOPReply reply = DCOPRef( "kmail", "KMailIface" ).call( "dcopAddMessage", TQString(), TQString(), TQString());
if ( !reply.isValid() )
return;
reply = DCOPRef( "kmail", "KMailIface" ).call( "dcopResetAddMessage" );
if ( !reply.isValid() )
return;
}
void KMailCVT::next() {
if( currentPage() == selfilterpage ){
// Save selected filter
Filter *selectedFilter = selfilterpage->getSelectedFilter();
// without filter don't go next
if ( !selectedFilter )
return;
if ( !selectedFilter->needsSecondPage() ) {
FilterInfo *info = new FilterInfo( importpage, this, selfilterpage->removeDupMsg_checked() );
selectedFilter->import( info );
accept();
delete info;
}
else {
// Goto next page
KWizard::next();
// Disable back & finish
setBackEnabled( currentPage(), false );
setFinishEnabled( currentPage(), false );
// Start import
FilterInfo *info = new FilterInfo(importpage, this, selfilterpage->removeDupMsg_checked());
info->setStatusMsg(i18n("Import in progress"));
info->clear(); // Clear info from last time
selectedFilter->import(info);
info->setStatusMsg(i18n("Import finished"));
// Cleanup
delete info;
// Enable finish & back buttons
setFinishEnabled( currentPage(), true );
setBackEnabled( currentPage(), true );
}
} else KWizard::next();
}
void KMailCVT::reject() {
if ( currentPage() == importpage && ! finishButton()->isEnabled() ) FilterInfo::terminateASAP(); // ie. import in progress
else KWizard::reject();
}
void KMailCVT::help()
{
KAboutApplication a( this );
a.exec();
}
#include "kmailcvt.moc"