author | ulf69 <ulf69> | 2004-08-17 00:09:26 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-17 00:09:26 (UTC) |
commit | ab3b10a5018152dedbdb64d0d5a4bd8ec752ccdb (patch) (unidiff) | |
tree | a9f62469297dda2981807b5235e7812cac72f44c | |
parent | 0e46d151bca931ff5c69a637d91cfcc381094e0b (diff) | |
download | kdepimpi-ab3b10a5018152dedbdb64d0d5a4bd8ec752ccdb.zip kdepimpi-ab3b10a5018152dedbdb64d0d5a4bd8ec752ccdb.tar.gz kdepimpi-ab3b10a5018152dedbdb64d0d5a4bd8ec752ccdb.tar.bz2 |
QCop implementation for KOrganizer to access Ka/pi directly
-rw-r--r-- | kaddressbook/kabcore.cpp | 33 | ||||
-rw-r--r-- | kaddressbook/kabcore.h | 3 | ||||
-rw-r--r-- | kaddressbook/mainembedded.cpp | 19 | ||||
-rw-r--r-- | libkdepim/externalapphandler.cpp | 282 | ||||
-rw-r--r-- | libkdepim/externalapphandler.h | 111 |
5 files changed, 435 insertions, 13 deletions
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 6807bed..e7c815e 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -69,2 +69,4 @@ | |||
69 | #include "kactioncollection.h" | 69 | #include "kactioncollection.h" |
70 | #include "addresseedialog.h" | ||
71 | |||
70 | #include <qapp.h> | 72 | #include <qapp.h> |
@@ -213,2 +215,6 @@ KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const | |||
213 | 215 | ||
216 | |||
217 | connect( ExternalAppHandler::instance(), SIGNAL (requestForNameEmailUidList(const QString&, const QString&, const QString&)),this, SLOT(requestForNameEmailUidList(const QString&, const QString&, const QString&))); | ||
218 | |||
219 | |||
214 | #ifndef KAB_EMBEDDED | 220 | #ifndef KAB_EMBEDDED |
@@ -220,2 +226,3 @@ KABCore::KABCore( KXMLGUIClient *client, bool readWrite, QWidget *parent, const | |||
220 | 226 | ||
227 | |||
221 | mAddressBookService = new KAddressBookService( this ); | 228 | mAddressBookService = new KAddressBookService( this ); |
@@ -1967,2 +1974,28 @@ void KABCore::configureResources() | |||
1967 | 1974 | ||
1975 | /* this method will be called through the QCop interface from Ko/Pi to select addresses | ||
1976 | * for the attendees list of an event. | ||
1977 | */ | ||
1978 | void KABCore::requestForNameEmailUidList(const QString& sourceChannel, const QString& uid, const QString& param1) | ||
1979 | { | ||
1980 | //param1 is usually empty for this kind of request | ||
1981 | |||
1982 | QStringList nameList; | ||
1983 | QStringList emailList; | ||
1984 | QStringList uidList; | ||
1985 | |||
1986 | KABC::Addressee::List list = KABC::AddresseeDialog::getAddressees(this); | ||
1987 | uint i=0; | ||
1988 | for (i=0; i < list.count(); i++) | ||
1989 | { | ||
1990 | nameList.append(list[i].realName()); | ||
1991 | emailList.append(list[i].preferredEmail()); | ||
1992 | uidList.append(list[i].uid()); | ||
1993 | } | ||
1994 | |||
1995 | bool res = ExternalAppHandler::instance()->returnNameEmailUidListFromKAPI(sourceChannel, uid, nameList, emailList, uidList); | ||
1996 | |||
1997 | } | ||
1998 | |||
1999 | |||
2000 | |||
1968 | 2001 | ||
diff --git a/kaddressbook/kabcore.h b/kaddressbook/kabcore.h index d4d28f1..fe778af 100644 --- a/kaddressbook/kabcore.h +++ b/kaddressbook/kabcore.h | |||
@@ -330,2 +330,5 @@ class KABCore : public QWidget | |||
330 | 330 | ||
331 | void requestForNameEmailUidList(const QString& sourceChannel, const QString& uid, const QString& param1); | ||
332 | |||
333 | |||
331 | signals: | 334 | signals: |
diff --git a/kaddressbook/mainembedded.cpp b/kaddressbook/mainembedded.cpp index 7f368eb..850e5b2 100644 --- a/kaddressbook/mainembedded.cpp +++ b/kaddressbook/mainembedded.cpp | |||
@@ -5,5 +5,5 @@ | |||
5 | #include <qapplication.h> | 5 | #include <qapplication.h> |
6 | #include <qwindowsstyle.h> | 6 | #include <qwindowsstyle.h> |
7 | #include <qplatinumstyle.h> | 7 | #include <qplatinumstyle.h> |
8 | #include <qmainwindow.h> | 8 | #include <qmainwindow.h> |
9 | #endif | 9 | #endif |
@@ -15,2 +15,3 @@ | |||
15 | #include "kaddressbookmain.h" | 15 | #include "kaddressbookmain.h" |
16 | #include "externalapphandler.h" | ||
16 | 17 | ||
@@ -22,6 +23,6 @@ int main( int argc, char **argv ) | |||
22 | #else | 23 | #else |
23 | QApplication a( argc, argv ); | 24 | QApplication a( argc, argv ); |
24 | QApplication::setStyle( new QPlatinumStyle ()); | 25 | QApplication::setStyle( new QPlatinumStyle ()); |
25 | #endif | 26 | #endif |
26 | 27 | ||
27 | bool exitHelp = false; | 28 | bool exitHelp = false; |
@@ -32,3 +33,3 @@ int main( int argc, char **argv ) | |||
32 | printf(" no command: Start KA/E in usual way\n"); | 33 | printf(" no command: Start KA/E in usual way\n"); |
33 | printf(" -help: This output\n"); | 34 | printf(" -help: This output\n"); |
34 | printf(" KA/E is exiting now. Bye!\n"); | 35 | printf(" KA/E is exiting now. Bye!\n"); |
@@ -51,3 +52,3 @@ int main( int argc, char **argv ) | |||
51 | 52 | ||
52 | #endif | 53 | #endif |
53 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "kaddressbook"))); | 54 | KStandardDirs::setAppDir( QDir::convertSeparators(locateLocal("data", "kaddressbook"))); |
@@ -55,3 +56,3 @@ int main( int argc, char **argv ) | |||
55 | //US MainWindow m; | 56 | //US MainWindow m; |
56 | //US QObject::connect( &a, SIGNAL (appMessage ( const QCString &, const QByteArray & )),&m, SLOT(recieve( const QCString&, const QByteArray& ))); | 57 | QObject::connect(&a, SIGNAL (appMessage ( const QCString &, const QByteArray & )), ExternalAppHandler::instance(), SLOT (appMessage ( const QCString &, const QByteArray & ))); |
57 | 58 | ||
@@ -65,3 +66,3 @@ int main( int argc, char **argv ) | |||
65 | a.exec(); | 66 | a.exec(); |
66 | 67 | ||
67 | } | 68 | } |
diff --git a/libkdepim/externalapphandler.cpp b/libkdepim/externalapphandler.cpp index 35638b1..64caa7d 100644 --- a/libkdepim/externalapphandler.cpp +++ b/libkdepim/externalapphandler.cpp | |||
@@ -47,6 +47,233 @@ $Id$ | |||
47 | 47 | ||
48 | /********************************************************************************* | ||
49 | * | ||
50 | ********************************************************************************/ | ||
51 | |||
52 | |||
53 | QCopTransferItem::QCopTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage) | ||
54 | : _sourceMessage(sourceMessage), _targetChannel(targetChannel), _targetMessage(targetMessage) | ||
55 | { | ||
56 | //sourceMessage passes later three parameters: sourceChannel, uid, param1 | ||
57 | _sourceMessageParameters = "(QString,QString,QString)"; | ||
58 | } | ||
59 | |||
60 | /*********************************************************************************/ | ||
61 | |||
62 | QCopTransferItem::QCopTransferItem() | ||
63 | { | ||
64 | } | ||
65 | |||
66 | /*********************************************************************************/ | ||
67 | bool QCopTransferItem::sendMessageToTarget(const QString& uid, const QString& param1) | ||
68 | { | ||
69 | |||
70 | #ifndef DESKTOP_VERSION | ||
71 | //sourceMessage passes two parameters: sourceChannel, uid | ||
72 | QString sourceMessage = _sourceMessage + _sourceMessageParameters; | ||
73 | |||
74 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", _targetChannel.latin1(), sourceMessage.latin1()); | ||
75 | qDebug("passing sourcechannel(%s), uid(%s), param1(%s) as parameter to QCopEnvelope", _sourceChannel.latin1(), uid.latin1(), param1.latin1()); | ||
76 | |||
77 | QCopEnvelope e(_targetChannel.latin1(), sourceMessage.latin1()); | ||
78 | |||
79 | e << _sourceChannel << uid << param1; | ||
80 | |||
81 | return true; | ||
82 | |||
83 | #else | ||
84 | KMessageBox::sorry( 0, i18n( "This version does not support QCop." ) ); | ||
85 | return false; | ||
86 | #endif | ||
87 | |||
88 | } | ||
89 | |||
90 | |||
91 | /*********************************************************************************/ | ||
92 | void QCopTransferItem::setSourceChannel(const QString& sourceChannel) | ||
93 | { | ||
94 | |||
95 | if (_sourceChannel.isEmpty()) | ||
96 | _sourceChannel = sourceChannel; | ||
97 | } | ||
98 | |||
99 | |||
100 | /*********************************************************************************/ | ||
101 | bool QCopTransferItem::appMessage( const QCString& cmsg, const QByteArray& data ) | ||
102 | { | ||
103 | /*US | ||
104 | // copied from old mail2 | ||
105 | static int ii = 0; | ||
106 | |||
107 | // block second call | ||
108 | if ( ii < 2 ) { | ||
109 | ++ii; | ||
110 | if ( ii > 1 ) { | ||
111 | qDebug("qcop call blocked "); | ||
112 | return true; | ||
113 | } | ||
114 | } | ||
115 | */ | ||
116 | qDebug("QCopTransferItem- QCOP message received: %s ", cmsg.data() ); | ||
117 | |||
118 | //we are in the target and get a request from the source | ||
119 | if ( (_sourceMessage + _sourceMessageParameters) == cmsg.data()) | ||
120 | { | ||
121 | QDataStream stream( data, IO_ReadOnly ); | ||
122 | |||
123 | |||
124 | QString sourceChannel; | ||
125 | QString uid; | ||
126 | QString param1; | ||
48 | 127 | ||
128 | stream >> sourceChannel >> uid >> param1; | ||
49 | 129 | ||
130 | emit receivedMessageFromSource(sourceChannel, uid, param1); | ||
50 | 131 | ||
132 | return true; | ||
133 | } | ||
134 | |||
135 | return false; | ||
136 | } | ||
137 | |||
138 | |||
139 | /********************************************************************************* | ||
140 | * | ||
141 | ********************************************************************************/ | ||
142 | |||
143 | |||
144 | QCopMapTransferItem::QCopMapTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage) | ||
145 | : QCopTransferItem(sourceMessage, targetChannel,targetMessage) | ||
146 | { | ||
147 | //targetMessage returns later two parameters: uid, and map<qstring,qstring> | ||
148 | _targetMessageParameters = "(QString,QMAP<QString,QString>)"; | ||
149 | } | ||
150 | |||
151 | /*********************************************************************************/ | ||
152 | bool QCopMapTransferItem::sendMessageToSource(const QString& uid, const QMap<QString,QString>& nameEmailMap) | ||
153 | { | ||
154 | #ifndef DESKTOP_VERSION | ||
155 | //targetMessage passes two parameters: uid, map | ||
156 | QString targetMessage = _targetMessage + _targetMessageParameters; | ||
157 | |||
158 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", _sourceChannel.latin1(), targetMessage.latin1()); | ||
159 | qDebug("passing uid(%s) and map as parameter to QCopEnvelope", uid.latin1()); | ||
51 | 160 | ||
161 | QCopEnvelope e(_sourceChannel.latin1(), targetMessage.latin1()); | ||
162 | //US we need no names in the To field. The emailadresses are enough | ||
163 | |||
164 | e << uid << nameEmailMap; | ||
165 | |||
166 | return true; | ||
167 | |||
168 | #else | ||
169 | KMessageBox::sorry( 0, i18n( "This version does not support QCop." ) ); | ||
170 | return false; | ||
171 | #endif | ||
172 | |||
173 | } | ||
174 | |||
175 | |||
176 | /*********************************************************************************/ | ||
177 | bool QCopMapTransferItem::appMessage( const QCString& cmsg, const QByteArray& data ) | ||
178 | { | ||
179 | bool res = QCopTransferItem::appMessage( cmsg, data ); | ||
180 | |||
181 | if (res == false) | ||
182 | { | ||
183 | QDataStream stream( data, IO_ReadOnly ); | ||
184 | |||
185 | qDebug("QCopMapTransferItem- QCOP message received: %s ", cmsg.data() ); | ||
186 | |||
187 | //we are in the source and get an answer from the target | ||
188 | if ((_targetMessage + _targetMessageParameters) == cmsg.data()) | ||
189 | { | ||
190 | QMap<QString,QString> adrMap; | ||
191 | QString uid; | ||
192 | |||
193 | stream >> uid >> adrMap; | ||
194 | |||
195 | emit receivedMessageFromTarget(uid, adrMap); | ||
196 | |||
197 | |||
198 | return true; | ||
199 | } | ||
200 | } | ||
201 | |||
202 | return false; | ||
203 | } | ||
204 | |||
205 | |||
206 | /********************************************************************************* | ||
207 | * | ||
208 | ********************************************************************************/ | ||
209 | |||
210 | |||
211 | QCopListTransferItem::QCopListTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage) | ||
212 | : QCopTransferItem(sourceMessage, targetChannel,targetMessage) | ||
213 | { | ||
214 | //targetMessage returns later two parameters: uid, and map<qstring,qstring> | ||
215 | _targetMessageParameters = "(QString,QStringList,QStringList,QStringList)"; | ||
216 | } | ||
217 | |||
218 | /*********************************************************************************/ | ||
219 | bool QCopListTransferItem::sendMessageToSource(const QString& uid, const QStringList& list1, const QStringList& list2, const QStringList& list3) | ||
220 | { | ||
221 | #ifndef DESKTOP_VERSION | ||
222 | //targetMessage passes two parameters: uid, map | ||
223 | QString targetMessage = _targetMessage + _targetMessageParameters; | ||
224 | |||
225 | qDebug("Using QCopEnvelope e(\"%s\",\"%s\")", _sourceChannel.latin1(), targetMessage.latin1()); | ||
226 | qDebug("passing uid(%s) and list1, list2, list3 as parameter to QCopEnvelope", uid.latin1()); | ||
227 | |||
228 | QCopEnvelope e(_sourceChannel.latin1(), targetMessage.latin1()); | ||
229 | //US we need no names in the To field. The emailadresses are enough | ||
230 | |||
231 | e << uid << list1 << list2 << list3; | ||
232 | |||
233 | return true; | ||
234 | |||
235 | #else | ||
236 | KMessageBox::sorry( 0, i18n( "This version does not support QCop." ) ); | ||
237 | return false; | ||
238 | #endif | ||
239 | |||
240 | } | ||
241 | |||
242 | |||
243 | /*********************************************************************************/ | ||
244 | bool QCopListTransferItem::appMessage( const QCString& cmsg, const QByteArray& data ) | ||
245 | { | ||
246 | bool res = QCopTransferItem::appMessage( cmsg, data ); | ||
247 | |||
248 | if (res == false) | ||
249 | { | ||
250 | QDataStream stream( data, IO_ReadOnly ); | ||
251 | |||
252 | qDebug("QCopListTransferItem- QCOP message received: %s ", cmsg.data() ); | ||
253 | |||
254 | //we are in the source and get an answer from the target | ||
255 | if ((_targetMessage + _targetMessageParameters) == cmsg.data()) | ||
256 | { | ||
257 | QStringList list1; | ||
258 | QStringList list2; | ||
259 | QStringList list3; | ||
260 | QString uid; | ||
261 | |||
262 | stream >> uid >> list1 >> list2 >> list3; | ||
263 | |||
264 | emit receivedMessageFromTarget(uid, list1, list2, list3); | ||
265 | |||
266 | |||
267 | return true; | ||
268 | } | ||
269 | } | ||
270 | |||
271 | return false; | ||
272 | } | ||
273 | |||
274 | |||
275 | |||
276 | /********************************************************************************* | ||
277 | * | ||
278 | ********************************************************************************/ | ||
52 | 279 | ||
@@ -56,3 +283,2 @@ static KStaticDeleter<ExternalAppHandler> staticDeleter; | |||
56 | 283 | ||
57 | |||
58 | ExternalAppHandler::ExternalAppHandler() | 284 | ExternalAppHandler::ExternalAppHandler() |
@@ -60,2 +286,12 @@ ExternalAppHandler::ExternalAppHandler() | |||
60 | mDefaultItems.setAutoDelete(true); | 286 | mDefaultItems.setAutoDelete(true); |
287 | |||
288 | mNameEmailUidListFromKAPITransfer = new QCopListTransferItem("requestNameEmailUIDListFromKAPI", "QPE/Application/kapi", "receiveNameEmailUIDList"); | ||
289 | connect(mNameEmailUidListFromKAPITransfer, SIGNAL (receivedMessageFromSource(const QString&, const QString&, const QString&)), this, SIGNAL (requestForNameEmailUidList(const QString&, const QString&, const QString&))); | ||
290 | connect(mNameEmailUidListFromKAPITransfer, SIGNAL (receivedMessageFromTarget(const QString&, const QStringList&, const QStringList&, const QStringList&)), this, SIGNAL (receivedNameEmailUidListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&))); | ||
291 | |||
292 | //US mFindByEmailFromKAPITransfer = new QCopListTransferItem("requestFindByEmailFromKAPI", "QPE/Application/kapi", "receiveFindByEmailNameEmailUIDList"); | ||
293 | //US connect(mFindByEmailFromKAPITransfer, SIGNAL (receivedMessageFromSource(const QString&, const QString&, const QString&)), this, SIGNAL (requestForFindByEmail(const QString&, const QString&, const QString&))); | ||
294 | //US connect(mFindByEmailFromKAPITransfer, SIGNAL (receivedMessageFromTarget(const QString&, const QStringList&, const QStringList&, const QStringList&)), this, SIGNAL (receivedFindByEmailEvent(const QString&, const QStringList&, const QStringList&, const QStringList&))); | ||
295 | |||
296 | |||
61 | } | 297 | } |
@@ -393,3 +629,4 @@ bool ExternalAppHandler::mailToOneContact( const QString& adressline ) | |||
393 | //Subject can not be handled right now. | 629 | //Subject can not be handled right now. |
394 | mailToOneContact( name, emailadress ); | 630 | return mailToOneContact( name, emailadress ); |
631 | |||
395 | } | 632 | } |
@@ -681 +918,42 @@ void ExternalAppHandler::passParameters(QCopEnvelope* e, const QString& paramete | |||
681 | 918 | ||
919 | /************************************************************************** | ||
920 | * | ||
921 | **************************************************************************/ | ||
922 | |||
923 | void ExternalAppHandler::appMessage( const QCString& cmsg, const QByteArray& data ) | ||
924 | { | ||
925 | bool res = mNameEmailUidListFromKAPITransfer->appMessage( cmsg, data ); | ||
926 | |||
927 | // if (!res) | ||
928 | // res = mNameEmailUidListFromKAPITransfer->appMessage( cmsg, data ); | ||
929 | } | ||
930 | |||
931 | |||
932 | |||
933 | bool ExternalAppHandler::requestNameEmailUidListFromKAPI(const QString& sourceChannel, const QString& uid) | ||
934 | { | ||
935 | mNameEmailUidListFromKAPITransfer->setSourceChannel(sourceChannel); | ||
936 | return mNameEmailUidListFromKAPITransfer->sendMessageToTarget(uid, QString::null); | ||
937 | } | ||
938 | |||
939 | bool ExternalAppHandler::returnNameEmailUidListFromKAPI(const QString& sourceChannel, const QString& uid, const QStringList& list1, const QStringList& list2, const QStringList& list3) | ||
940 | { | ||
941 | mNameEmailUidListFromKAPITransfer->setSourceChannel(sourceChannel); | ||
942 | return mNameEmailUidListFromKAPITransfer->sendMessageToSource(uid, list1, list2, list3); | ||
943 | } | ||
944 | |||
945 | bool ExternalAppHandler::requestFindByEmailFromKAPI(const QString& sourceChannel, const QString& uid, const QString& email) | ||
946 | { | ||
947 | mFindByEmailFromKAPITransfer->setSourceChannel(sourceChannel); | ||
948 | return mFindByEmailFromKAPITransfer->sendMessageToTarget(uid, email); | ||
949 | } | ||
950 | |||
951 | bool ExternalAppHandler::returnFindByEmailFromKAPI(const QString& sourceChannel, const QString& uid, const QStringList& list1, const QStringList& list2, const QStringList& list3) | ||
952 | { | ||
953 | mFindByEmailFromKAPITransfer->setSourceChannel(sourceChannel); | ||
954 | return mFindByEmailFromKAPITransfer->sendMessageToSource(uid, list1, list2, list3); | ||
955 | } | ||
956 | |||
957 | |||
958 | |||
959 | |||
diff --git a/libkdepim/externalapphandler.h b/libkdepim/externalapphandler.h index 3cf9e06..7c8de4e 100644 --- a/libkdepim/externalapphandler.h +++ b/libkdepim/externalapphandler.h | |||
@@ -33,3 +33,5 @@ $Id$ | |||
33 | 33 | ||
34 | #include <qobject.h> | ||
34 | #include <qlist.h> | 35 | #include <qlist.h> |
36 | #include <qmap.h> | ||
35 | 37 | ||
@@ -39,2 +41,76 @@ class QCopEnvelope; | |||
39 | class ExternalAppHandler; | 41 | class ExternalAppHandler; |
42 | class QCopTransferItem : public QObject | ||
43 | { | ||
44 | Q_OBJECT | ||
45 | public: | ||
46 | QCopTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage); | ||
47 | QCopTransferItem(); | ||
48 | |||
49 | bool sendMessageToTarget(const QString& uid, const QString& param1); | ||
50 | |||
51 | void setSourceChannel(const QString& sourceChannel); | ||
52 | |||
53 | virtual bool appMessage( const QCString& msg, const QByteArray& data ); | ||
54 | |||
55 | |||
56 | signals: | ||
57 | void receivedMessageFromSource(const QString& sourceChannel, const QString& uid, const QString& param1); | ||
58 | |||
59 | |||
60 | public: | ||
61 | QString _sourceChannel; | ||
62 | QString _sourceMessage; | ||
63 | QString _sourceMessageParameters; | ||
64 | QString _targetChannel; | ||
65 | QString _targetMessage; | ||
66 | QString _targetMessageParameters; | ||
67 | |||
68 | }; | ||
69 | |||
70 | /********************************************************************************* | ||
71 | * | ||
72 | ********************************************************************************/ | ||
73 | |||
74 | class QCopMapTransferItem : public QCopTransferItem | ||
75 | { | ||
76 | Q_OBJECT | ||
77 | public: | ||
78 | QCopMapTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage); | ||
79 | |||
80 | bool sendMessageToSource(const QString& uid, const QMap<QString,QString>& nameEmailMap); | ||
81 | |||
82 | |||
83 | virtual bool appMessage( const QCString& msg, const QByteArray& data ); | ||
84 | |||
85 | |||
86 | signals: | ||
87 | void receivedMessageFromTarget(const QString& uid, const QMap<QString,QString>& nameEmailMap); | ||
88 | |||
89 | }; | ||
90 | |||
91 | /********************************************************************************* | ||
92 | * | ||
93 | ********************************************************************************/ | ||
94 | |||
95 | class QCopListTransferItem : public QCopTransferItem | ||
96 | { | ||
97 | Q_OBJECT | ||
98 | public: | ||
99 | QCopListTransferItem(const QString& sourceMessage, const QString& targetChannel, const QString& targetMessage); | ||
100 | |||
101 | bool sendMessageToSource(const QString& uid, const QStringList& list1, const QStringList& list2, const QStringList& list3); | ||
102 | |||
103 | |||
104 | virtual bool appMessage( const QCString& msg, const QByteArray& data ); | ||
105 | |||
106 | |||
107 | signals: | ||
108 | void receivedMessageFromTarget(const QString& uid, const QStringList& list1, const QStringList& list2, const QStringList& list3); | ||
109 | |||
110 | }; | ||
111 | |||
112 | /********************************************************************************* | ||
113 | * | ||
114 | ********************************************************************************/ | ||
115 | |||
40 | 116 | ||
@@ -62,4 +138,9 @@ class DefaultAppItem | |||
62 | 138 | ||
63 | class ExternalAppHandler | 139 | /********************************************************************************* |
140 | * | ||
141 | ********************************************************************************/ | ||
142 | |||
143 | class ExternalAppHandler : public QObject | ||
64 | { | 144 | { |
145 | Q_OBJECT | ||
65 | public: | 146 | public: |
@@ -114,2 +195,10 @@ class ExternalAppHandler | |||
114 | 195 | ||
196 | //Call this method on the source when you want to select names from the addressbook by using QCop | ||
197 | bool requestNameEmailUidListFromKAPI(const QString& sourceChannel, const QString& uid); | ||
198 | //Call this method on the target when you want to return the name/email map to the source (client). | ||
199 | bool returnNameEmailUidListFromKAPI(const QString& sourceChannel, const QString& uid, const QStringList& name, const QStringList& email, const QStringList& uid); | ||
200 | |||
201 | bool requestFindByEmailFromKAPI(const QString& sourceChannel, const QString& uid, const QString& email); | ||
202 | bool returnFindByEmailFromKAPI(const QString& sourceChannel, const QString& uid, const QStringList& name, const QStringList& email, const QStringList& uid); | ||
203 | |||
115 | 204 | ||
@@ -121,2 +210,17 @@ class ExternalAppHandler | |||
121 | 210 | ||
211 | public slots: | ||
212 | void appMessage( const QCString& msg, const QByteArray& data ); | ||
213 | |||
214 | |||
215 | signals: | ||
216 | // Emmitted when the target app receives a request from the source app | ||
217 | void requestForNameEmailUidList(const QString& sourceChannel, const QString& uid, const QString& param1); | ||
218 | |||
219 | // Emitted when the source app recieves a list of name/email pairs (=addresses) from another target app. Usually Ka/Pi | ||
220 | // The first parameter is a uniqueid. It can be used to identify the event | ||
221 | void receivedNameEmailUidListEvent(const QString& uid, const QStringList& nameList, const QStringList& emailList, const QStringList& uidList); | ||
222 | |||
223 | void requestFindByEmail(const QString& sourceChannel, const QString& uid, const QString& email); | ||
224 | void receivedFindBbyEmailEvent(const QString& uid, const QStringList& nameList, const QStringList& emailList, const QStringList& uidList); | ||
225 | |||
122 | 226 | ||
@@ -132,2 +236,5 @@ class ExternalAppHandler | |||
132 | 236 | ||
237 | QCopListTransferItem* mNameEmailUidListFromKAPITransfer; | ||
238 | QCopListTransferItem* mFindByEmailFromKAPITransfer; | ||
239 | |||
133 | 240 | ||
@@ -141,5 +248,5 @@ class ExternalAppHandler | |||
141 | 248 | ||
142 | |||
143 | }; | 249 | }; |
144 | 250 | ||
251 | |||
145 | #endif | 252 | #endif |