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.
202 lines
4.7 KiB
202 lines
4.7 KiB
/*
|
|
* Copyright (C) 2004, Mart Kelder (mart.kde@hccnet.nl)
|
|
*
|
|
* 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 "dcopdrop.h"
|
|
|
|
#include "dcopdropif.h"
|
|
#include "intid.h"
|
|
#include "mailid.h"
|
|
#include "mailsubject.h"
|
|
|
|
#include <tdeconfigbase.h>
|
|
#include <kdebug.h>
|
|
|
|
#include <tqdatetime.h>
|
|
#include <tqmap.h>
|
|
#include <tqstring.h>
|
|
#include <tqtimer.h>
|
|
|
|
DCOPDrop::DCOPDrop()
|
|
: KMailDrop(),
|
|
_isRunning( false ),
|
|
_msgList( new TQMap< int, KornMailSubject* > ),
|
|
_name( new TQString( "" ) ),
|
|
_counter( 1 ),
|
|
_interface( 0 )
|
|
{
|
|
}
|
|
|
|
DCOPDrop::~DCOPDrop()
|
|
{
|
|
eraseList();
|
|
delete _interface;
|
|
delete _msgList;
|
|
delete _name;
|
|
}
|
|
|
|
void DCOPDrop::recheck()
|
|
{
|
|
emit changed( _msgList->count(), this );
|
|
emit rechecked();
|
|
}
|
|
|
|
bool DCOPDrop::startMonitor()
|
|
{
|
|
_isRunning = true;
|
|
return true;
|
|
}
|
|
|
|
bool DCOPDrop::stopMonitor()
|
|
{
|
|
_isRunning = false;
|
|
return true;
|
|
}
|
|
|
|
bool DCOPDrop::readConfigGroup( const TDEConfigGroup &cfg )
|
|
{
|
|
return KMailDrop::readConfigGroup( cfg );
|
|
}
|
|
|
|
bool DCOPDrop::readConfigGroup( const TQMap< TQString, TQString > &map, const Protocol * )
|
|
{
|
|
if( !map.contains( "dcopname" ) )
|
|
//The mapping MUST contain dcopname.
|
|
kdDebug() << "mapping is niet compleet" << endl;
|
|
|
|
this->setDCOPName( *map.find( "dcopname" ) );
|
|
|
|
return true;
|
|
}
|
|
|
|
bool DCOPDrop::writeConfigGroup( TDEConfigBase& cfg ) const
|
|
{
|
|
KMailDrop::writeConfigGroup( cfg );
|
|
|
|
KMailDrop::writeConfigGroup( cfg );
|
|
|
|
cfg.writeEntry( "dcopname", *_name );
|
|
return true;
|
|
}
|
|
|
|
TQString DCOPDrop::type() const
|
|
{
|
|
return TQString( "dcop" );
|
|
}
|
|
|
|
TQValueVector< KornMailSubject >* DCOPDrop::doReadSubjects( bool * )
|
|
{
|
|
emit readSubjectsTotalSteps( 1 );
|
|
|
|
/*
|
|
* This way, the function is really asynchrone.
|
|
* So, the return value arraves before any data arrives.
|
|
*/
|
|
TQTimer::singleShot( 1, this, TQT_SLOT( doReadSubjectsASync( void ) ) );
|
|
|
|
/*
|
|
* A empty TQValueVector is made here.
|
|
* After that, the size is expanded to the expected number of subjects.
|
|
* This way, reallocation of memmory is minimized, and thus more efficient.
|
|
*/
|
|
TQValueVector<KornMailSubject> *vector = new TQValueVector<KornMailSubject>( );
|
|
vector->reserve( _msgList->count() );
|
|
return vector;
|
|
}
|
|
|
|
bool DCOPDrop::deleteMails( TQPtrList<const KornMailId> * ids, bool * )
|
|
{
|
|
emit deleteMailsTotalSteps( 1 );
|
|
|
|
for( const KornMailId *it = ids->first(); it; it = ids->next() )
|
|
{
|
|
const KornIntId* id = dynamic_cast< const KornIntId* >( it );
|
|
if( _msgList->contains( id->getId() ) )
|
|
_msgList->erase( id->getId() );
|
|
}
|
|
|
|
emit deleteMailsProgress( 1 );
|
|
emit deleteMailsReady( true );
|
|
|
|
return true;
|
|
}
|
|
|
|
void DCOPDrop::eraseList( void )
|
|
{
|
|
TQMap<int, KornMailSubject* >::iterator it;
|
|
for( it = _msgList->begin(); it != _msgList->end(); ++it )
|
|
delete it.data();
|
|
_msgList->clear();
|
|
}
|
|
|
|
void DCOPDrop::doReadSubjectsASync( void )
|
|
{
|
|
TQMap<int, KornMailSubject* >::iterator it;
|
|
for( it = _msgList->begin(); it != _msgList->end(); ++it )
|
|
emit readSubject( new KornMailSubject( *it.data() ) );
|
|
emit readSubjectsProgress( 1 );
|
|
emit readSubjectsReady( true );
|
|
}
|
|
|
|
int DCOPDrop::addMessage( const TQString& subject, const TQString& message )
|
|
{
|
|
KornIntId *id = new KornIntId( _counter );
|
|
KornMailSubject *mailsubject = new KornMailSubject( id, this );
|
|
++_counter;
|
|
|
|
mailsubject->setSubject( subject );
|
|
mailsubject->setSender( TQString( "DCOP: %1" ).arg( *_name ) );
|
|
mailsubject->setHeader( message, true );
|
|
mailsubject->setSize( message.length() );
|
|
mailsubject->setDate( TQDateTime::currentDateTime().toTime_t() );
|
|
|
|
_msgList->insert( id->getId(), mailsubject );
|
|
|
|
emit changed( _msgList->count(), this );
|
|
|
|
return _counter - 1;
|
|
}
|
|
|
|
bool DCOPDrop::removeMessage( int id )
|
|
{
|
|
if( ! _msgList->contains( id ) )
|
|
return false;
|
|
|
|
delete (*_msgList)[ id ];
|
|
_msgList->erase( id );
|
|
|
|
emit changed( _msgList->count(), this );
|
|
|
|
return true;
|
|
}
|
|
|
|
TQString DCOPDrop::DCOPName() const
|
|
{
|
|
return *_name;
|
|
}
|
|
|
|
void DCOPDrop::setDCOPName( const TQString& name)
|
|
{
|
|
*_name = name;
|
|
if( _interface )
|
|
_interface->changeName( name );
|
|
else
|
|
_interface = new DCOPDropInterface( this, name.utf8() );
|
|
}
|
|
|
|
#include "dcopdrop.moc"
|