summaryrefslogtreecommitdiffabout
authorzautrix <zautrix>2004-09-11 17:14:18 (UTC)
committer zautrix <zautrix>2004-09-11 17:14:18 (UTC)
commit438403295657bdcab9ee9e526c6a08894e876f63 (patch) (unidiff)
tree4e05a8527364e3b87de4059dc936f1687ddc08e8
parent06be094df4e34cc41db113d8c0e78eccde5365b5 (diff)
downloadkdepimpi-438403295657bdcab9ee9e526c6a08894e876f63.zip
kdepimpi-438403295657bdcab9ee9e526c6a08894e876f63.tar.gz
kdepimpi-438403295657bdcab9ee9e526c6a08894e876f63.tar.bz2
small fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/composemail.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kmicromail/composemail.cpp b/kmicromail/composemail.cpp
index 9efa932..9b799b3 100644
--- a/kmicromail/composemail.cpp
+++ b/kmicromail/composemail.cpp
@@ -50,114 +50,114 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m
50 KConfig config( locateLocal("config", "kabcrc") ); 50 KConfig config( locateLocal("config", "kabcrc") );
51 config.setGroup( "General" ); 51 config.setGroup( "General" );
52 QString whoami_uid = config.readEntry( "WhoAmI" ); 52 QString whoami_uid = config.readEntry( "WhoAmI" );
53 53
54 if ( whoami_uid.isEmpty() ) { 54 if ( whoami_uid.isEmpty() ) {
55 QMessageBox::information( 0, tr( "Hint" ), 55 QMessageBox::information( 0, tr( "Hint" ),
56 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 56 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
57 tr( "Ok" ) ); 57 tr( "Ok" ) );
58 58
59 } else 59 } else
60 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid); 60 ExternalAppHandler::instance()->requestDetailsFromKAPI("", "sendbacklist", whoami_uid);
61 61
62 62
63#ifdef DESKTOP_VERSION 63#ifdef DESKTOP_VERSION
64 KABC::Addressee con = KABC::StdAddressBook::self()->whoAmI( ); 64 KABC::Addressee con = KABC::StdAddressBook::self()->whoAmI( );
65 QStringList mails = con.emails(); 65 QStringList mails = con.emails();
66 QString defmail = con.preferredEmail(); 66 QString defmail = con.preferredEmail();
67 if ( mails.count() == 0) 67 if ( mails.count() == 0)
68 QMessageBox::information( 0, tr( "Hint" ), 68 QMessageBox::information( 0, tr( "Hint" ),
69 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ), 69 tr( "Please apply\n\"Set Who Am I\"\nin KA/Pi to get the from\nfield automatically filled out!\n" ),
70 tr( "Ok" ) ); 70 tr( "Ok" ) );
71 if (defmail.length()!=0) { 71 if (defmail.length()!=0) {
72 fromBox->insertItem(defmail); 72 fromBox->insertItem(defmail);
73 } 73 }
74 QStringList::ConstIterator sit = mails.begin(); 74 QStringList::ConstIterator sit = mails.begin();
75 for (;sit!=mails.end();++sit) { 75 for (;sit!=mails.end();++sit) {
76 if ( (*sit)==defmail) 76 if ( (*sit)==defmail)
77 continue; 77 continue;
78 fromBox->insertItem((*sit)); 78 fromBox->insertItem((*sit));
79 } 79 }
80 senderNameEdit->setText(con.formattedName()); 80 senderNameEdit->setText(con.formattedName());
81#endif 81#endif
82 Config cfg( "mail" ); 82 Config cfg( "mail" );
83 cfg.setGroup( "Compose" ); 83 cfg.setGroup( "Compose" );
84 checkBoxLater->setChecked( cfg.readBoolEntry( "sendLater", false ) ); 84 checkBoxLater->setChecked( cfg.readBoolEntry( "sendLater", false ) );
85 85
86 attList->addColumn( tr( "Name" ) ); 86 attList->addColumn( tr( "Name" ) );
87 attList->addColumn( tr( "Size" ) ); 87 attList->addColumn( tr( "Size" ) );
88 QList<Account> accounts = settings->getAccounts(); 88 QList<Account> accounts = settings->getAccounts();
89 89
90 Account *it; 90 Account *it;
91 for ( it = accounts.first(); it; it = accounts.next() ) { 91 for ( it = accounts.first(); it; it = accounts.next() ) {
92 if ( it->getType()==MAILLIB::A_SMTP ) { 92 if ( it->getType()==MAILLIB::A_SMTP ) {
93 SMTPaccount *smtp = static_cast<SMTPaccount *>(it); 93 SMTPaccount *smtp = static_cast<SMTPaccount *>(it);
94 smtpAccountBox->insertItem( smtp->getAccountName() ); 94 smtpAccountBox->insertItem( smtp->getAccountName() );
95 smtpAccounts.append( smtp ); 95 smtpAccounts.append( smtp );
96 } 96 }
97 } 97 }
98 if ( smtpAccounts.count() > 0 ) {
99 fillValues( smtpAccountBox->currentItem() );
100 } else {
101 QMessageBox::information( 0, tr( "Problem" ),
102 tr( "Please create an SMTP account first.\nThe SMTP is needed for sending mail.\n" ),
103 tr( "Ok" ) );
104 return;
105 }
106 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) );
107 connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) ); 98 connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) );
108 connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) ); 99 connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) );
109 connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) ); 100 connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) );
110 connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) ); 101 connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) );
111 connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) ); 102 connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) );
112 connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) ); 103 connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) );
113 connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) ); 104 connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) );
114 mMail = 0; 105 mMail = 0;
115 warnAttach = true; 106 warnAttach = true;
107 if ( smtpAccounts.count() > 0 ) {
108 fillValues( smtpAccountBox->currentItem() );
109 } else {
110 QMessageBox::information( 0, tr( "Problem" ),
111 tr( "Please create an SMTP account first.\nThe SMTP is needed for sending mail.\n" ),
112 tr( "Ok" ) );
113 return;
114 }
115 connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) );
116 116
117} 117}
118 118
119 119
120 120
121void ComposeMail::saveAsDraft() 121void ComposeMail::saveAsDraft()
122{ 122{
123 123
124 Opie::Core::OSmartPointer<Mail> mail= new Mail(); 124 Opie::Core::OSmartPointer<Mail> mail= new Mail();
125 mail->setMail(fromBox->currentText()); 125 mail->setMail(fromBox->currentText());
126 mail->setTo( toLine->text() ); 126 mail->setTo( toLine->text() );
127 mail->setName(senderNameEdit->text()); 127 mail->setName(senderNameEdit->text());
128 mail->setCC( ccLine->text() ); 128 mail->setCC( ccLine->text() );
129 mail->setBCC( bccLine->text() ); 129 mail->setBCC( bccLine->text() );
130 mail->setReply( replyLine->text() ); 130 mail->setReply( replyLine->text() );
131 mail->setSubject( subjectLine->text() ); 131 mail->setSubject( subjectLine->text() );
132 if (!m_replyid.isEmpty()) { 132 if (!m_replyid.isEmpty()) {
133 QStringList ids; 133 QStringList ids;
134 ids.append(m_replyid); 134 ids.append(m_replyid);
135 mail->setInreply(ids); 135 mail->setInreply(ids);
136 } 136 }
137 QString txt = message->text(); 137 QString txt = message->text();
138 if ( !sigMultiLine->text().isEmpty() ) { 138 if ( !sigMultiLine->text().isEmpty() ) {
139 txt.append( "\n--\n" ); 139 txt.append( "\n--\n" );
140 txt.append( sigMultiLine->text() ); 140 txt.append( sigMultiLine->text() );
141 } 141 }
142 mail->setMessage( txt ); 142 mail->setMessage( txt );
143 143
144 /* only use the default drafts folder name! */ 144 /* only use the default drafts folder name! */
145 Storemail wrapper(AbstractMail::draftFolder()); 145 Storemail wrapper(AbstractMail::draftFolder());
146 wrapper.storeMail(mail); 146 wrapper.storeMail(mail);
147 147
148 AttachViewItem *it = (AttachViewItem *) attList->firstChild(); 148 AttachViewItem *it = (AttachViewItem *) attList->firstChild();
149 /* attachments we will ignore! */ 149 /* attachments we will ignore! */
150 if ( it != 0 ) { 150 if ( it != 0 ) {
151 if ( warnAttach ) 151 if ( warnAttach )
152 QMessageBox::warning(0,tr("Store message"), 152 QMessageBox::warning(0,tr("Store message"),
153 tr("<center>Attachments will not be stored in \"Draft\" folder</center>")); 153 tr("<center>Attachments will not be stored in \"Draft\" folder</center>"));
154 warnAttach = false; 154 warnAttach = false;
155 } 155 }
156 setStatus( tr("Mail saved as draft!") ); 156 setStatus( tr("Mail saved as draft!") );
157} 157}
158void ComposeMail::clearStatus() 158void ComposeMail::clearStatus()
159{ 159{
160 topLevelWidget()->setCaption( tr("Compose mail") ); 160 topLevelWidget()->setCaption( tr("Compose mail") );
161} 161}
162void ComposeMail::setStatus( QString status ) 162void ComposeMail::setStatus( QString status )
163{ 163{