summaryrefslogtreecommitdiffabout
path: root/libkdepim/externalapphandler.h
authorulf69 <ulf69>2004-08-18 21:11:43 (UTC)
committer ulf69 <ulf69>2004-08-18 21:11:43 (UTC)
commit05a1b5cbea6a7c1a7500632f8e7c1bf5be9328d8 (patch) (side-by-side diff)
tree605819f51c314d137f24281f1ed4854b2086aa68 /libkdepim/externalapphandler.h
parent7d15927b7e7957a80da335587598e7b62dece1a4 (diff)
downloadkdepimpi-05a1b5cbea6a7c1a7500632f8e7c1bf5be9328d8.zip
kdepimpi-05a1b5cbea6a7c1a7500632f8e7c1bf5be9328d8.tar.gz
kdepimpi-05a1b5cbea6a7c1a7500632f8e7c1bf5be9328d8.tar.bz2
added new QCop method requestForDetails
Diffstat (limited to 'libkdepim/externalapphandler.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/externalapphandler.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/libkdepim/externalapphandler.h b/libkdepim/externalapphandler.h
index 7c8de4e..a74080f 100644
--- a/libkdepim/externalapphandler.h
+++ b/libkdepim/externalapphandler.h
@@ -45,6 +45,6 @@ class QCopTransferItem : public QObject
public:
- QCopTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
+ QCopTransferItem(int usedSourceParameters, const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
QCopTransferItem();
- bool sendMessageToTarget(const QString& uid, const QString& param1);
+ bool sendMessageToTarget(const QString& uid, const QString& param1 = QString::null, const QString& param2 = QString::null, const QString& param3 = QString::null);
@@ -56,3 +56,6 @@ class QCopTransferItem : public QObject
signals:
+ void receivedMessageFromSource(const QString& sourceChannel, const QString& uid);
void receivedMessageFromSource(const QString& sourceChannel, const QString& uid, const QString& param1);
+ void receivedMessageFromSource(const QString& sourceChannel, const QString& uid, const QString& param1, const QString& param2);
+ void receivedMessageFromSource(const QString& sourceChannel, const QString& uid, const QString& param1, const QString& param2, const QString& param3);
@@ -60,2 +63,3 @@ class QCopTransferItem : public QObject
public:
+ int _usedSourceParameters;
QString _sourceChannel;
@@ -77,3 +81,3 @@ class QCopMapTransferItem : public QCopTransferItem
public:
- QCopMapTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
+ QCopMapTransferItem(int usedSourceParameters, const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
@@ -98,3 +102,3 @@ class QCopListTransferItem : public QCopTransferItem
public:
- QCopListTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
+ QCopListTransferItem(int usedSourceParameters, const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage);
@@ -203,2 +207,4 @@ class ExternalAppHandler : public QObject
+ bool requestDetailsFromKAPI(const QString& sourceChannel, const QString& sessionuid, const QString& name, const QString& email, const QString& uid);
+
@@ -216,3 +222,3 @@ class ExternalAppHandler : public QObject
// Emmitted when the target app receives a request from the source app
- void requestForNameEmailUidList(const QString& sourceChannel, const QString& uid, const QString& param1);
+ void requestForNameEmailUidList(const QString& sourceChannel, const QString& uid);
@@ -225,2 +231,4 @@ class ExternalAppHandler : public QObject
+ void requestForDetails(const QString& sourceChannel, const QString& sessionuid, const QString& name, const QString& email, const QString& uid);
+
@@ -238,2 +246,3 @@ class ExternalAppHandler : public QObject
QCopListTransferItem* mFindByEmailFromKAPITransfer;
+ QCopTransferItem* mDisplayDetails;