summaryrefslogtreecommitdiffabout
path: root/kmicromail/composemail.cpp
Unidiff
Diffstat (limited to 'kmicromail/composemail.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/composemail.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/kmicromail/composemail.cpp b/kmicromail/composemail.cpp
index 3231b45..7b609fc 100644
--- a/kmicromail/composemail.cpp
+++ b/kmicromail/composemail.cpp
@@ -1,538 +1,545 @@
1// CHANGED 2004-08-06 Lutz Rogowski 1// CHANGED 2004-08-06 Lutz Rogowski
2 2
3 3
4#ifdef DESKTOP_VERSION 4#ifdef DESKTOP_VERSION
5#include <qapplication.h> 5#include <qapplication.h>
6#include <kabc/addresseedialog.h> 6#include <kabc/addresseedialog.h>
7#include <kabc/stdaddressbook.h> 7#include <kabc/stdaddressbook.h>
8#include <kabc/addressee.h> 8#include <kabc/addressee.h>
9#else 9#else
10#include <qpe/qpeapplication.h> 10#include <qpe/qpeapplication.h>
11#endif //DESKTOP_VERSION 11#endif //DESKTOP_VERSION
12#include <libkdepim/externalapphandler.h> 12#include <libkdepim/externalapphandler.h>
13 13
14#include "koprefs.h" 14#include "koprefs.h"
15#include <klocale.h> 15#include <klocale.h>
16#include <kglobal.h> 16#include <kglobal.h>
17 17
18#ifdef MINIKDE_KDIALOG_H 18#ifdef MINIKDE_KDIALOG_H
19#undef MINIKDE_KDIALOG_H 19#undef MINIKDE_KDIALOG_H
20#endif 20#endif
21 21
22 22
23#include "composemail.h" 23#include "composemail.h"
24 24
25#include <libmailwrapper/smtpwrapper.h> 25#include <libmailwrapper/smtpwrapper.h>
26#include <libmailwrapper/storemail.h> 26#include <libmailwrapper/storemail.h>
27#include <libmailwrapper/abstractmail.h> 27#include <libmailwrapper/abstractmail.h>
28#include <libmailwrapper/mailtypes.h> 28#include <libmailwrapper/mailtypes.h>
29 29
30/* OPIE */ 30/* OPIE */
31//#include <opie2/ofiledialog.h> 31//#include <opie2/ofiledialog.h>
32//#include <opie2/odebug.h> 32//#include <opie2/odebug.h>
33#include <kfiledialog.h> 33#include <kfiledialog.h>
34//#include <qpe/resource.h> 34//#include <qpe/resource.h>
35#include <qpe/global.h> 35#include <qpe/global.h>
36//#include <qpe/contact.h> 36//#include <qpe/contact.h>
37 37
38 38
39#include <qcombobox.h> 39#include <qcombobox.h>
40#include <qcheckbox.h> 40#include <qcheckbox.h>
41#include <qiconset.h> 41#include <qiconset.h>
42#include <qtimer.h> 42#include <qtimer.h>
43#include <qmessagebox.h> 43#include <qmessagebox.h>
44#include <qpushbutton.h> 44#include <qpushbutton.h>
45#include <qmultilineedit.h> 45#include <qmultilineedit.h>
46#include <qlabel.h> 46#include <qlabel.h>
47#include <qtabwidget.h> 47#include <qtabwidget.h>
48#include <qlistview.h> 48#include <qlistview.h>
49 49
50//using namespace Opie::Core; 50//using namespace Opie::Core;
51//using namespace Opie::Ui; 51//using namespace Opie::Ui;
52ComposeMail::ComposeMail( Settings *sett, QWidget *parent, const char *name, bool modal ) 52ComposeMail::ComposeMail( Settings *sett, QWidget *parent, const char *name, bool modal )
53 : ComposeMailUI( parent, name, modal ) 53 : ComposeMailUI( parent, name, modal )
54{ 54{
55 55
56 mPickLineEdit = 0; 56 mPickLineEdit = 0;
57 mEncoding = KOPrefs::instance()->mCurrentCodeName; 57 mEncoding = KOPrefs::instance()->mCurrentCodeName;
58 //managed from opiemail now 58 //managed from opiemail now
59 //connect(ExternalAppHandler::instance(), SIGNAL(receivedNameEmailUidListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&)), 59 //connect(ExternalAppHandler::instance(), SIGNAL(receivedNameEmailUidListEvent(const QString&, const QStringList&, const QStringList&, const QStringList&)),
60 // this, SLOT(insertAttendees(const QString&, const QStringList&, const QStringList&, const QStringList&))); 60 // this, SLOT(insertAttendees(const QString&, const QStringList&, const QStringList&, const QStringList&)));
61 settings = sett; 61 settings = sett;
62 m_replyid = ""; 62 m_replyid = "";
63 if ( KOPrefs::instance()->mUseKapi) { 63 if ( KOPrefs::instance()->mUseKapi) {
64 KConfig config( locateLocal("config", "kabcrc") ); 64 KConfig config( locateLocal("config", "kabcrc") );
65 config.setGroup( "General" ); 65 config.setGroup( "General" );
66 QString whoami_uid = config.readEntry( "WhoAmI" ); 66 QString whoami_uid = config.readEntry( "WhoAmI" );
67 67
68 if ( whoami_uid.isEmpty() ) { 68 if ( whoami_uid.isEmpty() ) {
69 QMessageBox::information( 0, i18n( "Hint" ), 69 QMessageBox::information( 0, i18n( "Hint" ),
70 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 70 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
71 i18n( "Ok" ) ); 71 i18n( "Ok" ) );
72 72
73 73
74 fillSettings(); 74 fillSettings();
75 } else 75 } else
76 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid); 76 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid);
77 77
78 78
79#ifdef DESKTOP_VERSION 79#ifdef DESKTOP_VERSION
80 KABC::Addressee con = KABC::StdAddressBook::self()->whoAmI( ); 80 KABC::Addressee con = KABC::StdAddressBook::self()->whoAmI( );
81 QStringList mails = con.emails(); 81 QStringList mails = con.emails();
82 QString defmail = con.preferredEmail(); 82 QString defmail = con.preferredEmail();
83 if ( mails.count() == 0) 83 if ( mails.count() == 0)
84 QMessageBox::information( 0, i18n( "Hint" ), 84 QMessageBox::information( 0, i18n( "Hint" ),
85 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 85 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
86 i18n( "Ok" ) ); 86 i18n( "Ok" ) );
87 if (defmail.length()!=0) { 87 if (defmail.length()!=0) {
88 fromBox->insertItem(defmail); 88 fromBox->insertItem(defmail);
89 } 89 }
90 QStringList::ConstIterator sit = mails.begin(); 90 QStringList::ConstIterator sit = mails.begin();
91 for (;sit!=mails.end();++sit) { 91 for (;sit!=mails.end();++sit) {
92 if ( (*sit)==defmail) 92 if ( (*sit)==defmail)
93 continue; 93 continue;
94 fromBox->insertItem((*sit)); 94 fromBox->insertItem((*sit));
95 } 95 }
96 senderNameEdit->setText(con.formattedName()); 96 senderNameEdit->setText(con.formattedName());
97#endif 97#endif
98 98
99 } else { 99 } else {
100 fillSettings(); 100 fillSettings();
101 } 101 }
102 checkBoxLater->setChecked( KOPrefs::instance()->mSendLater ); 102 checkBoxLater->setChecked( KOPrefs::instance()->mSendLater );
103 103
104 attList->addColumn( i18n( "Name" ) ); 104 attList->addColumn( i18n( "Name" ) );
105 attList->addColumn( i18n( "Size" ) ); 105 attList->addColumn( i18n( "Size" ) );
106 QList<Account> accounts = settings->getAccounts(); 106 QList<Account> accounts = settings->getAccounts();
107 107
108 if ( QApplication::desktop()->width() < 320 ) 108 if ( QApplication::desktop()->width() < 320 )
109 smtpAccountBox->setMaximumWidth( 80 ); 109 smtpAccountBox->setMaximumWidth( 80 );
110 Account *it; 110 Account *it;
111 for ( it = accounts.first(); it; it = accounts.next() ) { 111 for ( it = accounts.first(); it; it = accounts.next() ) {
112 if ( it->getType()==MAILLIB::A_SMTP ) { 112 if ( it->getType()==MAILLIB::A_SMTP ) {
113 SMTPaccount *smtp = static_cast<SMTPaccount *>(it); 113 SMTPaccount *smtp = static_cast<SMTPaccount *>(it);
114 smtpAccountBox->insertItem( smtp->getAccountName() ); 114 smtpAccountBox->insertItem( smtp->getAccountName() );
115 smtpAccounts.append( smtp ); 115 smtpAccounts.append( smtp );
116 } 116 }
117 } 117 }
118 connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) ); 118 connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) );
119 connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) ); 119 connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) );
120 connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) ); 120 connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) );
121 connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) ); 121 connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) );
122 connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) ); 122 connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) );
123 connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) ); 123 connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) );
124 connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) ); 124 connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) );
125 mMail = 0; 125 mMail = 0;
126 warnAttach = true; 126 warnAttach = true;
127 QIconSet icon; 127 QIconSet icon;
128 //icon = SmallIcon("fileexport"); 128 //icon = SmallIcon("fileexport");
129 icon = SmallIcon("filesave"); 129 icon = SmallIcon("filesave");
130 SaveButton->setIconSet (icon ) ; 130 SaveButton->setIconSet (icon ) ;
131 if ( QApplication::desktop()->width() < 320 ) { 131 if ( QApplication::desktop()->width() < 320 ) {
132 SaveButton->setText ("") ; 132 SaveButton->setText ("") ;
133 SaveButton->setMaximumSize ( SaveButton->sizeHint().height(),SaveButton->sizeHint().height()) ; 133 SaveButton->setMaximumSize ( SaveButton->sizeHint().height(),SaveButton->sizeHint().height()) ;
134 } 134 }
135 else 135 else
136 SaveButton->setText (i18n("Save")); 136 SaveButton->setText (i18n("Save"));
137#ifndef DESKTOP_VERSION 137#ifndef DESKTOP_VERSION
138 QPEApplication::setStylusOperation( message, QPEApplication::RightOnHold ); 138 QPEApplication::setStylusOperation( message, QPEApplication::RightOnHold );
139 QPEApplication::setStylusOperation( senderNameEdit, QPEApplication::RightOnHold ); 139 QPEApplication::setStylusOperation( senderNameEdit, QPEApplication::RightOnHold );
140 QPEApplication::setStylusOperation( subjectLine, QPEApplication::RightOnHold ); 140 QPEApplication::setStylusOperation( subjectLine, QPEApplication::RightOnHold );
141#endif 141#endif
142 message->setFont ( KOPrefs::instance()->mComposeFont ); 142 message->setFont ( KOPrefs::instance()->mComposeFont );
143 message->setWordWrap (QMultiLineEdit::WidgetWidth); 143 message->setWordWrap (QMultiLineEdit::WidgetWidth);
144 if ( smtpAccounts.count() > 0 ) { 144 if ( smtpAccounts.count() > 0 ) {
145 fillValues( smtpAccountBox->currentItem() ); 145 fillValues( smtpAccountBox->currentItem() );
146 } else { 146 } else {
147 QMessageBox::information( 0, i18n( "Problem" ), 147 QMessageBox::information( 0, i18n( "Problem" ),
148 i18n( "Please create an\nSMTP account first.\nThe SMTP is needed\nfor sending mail.\n" ), 148 i18n( "Please create an\nSMTP account first.\nThe SMTP is needed\nfor sending mail.\n" ),
149 i18n( "Ok" ) ); 149 i18n( "Ok" ) );
150 return; 150 return;
151 } 151 }
152 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); 152 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) );
153 connect( SaveSigButton, SIGNAL( clicked() ), SLOT( saveSig()) ); 153 connect( SaveSigButton, SIGNAL( clicked() ), SLOT( saveSig()) );
154 if ( smtpAccountBox->count()) 154 if ( smtpAccountBox->count())
155 fillValues(0); 155 fillValues(0);
156 156#ifdef DESKTOP_VERSION
157 if ( QApplication::desktop()->width() <= 800 ) {
158 resize( QApplication::desktop()->size() );
159 } else
160 resize( 800, 600 );
161 if ( QApplication::desktop()->width() >= 640 )
162 senderNameEdit->setFixedWidth( 200 );
163#endif
157} 164}
158 165
159void ComposeMail::fillSettings() 166void ComposeMail::fillSettings()
160{ 167{
161 if ( QApplication::desktop()->width() < 320 ) 168 if ( QApplication::desktop()->width() < 320 )
162 fromBox->setMaximumWidth( 100 ); 169 fromBox->setMaximumWidth( 100 );
163 QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail); 170 QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail);
164 QStringList::ConstIterator sit = mailList.begin(); 171 QStringList::ConstIterator sit = mailList.begin();
165 int pref = 0; 172 int pref = 0;
166 for (;sit!=mailList.end();++sit) { 173 for (;sit!=mailList.end();++sit) {
167 fromBox->insertItem((*sit)); 174 fromBox->insertItem((*sit));
168 } 175 }
169 senderNameEdit->setText(KOPrefs::instance()->mName); 176 senderNameEdit->setText(KOPrefs::instance()->mName);
170} 177}
171void ComposeMail::saveSig() 178void ComposeMail::saveSig()
172{ 179{
173 if ( smtpAccountBox->count()) { 180 if ( smtpAccountBox->count()) {
174 int cur = smtpAccountBox->currentItem (); 181 int cur = smtpAccountBox->currentItem ();
175 SMTPaccount *smtp = smtpAccounts.at( cur ); 182 SMTPaccount *smtp = smtpAccounts.at( cur );
176 if ( smtp ) 183 if ( smtp )
177 smtp->setSignature( sigMultiLine->text()); 184 smtp->setSignature( sigMultiLine->text());
178 } 185 }
179} 186}
180void ComposeMail::saveAsDraft() 187void ComposeMail::saveAsDraft()
181{ 188{
182 189
183 Opie::Core::OSmartPointer<Mail> mail= new Mail(); 190 Opie::Core::OSmartPointer<Mail> mail= new Mail();
184 mail->setMail(fromBox->currentText()); 191 mail->setMail(fromBox->currentText());
185 mail->setTo( toLine->text() ); 192 mail->setTo( toLine->text() );
186 mail->setName(senderNameEdit->text()); 193 mail->setName(senderNameEdit->text());
187 mail->setCC( ccLine->text() ); 194 mail->setCC( ccLine->text() );
188 mail->setBCC( bccLine->text() ); 195 mail->setBCC( bccLine->text() );
189 mail->setReply( replyLine->text() ); 196 mail->setReply( replyLine->text() );
190 mail->setSubject( subjectLine->text() ); 197 mail->setSubject( subjectLine->text() );
191 if (!m_replyid.isEmpty()) { 198 if (!m_replyid.isEmpty()) {
192 QStringList ids; 199 QStringList ids;
193 ids.append(m_replyid); 200 ids.append(m_replyid);
194 mail->setInreply(ids); 201 mail->setInreply(ids);
195 } 202 }
196 QString txt = message->text(); 203 QString txt = message->text();
197 if ( !sigMultiLine->text().isEmpty() ) { 204 if ( !sigMultiLine->text().isEmpty() ) {
198 txt.append( "\n--\n" ); 205 txt.append( "\n--\n" );
199 txt.append( sigMultiLine->text() ); 206 txt.append( sigMultiLine->text() );
200 } 207 }
201 mail->setMessage( txt ); 208 mail->setMessage( txt );
202 mail->setCharset (mEncoding); 209 mail->setCharset (mEncoding);
203 /* only use the default drafts folder name! */ 210 /* only use the default drafts folder name! */
204 Storemail wrapper(AbstractMail::draftFolder()); 211 Storemail wrapper(AbstractMail::draftFolder());
205 wrapper.storeMail(mail); 212 wrapper.storeMail(mail);
206 213
207 AttachViewItem *it = (AttachViewItem *) attList->firstChild(); 214 AttachViewItem *it = (AttachViewItem *) attList->firstChild();
208 /* attachments we will ignore! */ 215 /* attachments we will ignore! */
209 if ( it != 0 ) { 216 if ( it != 0 ) {
210 if ( warnAttach ) 217 if ( warnAttach )
211 QMessageBox::warning(0,i18n("Store message"), 218 QMessageBox::warning(0,i18n("Store message"),
212 i18n("<center>Attachments will not be stored in \"Draft\" folder</center>")); 219 i18n("<center>Attachments will not be stored in \"Draft\" folder</center>"));
213 warnAttach = false; 220 warnAttach = false;
214 } 221 }
215 setStatus( i18n("Mail saved as draft!") ); 222 setStatus( i18n("Mail saved as draft!") );
216} 223}
217void ComposeMail::clearStatus() 224void ComposeMail::clearStatus()
218{ 225{
219 topLevelWidget()->setCaption( i18n("Compose mail") ); 226 topLevelWidget()->setCaption( i18n("Compose mail") );
220} 227}
221void ComposeMail::setStatus( QString status ) 228void ComposeMail::setStatus( QString status )
222{ 229{
223 topLevelWidget()->setCaption( status ); 230 topLevelWidget()->setCaption( status );
224 QTimer::singleShot ( 10000, this, SLOT( clearStatus() ) ) ; 231 QTimer::singleShot ( 10000, this, SLOT( clearStatus() ) ) ;
225} 232}
226void ComposeMail::pickAddress( ) 233void ComposeMail::pickAddress( )
227{ 234{
228 235
229 QLineEdit *line = mPickLineEdit; 236 QLineEdit *line = mPickLineEdit;
230 if ( line == 0 ) 237 if ( line == 0 )
231 return; 238 return;
232#ifdef DESKTOP_VERSION 239#ifdef DESKTOP_VERSION
233 //qDebug(" ComposeMail::pickAddress "); 240 //qDebug(" ComposeMail::pickAddress ");
234 QString names ;//= AddressPicker::getNames(); 241 QString names ;//= AddressPicker::getNames();
235 242
236 KABC::Addressee::List list = KABC::AddresseeDialog::getAddressees(this); 243 KABC::Addressee::List list = KABC::AddresseeDialog::getAddressees(this);
237 uint i=0; 244 uint i=0;
238 for (i=0; i < list.count(); i++) { 245 for (i=0; i < list.count(); i++) {
239 if ( !list[i].preferredEmail().isEmpty()) { 246 if ( !list[i].preferredEmail().isEmpty()) {
240 if ( ! names.isEmpty() ) 247 if ( ! names.isEmpty() )
241 names+= ","; 248 names+= ",";
242 names+= "\""+list[i].realName() +"\"<" +list[i].preferredEmail() +">"; 249 names+= "\""+list[i].realName() +"\"<" +list[i].preferredEmail() +">";
243 250
244 } 251 }
245 } 252 }
246 253
247 254
248 if ( line->text().isEmpty() ) { 255 if ( line->text().isEmpty() ) {
249 line->setText( names ); 256 line->setText( names );
250 } else if ( !names.isEmpty() ) { 257 } else if ( !names.isEmpty() ) {
251 line->setText( line->text() + ", " + names ); 258 line->setText( line->text() + ", " + names );
252 } 259 }
253#else 260#else
254 bool res = ExternalAppHandler::instance()->requestNameEmailUidListFromKAPI("QPE/Application/ompi", this->name() /* name is here the unique uid*/); 261 bool res = ExternalAppHandler::instance()->requestNameEmailUidListFromKAPI("QPE/Application/ompi", this->name() /* name is here the unique uid*/);
255 // the result should now arrive through method insertAttendees 262 // the result should now arrive through method insertAttendees
256#endif 263#endif
257} 264}
258//the map includes name/email pairs, that comes from Ka/Pi 265//the map includes name/email pairs, that comes from Ka/Pi
259void ComposeMail::insertAttendees(const QString& uid,const QStringList& nameList,const QStringList& emailList,const QStringList& uidList) 266void ComposeMail::insertAttendees(const QString& uid,const QStringList& nameList,const QStringList& emailList,const QStringList& uidList)
260{ 267{
261 //qDebug("ComposeMail::insertAttendees "); 268 //qDebug("ComposeMail::insertAttendees ");
262 raise(); 269 raise();
263 270
264 QString UID = uid; 271 QString UID = uid;
265 if ( uid.left( 18 ) == (this->name() +QString("pick2")) ) { 272 if ( uid.left( 18 ) == (this->name() +QString("pick2")) ) {
266 mPickLineEdit = toLine; 273 mPickLineEdit = toLine;
267 UID = this->name(); 274 UID = this->name();
268 subjectLine->setText( uid.mid( 18 ) ); 275 subjectLine->setText( uid.mid( 18 ) );
269 } 276 }
270 //qDebug("ccc %s %s ", uid.latin1(), this->name()); 277 //qDebug("ccc %s %s ", uid.latin1(), this->name());
271 if ( mPickLineEdit == 0 ) { //whoami received 278 if ( mPickLineEdit == 0 ) { //whoami received
272 QString defmail = uidList[0]; 279 QString defmail = uidList[0];
273 if ( emailList.count() == 0 ) 280 if ( emailList.count() == 0 )
274 QMessageBox::information( 0, i18n( "Hint" ), 281 QMessageBox::information( 0, i18n( "Hint" ),
275 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 282 i18n( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
276 i18n( "Ok" ) ); 283 i18n( "Ok" ) );
277 if (defmail.length()!=0) { 284 if (defmail.length()!=0) {
278 fromBox->insertItem(defmail); 285 fromBox->insertItem(defmail);
279 } 286 }
280 QStringList::ConstIterator sit = emailList.begin(); 287 QStringList::ConstIterator sit = emailList.begin();
281 int pref = 0; 288 int pref = 0;
282 for (;sit!=emailList.end();++sit) { 289 for (;sit!=emailList.end();++sit) {
283 if ( (*sit)==defmail) 290 if ( (*sit)==defmail)
284 continue; 291 continue;
285 fromBox->insertItem((*sit)); 292 fromBox->insertItem((*sit));
286 } 293 }
287 senderNameEdit->setText(nameList[0]); 294 senderNameEdit->setText(nameList[0]);
288 return; 295 return;
289 } 296 }
290 QString names ; 297 QString names ;
291 QLineEdit *line = mPickLineEdit; 298 QLineEdit *line = mPickLineEdit;
292 if (UID == this->name()) 299 if (UID == this->name())
293 { 300 {
294 for ( int i = 0; i < nameList.count(); i++) 301 for ( int i = 0; i < nameList.count(); i++)
295 { 302 {
296 QString _name = nameList[i]; 303 QString _name = nameList[i];
297 QString _email = emailList[i]; 304 QString _email = emailList[i];
298 QString _uid = uidList[i]; 305 QString _uid = uidList[i];
299 if ( ! _email.isEmpty() ) { 306 if ( ! _email.isEmpty() ) {
300 if ( ! names.isEmpty() ) 307 if ( ! names.isEmpty() )
301 names+= ","; 308 names+= ",";
302 names+= "\""+_name +"\"<" +_email +">"; 309 names+= "\""+_name +"\"<" +_email +">";
303 } 310 }
304 } 311 }
305 } 312 }
306 if ( line->text().isEmpty() ) { 313 if ( line->text().isEmpty() ) {
307 line->setText( names ); 314 line->setText( names );
308 } else if ( !names.isEmpty() ) { 315 } else if ( !names.isEmpty() ) {
309 line->setText( line->text() + ", " + names ); 316 line->setText( line->text() + ", " + names );
310 } 317 }
311} 318}
312 319
313void ComposeMail::setTo( const QString & to ) 320void ComposeMail::setTo( const QString & to )
314{ 321{
315 toLine->setText( to ); 322 toLine->setText( to );
316} 323}
317 324
318void ComposeMail::setSubject( const QString & subject ) 325void ComposeMail::setSubject( const QString & subject )
319{ 326{
320 subjectLine->setText( subject ); 327 subjectLine->setText( subject );
321} 328}
322 329
323void ComposeMail::setInReplyTo( const QString & messageId ) 330void ComposeMail::setInReplyTo( const QString & messageId )
324{ 331{
325 m_replyid = messageId; 332 m_replyid = messageId;
326} 333}
327 334
328void ComposeMail::setMessage( const QString & text ) 335void ComposeMail::setMessage( const QString & text )
329{ 336{
330 message->setText( text ); 337 message->setText( text );
331} 338}
332 339
333 340
334void ComposeMail::pickAddressTo() 341void ComposeMail::pickAddressTo()
335{ 342{
336 mPickLineEdit = toLine; 343 mPickLineEdit = toLine;
337 pickAddress( ); 344 pickAddress( );
338} 345}
339 346
340void ComposeMail::pickAddressCC() 347void ComposeMail::pickAddressCC()
341{ 348{
342 mPickLineEdit = ccLine; 349 mPickLineEdit = ccLine;
343 pickAddress( ); 350 pickAddress( );
344} 351}
345 352
346void ComposeMail::pickAddressBCC() 353void ComposeMail::pickAddressBCC()
347{ 354{
348 mPickLineEdit = bccLine; 355 mPickLineEdit = bccLine;
349 pickAddress( ); 356 pickAddress( );
350} 357}
351 358
352void ComposeMail::pickAddressReply() 359void ComposeMail::pickAddressReply()
353{ 360{
354 mPickLineEdit = replyLine; 361 mPickLineEdit = replyLine;
355 pickAddress( ); 362 pickAddress( );
356} 363}
357 364
358void ComposeMail::fillValues( int current ) 365void ComposeMail::fillValues( int current )
359{ 366{
360#if 0 367#if 0
361 SMTPaccount *smtp = smtpAccounts.at( current ); 368 SMTPaccount *smtp = smtpAccounts.at( current );
362 ccLine->clear(); 369 ccLine->clear();
363 if ( smtp->getUseCC() ) { 370 if ( smtp->getUseCC() ) {
364 ccLine->setText( smtp->getCC() ); 371 ccLine->setText( smtp->getCC() );
365 } 372 }
366 bccLine->clear(); 373 bccLine->clear();
367 if ( smtp->getUseBCC() ) { 374 if ( smtp->getUseBCC() ) {
368 bccLine->setText( smtp->getBCC() ); 375 bccLine->setText( smtp->getBCC() );
369 } 376 }
370 replyLine->clear(); 377 replyLine->clear();
371 if ( smtp->getUseReply() ) { 378 if ( smtp->getUseReply() ) {
372 replyLine->setText( smtp->getReply() ); 379 replyLine->setText( smtp->getReply() );
373 } 380 }
374#endif 381#endif
375 SMTPaccount *smtp = smtpAccounts.at( current ); 382 SMTPaccount *smtp = smtpAccounts.at( current );
376 if ( smtp ) 383 if ( smtp )
377 sigMultiLine->setText( smtp->getSignature() ); 384 sigMultiLine->setText( smtp->getSignature() );
378} 385}
379 386
380void ComposeMail::slotAdjustColumns() 387void ComposeMail::slotAdjustColumns()
381{ 388{
382 int currPage = tabWidget->currentPageIndex(); 389 int currPage = tabWidget->currentPageIndex();
383 390
384 tabWidget->showPage( attachTab ); 391 tabWidget->showPage( attachTab );
385 attList->setColumnWidth( 0, attList->visibleWidth() - 80 ); 392 attList->setColumnWidth( 0, attList->visibleWidth() - 80 );
386 attList->setColumnWidth( 1, 80 ); 393 attList->setColumnWidth( 1, 80 );
387 394
388 tabWidget->setCurrentPage( currPage ); 395 tabWidget->setCurrentPage( currPage );
389} 396}
390 397
391void ComposeMail::addAttachment() 398void ComposeMail::addAttachment()
392{ 399{
393 QString lnk = KFileDialog::getOpenFileName( "", "Add Attachment", this ); 400 QString lnk = KFileDialog::getOpenFileName( "", "Add Attachment", this );
394 if ( !lnk.isEmpty() ) { 401 if ( !lnk.isEmpty() ) {
395 Attachment *att = new Attachment( lnk ); 402 Attachment *att = new Attachment( lnk );
396 (void) new AttachViewItem( attList, att ); 403 (void) new AttachViewItem( attList, att );
397 } 404 }
398} 405}
399 406
400void ComposeMail::removeAttachment() 407void ComposeMail::removeAttachment()
401{ 408{
402 if ( !attList->currentItem() ) { 409 if ( !attList->currentItem() ) {
403 QMessageBox::information( this, i18n( "Error" ), 410 QMessageBox::information( this, i18n( "Error" ),
404 i18n( "<p>Please select a File.</p>" ), 411 i18n( "<p>Please select a File.</p>" ),
405 i18n( "Ok" ) ); 412 i18n( "Ok" ) );
406 } else { 413 } else {
407 attList->takeItem( attList->currentItem() ); 414 attList->takeItem( attList->currentItem() );
408 } 415 }
409} 416}
410 417
411void ComposeMail::accept() 418void ComposeMail::accept()
412{ 419{
413 if ( smtpAccountBox->count() == 0 ) { 420 if ( smtpAccountBox->count() == 0 ) {
414 421
415 reject(); 422 reject();
416 return; 423 return;
417 } 424 }
418 425
419 if (! checkBoxLater->isChecked() ) { 426 if (! checkBoxLater->isChecked() ) {
420 int yesno = QMessageBox::warning(0,i18n("Stop editing message"), 427 int yesno = QMessageBox::warning(0,i18n("Stop editing message"),
421 i18n("Send this message?"), 428 i18n("Send this message?"),
422 i18n("Yes"), 429 i18n("Yes"),
423 i18n("Cancel")); 430 i18n("Cancel"));
424 431
425 if (yesno == 1) { 432 if (yesno == 1) {
426 return; 433 return;
427 } 434 }
428 } 435 }
429#if 0 436#if 0
430 odebug << "Sending Mail with " 437 odebug << "Sending Mail with "
431 << smtpAccounts.at( smtpAccountBox->currentItem() )->getAccountName() << oendl; 438 << smtpAccounts.at( smtpAccountBox->currentItem() )->getAccountName() << oendl;
432#endif 439#endif
433 Opie::Core::OSmartPointer<Mail> mail=new Mail; 440 Opie::Core::OSmartPointer<Mail> mail=new Mail;
434 441
435 SMTPaccount *smtp = smtpAccounts.at( smtpAccountBox->currentItem() ); 442 SMTPaccount *smtp = smtpAccounts.at( smtpAccountBox->currentItem() );
436 mail->setMail(fromBox->currentText()); 443 mail->setMail(fromBox->currentText());
437 444
438 if ( !toLine->text().isEmpty() ) { 445 if ( !toLine->text().isEmpty() ) {
439 mail->setTo( toLine->text() ); 446 mail->setTo( toLine->text() );
440 } else { 447 } else {
441 QMessageBox::warning(0,i18n("Sending mail"), 448 QMessageBox::warning(0,i18n("Sending mail"),
442 i18n("No Receiver spezified" ) ); 449 i18n("No Receiver spezified" ) );
443 return; 450 return;
444 } 451 }
445 452
446 mail->setName(senderNameEdit->text()); 453 mail->setName(senderNameEdit->text());
447 mail->setCC( ccLine->text() ); 454 mail->setCC( ccLine->text() );
448 mail->setBCC( bccLine->text() ); 455 mail->setBCC( bccLine->text() );
449 mail->setReply( replyLine->text() ); 456 mail->setReply( replyLine->text() );
450 mail->setSubject( subjectLine->text() ); 457 mail->setSubject( subjectLine->text() );
451 if (!m_replyid.isEmpty()) { 458 if (!m_replyid.isEmpty()) {
452 QStringList ids; 459 QStringList ids;
453 ids.append(m_replyid); 460 ids.append(m_replyid);
454 mail->setInreply(ids); 461 mail->setInreply(ids);
455 } 462 }
456 QString txt = message->text(); 463 QString txt = message->text();
457 if ( !sigMultiLine->text().isEmpty() ) { 464 if ( !sigMultiLine->text().isEmpty() ) {
458 txt.append( "\n--\n" ); 465 txt.append( "\n--\n" );
459 txt.append( sigMultiLine->text() ); 466 txt.append( sigMultiLine->text() );
460 } 467 }
461 mail->setMessage( txt ); 468 mail->setMessage( txt );
462 mail->setCharset (mEncoding); 469 mail->setCharset (mEncoding);
463 AttachViewItem *it = (AttachViewItem *) attList->firstChild(); 470 AttachViewItem *it = (AttachViewItem *) attList->firstChild();
464 while ( it != 0 ) { 471 while ( it != 0 ) {
465 mail->addAttachment( it->getAttachment() ); 472 mail->addAttachment( it->getAttachment() );
466 it = (AttachViewItem *) it->nextSibling(); 473 it = (AttachViewItem *) it->nextSibling();
467 } 474 }
468 475
469 SMTPwrapper wrapper( smtp ); 476 SMTPwrapper wrapper( smtp );
470 if ( wrapper.sendMail( mail,checkBoxLater->isChecked() ) ) 477 if ( wrapper.sendMail( mail,checkBoxLater->isChecked() ) )
471 setStatus( tr ("Mail sent")); 478 setStatus( tr ("Mail sent"));
472 else { 479 else {
473 setStatus( tr ("Error: Something went wrong. Nothing sent")); 480 setStatus( tr ("Error: Something went wrong. Nothing sent"));
474 return; 481 return;
475 } 482 }
476 483
477 484
478 QDialog::accept(); 485 QDialog::accept();
479} 486}
480 487
481void ComposeMail::reject() 488void ComposeMail::reject()
482{ 489{
483 //qDebug("ComposeMail::reject() "); 490 //qDebug("ComposeMail::reject() ");
484 int yesno = QMessageBox::warning(0,i18n("Store message?"), 491 int yesno = QMessageBox::warning(0,i18n("Store message?"),
485 i18n("Store message into drafts?\n"), 492 i18n("Store message into drafts?\n"),
486 i18n("Yes"), 493 i18n("Yes"),
487 i18n("No")); 494 i18n("No"));
488 495
489 //qDebug("button %d ", yesno); 496 //qDebug("button %d ", yesno);
490 if (yesno == 0) { 497 if (yesno == 0) {
491 if ( toLine->text().isEmpty() ) { 498 if ( toLine->text().isEmpty() ) {
492 QMessageBox::warning(0,i18n("Sending mail"), 499 QMessageBox::warning(0,i18n("Sending mail"),
493 i18n("No Receiver spezified" ) ); 500 i18n("No Receiver spezified" ) );
494 return; 501 return;
495 } 502 }
496 saveAsDraft(); 503 saveAsDraft();
497 } 504 }
498 if (yesno == 2) { 505 if (yesno == 2) {
499 qDebug("return "); 506 qDebug("return ");
500 return; 507 return;
501 } 508 }
502 QDialog::reject(); 509 QDialog::reject();
503} 510}
504 511
505void ComposeMail::setCharset(const QString& charset) 512void ComposeMail::setCharset(const QString& charset)
506{ 513{
507 if ( !charset.isEmpty() ) 514 if ( !charset.isEmpty() )
508 mEncoding = charset; 515 mEncoding = charset;
509 qDebug("ComposeMail::setCharset %s ", mEncoding.latin1()); 516 qDebug("ComposeMail::setCharset %s ", mEncoding.latin1());
510} 517}
511ComposeMail::~ComposeMail() 518ComposeMail::~ComposeMail()
512{ 519{
513} 520}
514 521
515void ComposeMail::reEditMail(const RecMailP&current) 522void ComposeMail::reEditMail(const RecMailP&current)
516{ 523{
517 RecMailP data = current; 524 RecMailP data = current;
518 RecBodyP body = data->Wrapper()->fetchBody(current); 525 RecBodyP body = data->Wrapper()->fetchBody(current);
519 526
520 message->setText(body->Bodytext()); 527 message->setText(body->Bodytext());
521 subjectLine->setText( data->getSubject()); 528 subjectLine->setText( data->getSubject());
522 toLine->setText(data->To().join(",")); 529 toLine->setText(data->To().join(","));
523 ccLine->setText(data->CC().join(",")); 530 ccLine->setText(data->CC().join(","));
524 bccLine->setText(data->Bcc().join(",")); 531 bccLine->setText(data->Bcc().join(","));
525 replyLine->setText(data->Replyto()); 532 replyLine->setText(data->Replyto());
526 setCharset(body->getCharset()); 533 setCharset(body->getCharset());
527} 534}
528 535
529AttachViewItem::AttachViewItem( QListView *parent, Attachment *att ) 536AttachViewItem::AttachViewItem( QListView *parent, Attachment *att )
530 : QListViewItem( parent ) 537 : QListViewItem( parent )
531{ 538{
532 attachment = att; 539 attachment = att;
533 if ( !attachment->getPixmap().isNull() ) 540 if ( !attachment->getPixmap().isNull() )
534 setPixmap( 0,attachment->getPixmap() ); 541 setPixmap( 0,attachment->getPixmap() );
535 setText( 0, att->getName().isEmpty() ? att->getFileName() : att->getName() ); 542 setText( 0, att->getName().isEmpty() ? att->getFileName() : att->getName() );
536 setText( 1, QString::number( att->getSize() ) ); 543 setText( 1, QString::number( att->getSize() ) );
537} 544}
538 545