|
|
|
@ -28,10 +28,10 @@
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "kio.h"
|
|
|
|
|
#include "kio_count.h"
|
|
|
|
|
#include "kio_subjects.h"
|
|
|
|
|
#include "kio_read.h"
|
|
|
|
|
#include "kio_delete.h"
|
|
|
|
|
#include "tdeio_count.h"
|
|
|
|
|
#include "tdeio_subjects.h"
|
|
|
|
|
#include "tdeio_read.h"
|
|
|
|
|
#include "tdeio_delete.h"
|
|
|
|
|
#include "protocol.h"
|
|
|
|
|
#include "protocols.h"
|
|
|
|
|
#include "stringid.h"
|
|
|
|
@ -57,7 +57,7 @@
|
|
|
|
|
#include<stdlib.h>
|
|
|
|
|
|
|
|
|
|
//Headers of protocols
|
|
|
|
|
#include"kio_proto.h"
|
|
|
|
|
#include"tdeio_proto.h"
|
|
|
|
|
//#include"pop3_proto.h"
|
|
|
|
|
//#include"pop3s_proto.h"
|
|
|
|
|
//#include"imap_proto.h"
|
|
|
|
@ -98,16 +98,16 @@ KKioDrop::KKioDrop()
|
|
|
|
|
|
|
|
|
|
//Creating children and connect them to the outside world; this class passes the messages for them...
|
|
|
|
|
//This class handles all the counting.
|
|
|
|
|
_count = new KIO_Count( this, "kio_count" );
|
|
|
|
|
_count = new KIO_Count( this, "tdeio_count" );
|
|
|
|
|
|
|
|
|
|
//This class is responsible for providing the available subjects
|
|
|
|
|
_subjects = new KIO_Subjects( this, "kio_subjects" );
|
|
|
|
|
_subjects = new KIO_Subjects( this, "tdeio_subjects" );
|
|
|
|
|
|
|
|
|
|
//This class is used when a full message has to be read.
|
|
|
|
|
_read = new KIO_Read( this, "kio_read" );
|
|
|
|
|
_read = new KIO_Read( this, "tdeio_read" );
|
|
|
|
|
|
|
|
|
|
//This class can delete mails.
|
|
|
|
|
_delete = new KIO_Delete( this, "kio_delete" );
|
|
|
|
|
_delete = new KIO_Delete( this, "tdeio_delete" );
|
|
|
|
|
|
|
|
|
|
_mailurls = new TQValueList<FileInfo>;
|
|
|
|
|
}
|
|
|
|
@ -136,16 +136,16 @@ KKioDrop::KKioDrop( TDEConfigGroup* )
|
|
|
|
|
|
|
|
|
|
//Creating children and connect them to the outside world; this class passes the messages for them...
|
|
|
|
|
//This class handles all the counting.
|
|
|
|
|
_count = new KIO_Count( this, "kio_count" );
|
|
|
|
|
_count = new KIO_Count( this, "tdeio_count" );
|
|
|
|
|
|
|
|
|
|
//This class is responsible for providing the available subjects
|
|
|
|
|
_subjects = new KIO_Subjects( this, "kio_subjects" );
|
|
|
|
|
_subjects = new KIO_Subjects( this, "tdeio_subjects" );
|
|
|
|
|
|
|
|
|
|
//This class is used when a full message has to be read.
|
|
|
|
|
_read = new KIO_Read( this, "kio_read" );
|
|
|
|
|
_read = new KIO_Read( this, "tdeio_read" );
|
|
|
|
|
|
|
|
|
|
//This class can delete mails.
|
|
|
|
|
_delete = new KIO_Delete( this, "kio_delete" );
|
|
|
|
|
_delete = new KIO_Delete( this, "tdeio_delete" );
|
|
|
|
|
|
|
|
|
|
_mailurls = new TQValueList<FileInfo>;
|
|
|
|
|
|
|
|
|
|