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.
119 lines
4.5 KiB
119 lines
4.5 KiB
15 years ago
|
/*
|
||
|
This file is part of the scalix resource - based on the kolab resource.
|
||
|
|
||
|
Copyright (c) 2004 Bo Thorsen <bo@sonofthor.dk>
|
||
|
|
||
|
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 Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
|
|
||
|
In addition, as a special exception, the copyright holders give
|
||
|
permission to link the code of this program with any edition of
|
||
14 years ago
|
the TQt library by Trolltech AS, Norway (or with modified versions
|
||
|
of TQt that use the same license as TQt), and distribute linked
|
||
15 years ago
|
combinations including the two. You must obey the GNU General
|
||
|
Public License in all respects for all of the code used other than
|
||
14 years ago
|
TQt. If you modify this file, you may extend this exception to
|
||
15 years ago
|
your version of the file, but you are not obligated to do so. If
|
||
|
you do not wish to do so, delete this exception statement from
|
||
|
your version.
|
||
|
*/
|
||
|
|
||
|
#ifndef KMAILCONNECTION_H
|
||
|
#define KMAILCONNECTION_H
|
||
|
|
||
|
#include <dcopobject.h>
|
||
|
#include <kmail/kmailicalIface.h>
|
||
|
|
||
|
class KURL;
|
||
|
class DCOPClient;
|
||
|
class KMailICalIface_stub;
|
||
|
|
||
|
namespace Scalix {
|
||
|
|
||
|
class ResourceScalixBase;
|
||
|
|
||
|
/**
|
||
|
This class provides the kmail connectivity for IMAP resources.
|
||
|
*/
|
||
14 years ago
|
class KMailConnection : public TQObject, public DCOPObject {
|
||
15 years ago
|
Q_OBJECT
|
||
13 years ago
|
//
|
||
15 years ago
|
K_DCOP
|
||
|
|
||
|
// These are the methods called by KMail when the resource changes
|
||
|
k_dcop:
|
||
14 years ago
|
bool fromKMailAddIncidence( const TQString& type, const TQString& resource,
|
||
14 years ago
|
TQ_UINT32 sernum, int format, const TQString& xml );
|
||
14 years ago
|
void fromKMailDelIncidence( const TQString& type, const TQString& resource,
|
||
|
const TQString& xml );
|
||
|
void fromKMailRefresh( const TQString& type, const TQString& resource );
|
||
|
void fromKMailAddSubresource( const TQString& type, const TQString& resource, const TQString& label );
|
||
|
void fromKMailDelSubresource( const TQString& type, const TQString& resource );
|
||
14 years ago
|
void fromKMailAsyncLoadResult( const TQMap<TQ_UINT32, TQString>& map, const TQString& type,
|
||
14 years ago
|
const TQString& folder );
|
||
15 years ago
|
|
||
|
public:
|
||
14 years ago
|
KMailConnection( ResourceScalixBase* resource, const TQCString& objId );
|
||
15 years ago
|
virtual ~KMailConnection();
|
||
|
|
||
|
/**
|
||
|
* Do the connection to KMail.
|
||
|
*/
|
||
|
bool connectToKMail();
|
||
|
|
||
|
// Call the DCOP methods
|
||
14 years ago
|
bool kmailSubresources( TQValueList<KMailICalIface::SubResource>& lst,
|
||
|
const TQString& contentsType );
|
||
15 years ago
|
bool kmailIncidencesCount( int& count,
|
||
14 years ago
|
const TQString& mimetype,
|
||
|
const TQString& resource );
|
||
14 years ago
|
bool kmailIncidences( TQMap<TQ_UINT32, TQString>& lst, const TQString& mimetype,
|
||
14 years ago
|
const TQString& resource,
|
||
15 years ago
|
int startIndex,
|
||
|
int nbMessages );
|
||
|
|
||
14 years ago
|
bool kmailGetAttachment( KURL& url, const TQString& resource, TQ_UINT32 sernum,
|
||
14 years ago
|
const TQString& filename );
|
||
14 years ago
|
bool kmailDeleteIncidence( const TQString& resource, TQ_UINT32 sernum );
|
||
14 years ago
|
bool kmailUpdate( const TQString& resource,
|
||
14 years ago
|
TQ_UINT32& sernum,
|
||
14 years ago
|
const TQString& subject,
|
||
|
const TQString& plainTextBody,
|
||
|
const TQMap<TQCString, TQString>& customHeaders,
|
||
|
const TQStringList& attachmentURLs,
|
||
|
const TQStringList& attachmentMimetypes,
|
||
|
const TQStringList& attachmentNames,
|
||
|
const TQStringList& deletedAttachments );
|
||
15 years ago
|
|
||
14 years ago
|
bool kmailStorageFormat( KMailICalIface::StorageFormat& type, const TQString& folder);
|
||
15 years ago
|
|
||
14 years ago
|
bool kmailTriggerSync( const TQString& contentsType );
|
||
15 years ago
|
|
||
|
private slots:
|
||
14 years ago
|
virtual void unregisteredFromDCOP( const TQCString& );
|
||
15 years ago
|
|
||
|
private:
|
||
|
/** Connect a signal from KMail to a local slot. */
|
||
14 years ago
|
bool connectKMailSignal( const TQCString&, const TQCString& );
|
||
15 years ago
|
|
||
|
ResourceScalixBase* mResource;
|
||
|
DCOPClient* mDCOPClient;
|
||
|
KMailICalIface_stub* mKMailIcalIfaceStub;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // KMAILCONNECTION_H
|