author | ulf69 <ulf69> | 2004-08-10 22:39:35 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-10 22:39:35 (UTC) |
commit | 29abd716e5187a4717a5459b9c25c6c299df8d56 (patch) (side-by-side diff) | |
tree | 72159d7b8cf49115d4ecf285120d8f9f44e7015e /libkdepim/externalapphandler.h | |
parent | 2f1b58e344b882578977dd3786f7a94495096d22 (diff) | |
download | kdepimpi-29abd716e5187a4717a5459b9c25c6c299df8d56.zip kdepimpi-29abd716e5187a4717a5459b9c25c6c299df8d56.tar.gz kdepimpi-29abd716e5187a4717a5459b9c25c6c299df8d56.tar.bz2 |
changes on how to send emails to contacts
Diffstat (limited to 'libkdepim/externalapphandler.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libkdepim/externalapphandler.h | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/libkdepim/externalapphandler.h b/libkdepim/externalapphandler.h index efcdd89..3cf9e06 100644 --- a/libkdepim/externalapphandler.h +++ b/libkdepim/externalapphandler.h @@ -68,37 +68,43 @@ class ExternalAppHandler static ExternalAppHandler *instance(); enum Types { EMAIL = 0, PHONE = 1, SMS = 2, FAX = 3, PAGER = 4 }; enum Availability { UNDEFINED = -1, UNAVAILABLE = 0, AVAILABLE = 1 }; - //calls the emailapplication with a number of attachments that need to be send - bool mailAttachments( const QString& urls ); + //calls the emailapplication with a number of attachments that need to be send. + //either parameter can be left empty. + bool mailToMultipleContacts( const QString& recipients, const QString& attachmenturls ); - //calls the emailapplication and creates a mail with parameter emails as recipients - bool mailToContacts( const QString& emails ); + //calls the emailapplication and creates a mail with parameter emailadress as recipients + bool mailToOneContact( const QString& name, const QString& emailadress ); + + //calls the emailapplication and creates a mail with parameter as recipients + // parameters format is + // NAME <EMAIL>:SUBJECT + bool mailToOneContact( const QString& adressline ); //calls the phoneapplication with the number bool callByPhone( const QString& phonenumber ); //calls the smsapplication with the number bool callBySMS( const QString& phonenumber ); //calls the pagerapplication with the number bool callByPager( const QString& pagernumber ); //calls the faxapplication with the number bool callByFax( const QString& faxnumber ); bool isEmailAppAvailable(); bool isSMSAppAvailable(); bool isPhoneAppAvailable(); @@ -114,26 +120,26 @@ class ExternalAppHandler DefaultAppItem* getDefaultItem(Types, int); private: ExternalAppHandler(); QList<DefaultAppItem> mDefaultItems; Availability mEmailAppAvailable; Availability mPhoneAppAvailable; Availability mFaxAppAvailable; Availability mSMSAppAvailable; Availability mPagerAppAvailable; void addDefaultAppItem(Types type, int id, const QString& label, const QString& channel, const QString& message, const QString& parameters, const QString& message2, const QString& parameters2); - QString& translateMessage(QString& message, const QString& emails) const; - void passParameter(QCopEnvelope* e, const QString& parameters, const QString& param1) const; + QString& translateMessage(QString& message, const QString& param1, const QString& param2) const; + void passParameters(QCopEnvelope* e, const QString& parameters, const QString& param1, const QString& param2) const; static ExternalAppHandler *sInstance; }; #endif |