From dd78bcd2bf8dd6432b54af61e17a75dcc05c2406 Mon Sep 17 00:00:00 2001 From: alwin Date: Thu, 25 Dec 2003 02:18:56 +0000 Subject: activated qcop message "writeMail(name,email)" --- (limited to 'noncore') diff --git a/noncore/net/mail/opiemail.cpp b/noncore/net/mail/opiemail.cpp index 0dede90..2909893 100644 --- a/noncore/net/mail/opiemail.cpp +++ b/noncore/net/mail/opiemail.cpp @@ -30,27 +30,38 @@ OpieMail::OpieMail( QWidget *parent, const char *name, WFlags flags ) void OpieMail::appMessage(const QCString &msg, const QByteArray &data) { // copied from old mail2 - // TODO: compose mail should get parameters of a recipient for starting - // from addressbook. (qcop signal "writeMail(string,string)") if (msg == "writeMail(QString,QString)") { QDataStream stream(data,IO_ReadOnly); QString name, email; stream >> name >> email; - slotComposeMail(); + // removing the whitespaces at beginning and end is needed! + slotwriteMail(name.stripWhiteSpace(),email.stripWhiteSpace()); } else if (msg == "newMail()") { slotComposeMail(); } } -void OpieMail::slotComposeMail() +void OpieMail::slotwriteMail(const QString&name,const QString&email) { - qDebug( "Compose Mail" ); ComposeMail compose( settings, this, 0 , true ); + if (!email.isEmpty()) { + if (!name.isEmpty()) { + compose.setTo("\"" + name + "\"" + " " + "<"+ email + ">"); + } else { + compose.setTo(email); + } + } compose.showMaximized(); compose.slotAdjustColumns(); compose.exec(); } +void OpieMail::slotComposeMail() +{ + qDebug( "Compose Mail" ); + slotwriteMail(0l,0l); +} + void OpieMail::slotSendQueued() { qDebug( "Send Queued" ); diff --git a/noncore/net/mail/opiemail.h b/noncore/net/mail/opiemail.h index 3cf5972..8cbcaa4 100644 --- a/noncore/net/mail/opiemail.h +++ b/noncore/net/mail/opiemail.h @@ -13,6 +13,7 @@ public: static QString appName() { return QString::fromLatin1("opiemail"); } public slots: + void slotwriteMail(const QString&name,const QString&email); void slotComposeMail(); void appMessage(const QCString &msg, const QByteArray &data); protected slots: -- cgit v0.9.0.2