summaryrefslogtreecommitdiff
authorconber <conber>2002-06-20 17:19:56 (UTC)
committer conber <conber>2002-06-20 17:19:56 (UTC)
commit0996b7f1bcbdb05db00eadb0cdd60b2066cdd899 (patch) (unidiff)
treed2b3d8dc734c5957bb4ed86dbca80ce8e975a5e6
parente0eec50bf3992d95d7060af74fa98e9630abfa4e (diff)
downloadopie-0996b7f1bcbdb05db00eadb0cdd60b2066cdd899.zip
opie-0996b7f1bcbdb05db00eadb0cdd60b2066cdd899.tar.gz
opie-0996b7f1bcbdb05db00eadb0cdd60b2066cdd899.tar.bz2
little usability improvement in accounteditor
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/mail2/accounteditor.cpp15
-rw-r--r--noncore/unsupported/mail2/accounteditor.h1
-rw-r--r--noncore/unsupported/mail2/accounteditorbase.ui65
-rw-r--r--pics/mail/showpasswd.pngbin0 -> 217 bytes
4 files changed, 60 insertions, 21 deletions
diff --git a/noncore/unsupported/mail2/accounteditor.cpp b/noncore/unsupported/mail2/accounteditor.cpp
index 8230a69..5d80693 100644
--- a/noncore/unsupported/mail2/accounteditor.cpp
+++ b/noncore/unsupported/mail2/accounteditor.cpp
@@ -1,82 +1,97 @@
1#include <qmultilineedit.h> 1#include <qmultilineedit.h>
2#include <qbuttongroup.h> 2#include <qbuttongroup.h>
3#include <qradiobutton.h> 3#include <qradiobutton.h>
4#include <qmessagebox.h> 4#include <qmessagebox.h>
5#include <qtoolbutton.h>
5#include <qtabwidget.h> 6#include <qtabwidget.h>
6#include <qlineedit.h> 7#include <qlineedit.h>
7#include <qcheckbox.h> 8#include <qcheckbox.h>
8 9
10#include <qpe/resource.h>
11
9#include "accounteditor.h" 12#include "accounteditor.h"
10#include "miscfunctions.h" 13#include "miscfunctions.h"
11 14
12AccountEditor::AccountEditor(Account account, QWidget *parent, const char *name, bool modal, WFlags fl) 15AccountEditor::AccountEditor(Account account, QWidget *parent, const char *name, bool modal, WFlags fl)
13 : AccountEditorBase(parent, name, modal, fl), _account(account) 16 : AccountEditorBase(parent, name, modal, fl), _account(account)
14{ 17{
15 TabWidget2->removePage(sslTab); 18 TabWidget2->removePage(sslTab);
19 showPasswd->setPixmap(Resource::loadPixmap("mail/showpasswd"));
20
21 connect(showPasswd, SIGNAL(toggled(bool)),
22 SLOT(showPasswdToggled(bool)));
16 23
17 fillValues(); 24 fillValues();
18} 25}
19 26
27void AccountEditor::showPasswdToggled(bool toggled)
28{
29 if (toggled)
30 pass->setEchoMode(QLineEdit::Normal);
31 else
32 pass->setEchoMode(QLineEdit::Password);
33}
34
20void AccountEditor::accept() 35void AccountEditor::accept()
21{ 36{
22 int numLf = 0; 37 int numLf = 0;
23 for (unsigned int i = 0; i <= signature->text().length(); i++) { 38 for (unsigned int i = 0; i <= signature->text().length(); i++) {
24 if (signature->text()[i] == '\n') numLf++; 39 if (signature->text()[i] == '\n') numLf++;
25 } 40 }
26 if (numLf >= 4) { 41 if (numLf >= 4) {
27 int ret = QMessageBox::warning(this, tr("Warning"), tr("<p>Your signature is longer than 4 lines. This is considered inpolite by many people. You should shorten your signature.</p>"), tr("Change"), tr("Continue")); 42 int ret = QMessageBox::warning(this, tr("Warning"), tr("<p>Your signature is longer than 4 lines. This is considered inpolite by many people. You should shorten your signature.</p>"), tr("Change"), tr("Continue"));
28 if (ret == 0) return; 43 if (ret == 0) return;
29 } 44 }
30 45
31 _account.setAccountName(_account.accountName() ? _account.accountName() : MiscFunctions::uniqueString()); 46 _account.setAccountName(_account.accountName() ? _account.accountName() : MiscFunctions::uniqueString());
32 _account.setRealName(realname->text()); 47 _account.setRealName(realname->text());
33 _account.setEmail(email->text()); 48 _account.setEmail(email->text());
34 _account.setOrg(org->text()); 49 _account.setOrg(org->text());
35 _account.setImapServer(imapServer->text()); 50 _account.setImapServer(imapServer->text());
36 _account.setImapPort(imapPort->text()); 51 _account.setImapPort(imapPort->text());
37 _account.setSmtpServer(smtpServer->text()); 52 _account.setSmtpServer(smtpServer->text());
38 _account.setSmtpPort(smtpPort->text()); 53 _account.setSmtpPort(smtpPort->text());
39 _account.setUser(user->text()); 54 _account.setUser(user->text());
40 _account.setPass(pass->text()); 55 _account.setPass(pass->text());
41 _account.setSmtpSsl(smtpssl->isChecked()); 56 _account.setSmtpSsl(smtpssl->isChecked());
42 _account.setSmtpSslPort(smtpsPort->text()); 57 _account.setSmtpSslPort(smtpsPort->text());
43 _account.setImapSsl(imapssl->isChecked()); 58 _account.setImapSsl(imapssl->isChecked());
44 _account.setImapSslPort(imapsPort->text()); 59 _account.setImapSslPort(imapsPort->text());
45 _account.setDefaultCc(addCc->isChecked()); 60 _account.setDefaultCc(addCc->isChecked());
46 _account.setDefaultBcc(addBcc->isChecked()); 61 _account.setDefaultBcc(addBcc->isChecked());
47 _account.setDefaultReplyTo(addReplyTo->isChecked()); 62 _account.setDefaultReplyTo(addReplyTo->isChecked());
48 _account.setCc(cc->text()); 63 _account.setCc(cc->text());
49 _account.setBcc(bcc->text()); 64 _account.setBcc(bcc->text());
50 _account.setReplyTo(replyTo->text()); 65 _account.setReplyTo(replyTo->text());
51 _account.setSignature(signature->text()); 66 _account.setSignature(signature->text());
52 67
53 QDialog::accept(); 68 QDialog::accept();
54} 69}
55 70
56void AccountEditor::fillValues() 71void AccountEditor::fillValues()
57{ 72{
58 realname->setText(_account.realName()); 73 realname->setText(_account.realName());
59 email->setText(_account.email()); 74 email->setText(_account.email());
60 org->setText(_account.org()); 75 org->setText(_account.org());
61 imapServer->setText(_account.imapServer()); 76 imapServer->setText(_account.imapServer());
62 imapPort->setText(!_account.imapPort().isEmpty() ? _account.imapPort() : QString("143")); 77 imapPort->setText(!_account.imapPort().isEmpty() ? _account.imapPort() : QString("143"));
63 smtpServer->setText(_account.smtpServer()); 78 smtpServer->setText(_account.smtpServer());
64 smtpPort->setText(!_account.smtpPort().isEmpty() ? _account.smtpPort() : QString("25")); 79 smtpPort->setText(!_account.smtpPort().isEmpty() ? _account.smtpPort() : QString("25"));
65 user->setText(_account.user()); 80 user->setText(_account.user());
66 pass->setText(_account.pass()); 81 pass->setText(_account.pass());
67 smtpssl->setChecked(_account.smtpSsl()); 82 smtpssl->setChecked(_account.smtpSsl());
68 smtpsPort->setText(_account.smtpSslPort()); 83 smtpsPort->setText(_account.smtpSslPort());
69 imapssl->setChecked(_account.imapSsl()); 84 imapssl->setChecked(_account.imapSsl());
70 imapsPort->setText(!_account.imapSslPort().isEmpty() ? _account.imapSslPort() : QString("993")); 85 imapsPort->setText(!_account.imapSslPort().isEmpty() ? _account.imapSslPort() : QString("993"));
71 addCc->setChecked(_account.defaultCc()); 86 addCc->setChecked(_account.defaultCc());
72 if (_account.defaultCc()) cc->setEnabled(true); 87 if (_account.defaultCc()) cc->setEnabled(true);
73 addBcc->setChecked(_account.defaultBcc()); 88 addBcc->setChecked(_account.defaultBcc());
74 if (_account.defaultBcc()) bcc->setEnabled(true); 89 if (_account.defaultBcc()) bcc->setEnabled(true);
75 addReplyTo->setChecked(_account.defaultReplyTo()); 90 addReplyTo->setChecked(_account.defaultReplyTo());
76 if (_account.defaultReplyTo()) replyTo->setEnabled(true); 91 if (_account.defaultReplyTo()) replyTo->setEnabled(true);
77 cc->setText(_account.cc()); 92 cc->setText(_account.cc());
78 bcc->setText(_account.bcc()); 93 bcc->setText(_account.bcc());
79 replyTo->setText(_account.replyTo()); 94 replyTo->setText(_account.replyTo());
80 signature->setText(_account.signature()); 95 signature->setText(_account.signature());
81} 96}
82 97
diff --git a/noncore/unsupported/mail2/accounteditor.h b/noncore/unsupported/mail2/accounteditor.h
index 4a2bda3..9acca2d 100644
--- a/noncore/unsupported/mail2/accounteditor.h
+++ b/noncore/unsupported/mail2/accounteditor.h
@@ -1,24 +1,25 @@
1#ifndef ACCOUNTEDITOR_H 1#ifndef ACCOUNTEDITOR_H
2#define ACCOUNTEDITOR_H 2#define ACCOUNTEDITOR_H
3 3
4#include "accounteditorbase.h" 4#include "accounteditorbase.h"
5#include "configfile.h" 5#include "configfile.h"
6 6
7class AccountEditor : public AccountEditorBase 7class AccountEditor : public AccountEditorBase
8{ 8{
9 Q_OBJECT 9 Q_OBJECT
10 10
11public: 11public:
12 AccountEditor(Account account = Account(), QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0); 12 AccountEditor(Account account = Account(), QWidget *parent = 0, const char *name = 0, bool modal = false, WFlags fl = 0);
13 13
14 Account _account; 14 Account _account;
15 15
16protected slots: 16protected slots:
17 void accept(); 17 void accept();
18 void showPasswdToggled(bool toggled);
18 19
19protected: 20protected:
20 void fillValues(); 21 void fillValues();
21 22
22}; 23};
23 24
24#endif 25#endif
diff --git a/noncore/unsupported/mail2/accounteditorbase.ui b/noncore/unsupported/mail2/accounteditorbase.ui
index fe9f2a4..8341e72 100644
--- a/noncore/unsupported/mail2/accounteditorbase.ui
+++ b/noncore/unsupported/mail2/accounteditorbase.ui
@@ -1,751 +1,774 @@
1<!DOCTYPE UI><UI> 1<!DOCTYPE UI><UI>
2<class>AccountEditorBase</class> 2<class>AccountEditorBase</class>
3<widget> 3<widget>
4 <class>QDialog</class> 4 <class>QDialog</class>
5 <property stdset="1"> 5 <property stdset="1">
6 <name>name</name> 6 <name>name</name>
7 <cstring>AccountEditorBase</cstring> 7 <cstring>AccountEditorBase</cstring>
8 </property> 8 </property>
9 <property stdset="1"> 9 <property stdset="1">
10 <name>geometry</name> 10 <name>geometry</name>
11 <rect> 11 <rect>
12 <x>0</x> 12 <x>0</x>
13 <y>0</y> 13 <y>0</y>
14 <width>243</width> 14 <width>239</width>
15 <height>320</height> 15 <height>320</height>
16 </rect> 16 </rect>
17 </property> 17 </property>
18 <property stdset="1"> 18 <property stdset="1">
19 <name>caption</name> 19 <name>caption</name>
20 <string>Account Editor</string> 20 <string>Account Editor</string>
21 </property> 21 </property>
22 <property> 22 <property>
23 <name>layoutMargin</name> 23 <name>layoutMargin</name>
24 </property> 24 </property>
25 <property> 25 <property>
26 <name>layoutSpacing</name> 26 <name>layoutSpacing</name>
27 </property> 27 </property>
28 <grid> 28 <grid>
29 <property stdset="1"> 29 <property stdset="1">
30 <name>margin</name> 30 <name>margin</name>
31 <number>0</number> 31 <number>0</number>
32 </property> 32 </property>
33 <property stdset="1"> 33 <property stdset="1">
34 <name>spacing</name> 34 <name>spacing</name>
35 <number>0</number> 35 <number>0</number>
36 </property> 36 </property>
37 <widget row="0" column="0" > 37 <widget row="0" column="0" >
38 <class>QTabWidget</class> 38 <class>QTabWidget</class>
39 <property stdset="1"> 39 <property stdset="1">
40 <name>name</name> 40 <name>name</name>
41 <cstring>TabWidget2</cstring> 41 <cstring>TabWidget2</cstring>
42 </property> 42 </property>
43 <property> 43 <property>
44 <name>layoutMargin</name> 44 <name>layoutMargin</name>
45 </property> 45 </property>
46 <property> 46 <property>
47 <name>layoutSpacing</name> 47 <name>layoutSpacing</name>
48 </property> 48 </property>
49 <widget> 49 <widget>
50 <class>QWidget</class> 50 <class>QWidget</class>
51 <property stdset="1"> 51 <property stdset="1">
52 <name>name</name> 52 <name>name</name>
53 <cstring>tab</cstring> 53 <cstring>tab</cstring>
54 </property> 54 </property>
55 <attribute> 55 <attribute>
56 <name>title</name> 56 <name>title</name>
57 <string>Server</string> 57 <string>Server</string>
58 </attribute> 58 </attribute>
59 <grid> 59 <grid>
60 <property stdset="1"> 60 <property stdset="1">
61 <name>margin</name> 61 <name>margin</name>
62 <number>4</number> 62 <number>4</number>
63 </property> 63 </property>
64 <property stdset="1"> 64 <property stdset="1">
65 <name>spacing</name> 65 <name>spacing</name>
66 <number>3</number> 66 <number>3</number>
67 </property> 67 </property>
68 <widget row="0" column="0" > 68 <widget row="1" column="1" rowspan="1" colspan="2" >
69 <class>QLabel</class>
70 <property stdset="1">
71 <name>name</name>
72 <cstring>TextLabel2</cstring>
73 </property>
74 <property stdset="1">
75 <name>text</name>
76 <string>&lt;b&gt;IMAP:</string>
77 </property>
78 </widget>
79 <widget row="0" column="1" >
80 <class>QLineEdit</class> 69 <class>QLineEdit</class>
81 <property stdset="1"> 70 <property stdset="1">
82 <name>name</name> 71 <name>name</name>
83 <cstring>imapServer</cstring> 72 <cstring>imapPort</cstring>
84 </property> 73 </property>
85 </widget> 74 </widget>
86 <widget row="1" column="0" > 75 <widget row="1" column="0" >
87 <class>QLabel</class> 76 <class>QLabel</class>
88 <property stdset="1"> 77 <property stdset="1">
89 <name>name</name> 78 <name>name</name>
90 <cstring>TextLabel3</cstring> 79 <cstring>TextLabel3</cstring>
91 </property> 80 </property>
92 <property stdset="1"> 81 <property stdset="1">
93 <name>text</name> 82 <name>text</name>
94 <string>&lt;b&gt;Port:</string> 83 <string>&lt;b&gt;Port:</string>
95 </property> 84 </property>
96 </widget> 85 </widget>
97 <widget row="1" column="1" > 86 <widget row="0" column="0" >
87 <class>QLabel</class>
88 <property stdset="1">
89 <name>name</name>
90 <cstring>TextLabel2</cstring>
91 </property>
92 <property stdset="1">
93 <name>text</name>
94 <string>&lt;b&gt;IMAP:</string>
95 </property>
96 </widget>
97 <widget row="0" column="1" rowspan="1" colspan="2" >
98 <class>QLineEdit</class> 98 <class>QLineEdit</class>
99 <property stdset="1"> 99 <property stdset="1">
100 <name>name</name> 100 <name>name</name>
101 <cstring>imapPort</cstring> 101 <cstring>imapServer</cstring>
102 </property> 102 </property>
103 </widget> 103 </widget>
104 <spacer row="8" column="1" > 104 <spacer row="8" column="1" >
105 <property> 105 <property>
106 <name>name</name> 106 <name>name</name>
107 <cstring>Spacer2</cstring> 107 <cstring>Spacer2</cstring>
108 </property> 108 </property>
109 <property stdset="1"> 109 <property stdset="1">
110 <name>orientation</name> 110 <name>orientation</name>
111 <enum>Vertical</enum> 111 <enum>Vertical</enum>
112 </property> 112 </property>
113 <property stdset="1"> 113 <property stdset="1">
114 <name>sizeType</name> 114 <name>sizeType</name>
115 <enum>Expanding</enum> 115 <enum>Expanding</enum>
116 </property> 116 </property>
117 <property> 117 <property>
118 <name>sizeHint</name> 118 <name>sizeHint</name>
119 <size> 119 <size>
120 <width>20</width> 120 <width>20</width>
121 <height>20</height> 121 <height>20</height>
122 </size> 122 </size>
123 </property> 123 </property>
124 </spacer> 124 </spacer>
125 <widget row="7" column="1" > 125 <widget row="4" column="2" >
126 <class>QToolButton</class>
127 <property stdset="1">
128 <name>name</name>
129 <cstring>showPasswd</cstring>
130 </property>
131 <property stdset="1">
132 <name>text</name>
133 <string>[--]</string>
134 </property>
135 <property stdset="1">
136 <name>pixmap</name>
137 <pixmap></pixmap>
138 </property>
139 <property stdset="1">
140 <name>toggleButton</name>
141 <bool>true</bool>
142 </property>
143 <property stdset="1">
144 <name>toggleButton</name>
145 <bool>true</bool>
146 </property>
147 </widget>
148 <widget row="7" column="1" rowspan="1" colspan="2" >
126 <class>QLineEdit</class> 149 <class>QLineEdit</class>
127 <property stdset="1"> 150 <property stdset="1">
128 <name>name</name> 151 <name>name</name>
129 <cstring>smtpPort</cstring> 152 <cstring>smtpPort</cstring>
130 </property> 153 </property>
131 </widget> 154 </widget>
132 <widget row="6" column="1" > 155 <widget row="6" column="1" rowspan="1" colspan="2" >
133 <class>QLineEdit</class> 156 <class>QLineEdit</class>
134 <property stdset="1"> 157 <property stdset="1">
135 <name>name</name> 158 <name>name</name>
136 <cstring>smtpServer</cstring> 159 <cstring>smtpServer</cstring>
137 </property> 160 </property>
138 </widget> 161 </widget>
139 <widget row="6" column="0" > 162 <widget row="6" column="0" >
140 <class>QLabel</class> 163 <class>QLabel</class>
141 <property stdset="1"> 164 <property stdset="1">
142 <name>name</name> 165 <name>name</name>
143 <cstring>TextLabel6</cstring> 166 <cstring>TextLabel6</cstring>
144 </property> 167 </property>
145 <property stdset="1"> 168 <property stdset="1">
146 <name>text</name> 169 <name>text</name>
147 <string>&lt;b&gt;SMTP:</string> 170 <string>&lt;b&gt;SMTP:</string>
148 </property> 171 </property>
149 </widget> 172 </widget>
150 <widget row="7" column="0" > 173 <widget row="7" column="0" >
151 <class>QLabel</class> 174 <class>QLabel</class>
152 <property stdset="1"> 175 <property stdset="1">
153 <name>name</name> 176 <name>name</name>
154 <cstring>TextLabel7</cstring> 177 <cstring>TextLabel7</cstring>
155 </property> 178 </property>
156 <property stdset="1"> 179 <property stdset="1">
157 <name>text</name> 180 <name>text</name>
158 <string>&lt;b&gt;Port:</string> 181 <string>&lt;b&gt;Port:</string>
159 </property> 182 </property>
160 </widget> 183 </widget>
161 <widget row="3" column="0" > 184 <widget row="3" column="0" >
162 <class>QLabel</class> 185 <class>QLabel</class>
163 <property stdset="1"> 186 <property stdset="1">
164 <name>name</name> 187 <name>name</name>
165 <cstring>TextLabel4</cstring> 188 <cstring>TextLabel4</cstring>
166 </property> 189 </property>
167 <property stdset="1"> 190 <property stdset="1">
168 <name>text</name> 191 <name>text</name>
169 <string>&lt;b&gt;User:</string> 192 <string>&lt;b&gt;User:</string>
170 </property> 193 </property>
171 </widget> 194 </widget>
172 <widget row="4" column="0" > 195 <widget row="4" column="0" >
173 <class>QLabel</class> 196 <class>QLabel</class>
174 <property stdset="1"> 197 <property stdset="1">
175 <name>name</name> 198 <name>name</name>
176 <cstring>TextLabel5</cstring> 199 <cstring>TextLabel5</cstring>
177 </property> 200 </property>
178 <property stdset="1"> 201 <property stdset="1">
179 <name>text</name> 202 <name>text</name>
180 <string>&lt;b&gt;Pass:</string> 203 <string>&lt;b&gt;Pass:</string>
181 </property> 204 </property>
182 </widget> 205 </widget>
183 <widget row="4" column="1" > 206 <widget row="4" column="1" >
184 <class>QLineEdit</class> 207 <class>QLineEdit</class>
185 <property stdset="1"> 208 <property stdset="1">
186 <name>name</name> 209 <name>name</name>
187 <cstring>pass</cstring> 210 <cstring>pass</cstring>
188 </property> 211 </property>
189 <property stdset="1"> 212 <property stdset="1">
190 <name>echoMode</name> 213 <name>echoMode</name>
191 <enum>Password</enum> 214 <enum>Password</enum>
192 </property> 215 </property>
193 </widget> 216 </widget>
194 <widget row="3" column="1" > 217 <widget row="3" column="1" rowspan="1" colspan="2" >
195 <class>QLineEdit</class> 218 <class>QLineEdit</class>
196 <property stdset="1"> 219 <property stdset="1">
197 <name>name</name> 220 <name>name</name>
198 <cstring>user</cstring> 221 <cstring>user</cstring>
199 </property> 222 </property>
200 </widget> 223 </widget>
201 <widget row="2" column="0" rowspan="1" colspan="2" > 224 <widget row="2" column="0" rowspan="1" colspan="3" >
202 <class>Line</class> 225 <class>Line</class>
203 <property stdset="1"> 226 <property stdset="1">
204 <name>name</name> 227 <name>name</name>
205 <cstring>Line1</cstring> 228 <cstring>Line1</cstring>
206 </property> 229 </property>
207 <property stdset="1"> 230 <property stdset="1">
208 <name>orientation</name> 231 <name>orientation</name>
209 <enum>Horizontal</enum> 232 <enum>Horizontal</enum>
210 </property> 233 </property>
211 </widget> 234 </widget>
212 <widget row="5" column="0" rowspan="1" colspan="2" > 235 <widget row="5" column="0" rowspan="1" colspan="3" >
213 <class>Line</class> 236 <class>Line</class>
214 <property stdset="1"> 237 <property stdset="1">
215 <name>name</name> 238 <name>name</name>
216 <cstring>Line2</cstring> 239 <cstring>Line2</cstring>
217 </property> 240 </property>
218 <property stdset="1"> 241 <property stdset="1">
219 <name>orientation</name> 242 <name>orientation</name>
220 <enum>Horizontal</enum> 243 <enum>Horizontal</enum>
221 </property> 244 </property>
222 </widget> 245 </widget>
223 </grid> 246 </grid>
224 </widget> 247 </widget>
225 <widget> 248 <widget>
226 <class>QWidget</class> 249 <class>QWidget</class>
227 <property stdset="1"> 250 <property stdset="1">
228 <name>name</name> 251 <name>name</name>
229 <cstring>tab</cstring> 252 <cstring>tab</cstring>
230 </property> 253 </property>
231 <attribute> 254 <attribute>
232 <name>title</name> 255 <name>title</name>
233 <string>Identity</string> 256 <string>Identity</string>
234 </attribute> 257 </attribute>
235 <grid> 258 <grid>
236 <property stdset="1"> 259 <property stdset="1">
237 <name>margin</name> 260 <name>margin</name>
238 <number>4</number> 261 <number>4</number>
239 </property> 262 </property>
240 <property stdset="1"> 263 <property stdset="1">
241 <name>spacing</name> 264 <name>spacing</name>
242 <number>3</number> 265 <number>3</number>
243 </property> 266 </property>
244 <widget row="0" column="0" > 267 <widget row="0" column="0" >
245 <class>QLabel</class> 268 <class>QLabel</class>
246 <property stdset="1"> 269 <property stdset="1">
247 <name>name</name> 270 <name>name</name>
248 <cstring>TextLabel8</cstring> 271 <cstring>TextLabel8</cstring>
249 </property> 272 </property>
250 <property stdset="1"> 273 <property stdset="1">
251 <name>text</name> 274 <name>text</name>
252 <string>&lt;b&gt;Name:</string> 275 <string>&lt;b&gt;Name:</string>
253 </property> 276 </property>
254 </widget> 277 </widget>
255 <widget row="0" column="1" > 278 <widget row="0" column="1" >
256 <class>QLineEdit</class> 279 <class>QLineEdit</class>
257 <property stdset="1"> 280 <property stdset="1">
258 <name>name</name> 281 <name>name</name>
259 <cstring>realname</cstring> 282 <cstring>realname</cstring>
260 </property> 283 </property>
261 </widget> 284 </widget>
262 <widget row="1" column="1" > 285 <widget row="1" column="1" >
263 <class>QLineEdit</class> 286 <class>QLineEdit</class>
264 <property stdset="1"> 287 <property stdset="1">
265 <name>name</name> 288 <name>name</name>
266 <cstring>email</cstring> 289 <cstring>email</cstring>
267 </property> 290 </property>
268 </widget> 291 </widget>
269 <widget row="1" column="0" > 292 <widget row="1" column="0" >
270 <class>QLabel</class> 293 <class>QLabel</class>
271 <property stdset="1"> 294 <property stdset="1">
272 <name>name</name> 295 <name>name</name>
273 <cstring>TextLabel9</cstring> 296 <cstring>TextLabel9</cstring>
274 </property> 297 </property>
275 <property stdset="1"> 298 <property stdset="1">
276 <name>text</name> 299 <name>text</name>
277 <string>&lt;b&gt;E-Mail:</string> 300 <string>&lt;b&gt;E-Mail:</string>
278 </property> 301 </property>
279 </widget> 302 </widget>
280 <widget row="2" column="0" > 303 <widget row="2" column="0" >
281 <class>QLabel</class> 304 <class>QLabel</class>
282 <property stdset="1"> 305 <property stdset="1">
283 <name>name</name> 306 <name>name</name>
284 <cstring>TextLabel10</cstring> 307 <cstring>TextLabel10</cstring>
285 </property> 308 </property>
286 <property stdset="1"> 309 <property stdset="1">
287 <name>text</name> 310 <name>text</name>
288 <string>&lt;b&gt;Org:</string> 311 <string>&lt;b&gt;Org:</string>
289 </property> 312 </property>
290 </widget> 313 </widget>
291 <widget row="2" column="1" > 314 <widget row="2" column="1" >
292 <class>QLineEdit</class> 315 <class>QLineEdit</class>
293 <property stdset="1"> 316 <property stdset="1">
294 <name>name</name> 317 <name>name</name>
295 <cstring>org</cstring> 318 <cstring>org</cstring>
296 </property> 319 </property>
297 </widget> 320 </widget>
298 <spacer row="3" column="1" > 321 <spacer row="3" column="1" >
299 <property> 322 <property>
300 <name>name</name> 323 <name>name</name>
301 <cstring>Spacer1</cstring> 324 <cstring>Spacer1</cstring>
302 </property> 325 </property>
303 <property stdset="1"> 326 <property stdset="1">
304 <name>orientation</name> 327 <name>orientation</name>
305 <enum>Vertical</enum> 328 <enum>Vertical</enum>
306 </property> 329 </property>
307 <property stdset="1"> 330 <property stdset="1">
308 <name>sizeType</name> 331 <name>sizeType</name>
309 <enum>Expanding</enum> 332 <enum>Expanding</enum>
310 </property> 333 </property>
311 <property> 334 <property>
312 <name>sizeHint</name> 335 <name>sizeHint</name>
313 <size> 336 <size>
314 <width>20</width> 337 <width>20</width>
315 <height>20</height> 338 <height>20</height>
316 </size> 339 </size>
317 </property> 340 </property>
318 </spacer> 341 </spacer>
319 </grid> 342 </grid>
320 </widget> 343 </widget>
321 <widget> 344 <widget>
322 <class>QWidget</class> 345 <class>QWidget</class>
323 <property stdset="1"> 346 <property stdset="1">
324 <name>name</name> 347 <name>name</name>
325 <cstring>tab</cstring> 348 <cstring>tab</cstring>
326 </property> 349 </property>
327 <attribute> 350 <attribute>
328 <name>title</name> 351 <name>title</name>
329 <string>Advanced</string> 352 <string>Advanced</string>
330 </attribute> 353 </attribute>
331 <grid> 354 <grid>
332 <property stdset="1"> 355 <property stdset="1">
333 <name>margin</name> 356 <name>margin</name>
334 <number>4</number> 357 <number>4</number>
335 </property> 358 </property>
336 <property stdset="1"> 359 <property stdset="1">
337 <name>spacing</name> 360 <name>spacing</name>
338 <number>3</number> 361 <number>3</number>
339 </property> 362 </property>
340 <widget row="0" column="0" > 363 <widget row="0" column="0" >
341 <class>QCheckBox</class> 364 <class>QCheckBox</class>
342 <property stdset="1"> 365 <property stdset="1">
343 <name>name</name> 366 <name>name</name>
344 <cstring>addCc</cstring> 367 <cstring>addCc</cstring>
345 </property> 368 </property>
346 <property stdset="1"> 369 <property stdset="1">
347 <name>text</name> 370 <name>text</name>
348 <string>Cc</string> 371 <string>Cc</string>
349 </property> 372 </property>
350 </widget> 373 </widget>
351 <widget row="1" column="0" > 374 <widget row="1" column="0" >
352 <class>QCheckBox</class> 375 <class>QCheckBox</class>
353 <property stdset="1"> 376 <property stdset="1">
354 <name>name</name> 377 <name>name</name>
355 <cstring>addBcc</cstring> 378 <cstring>addBcc</cstring>
356 </property> 379 </property>
357 <property stdset="1"> 380 <property stdset="1">
358 <name>text</name> 381 <name>text</name>
359 <string>Bcc</string> 382 <string>Bcc</string>
360 </property> 383 </property>
361 </widget> 384 </widget>
362 <widget row="2" column="0" > 385 <widget row="2" column="0" >
363 <class>QCheckBox</class> 386 <class>QCheckBox</class>
364 <property stdset="1"> 387 <property stdset="1">
365 <name>name</name> 388 <name>name</name>
366 <cstring>addReplyTo</cstring> 389 <cstring>addReplyTo</cstring>
367 </property> 390 </property>
368 <property stdset="1"> 391 <property stdset="1">
369 <name>text</name> 392 <name>text</name>
370 <string>Reply-To</string> 393 <string>Reply-To</string>
371 </property> 394 </property>
372 </widget> 395 </widget>
373 <widget row="2" column="1" > 396 <widget row="2" column="1" >
374 <class>QLineEdit</class> 397 <class>QLineEdit</class>
375 <property stdset="1"> 398 <property stdset="1">
376 <name>name</name> 399 <name>name</name>
377 <cstring>replyTo</cstring> 400 <cstring>replyTo</cstring>
378 </property> 401 </property>
379 <property stdset="1"> 402 <property stdset="1">
380 <name>enabled</name> 403 <name>enabled</name>
381 <bool>false</bool> 404 <bool>false</bool>
382 </property> 405 </property>
383 </widget> 406 </widget>
384 <widget row="1" column="1" > 407 <widget row="1" column="1" >
385 <class>QLineEdit</class> 408 <class>QLineEdit</class>
386 <property stdset="1"> 409 <property stdset="1">
387 <name>name</name> 410 <name>name</name>
388 <cstring>bcc</cstring> 411 <cstring>bcc</cstring>
389 </property> 412 </property>
390 <property stdset="1"> 413 <property stdset="1">
391 <name>enabled</name> 414 <name>enabled</name>
392 <bool>false</bool> 415 <bool>false</bool>
393 </property> 416 </property>
394 </widget> 417 </widget>
395 <widget row="0" column="1" > 418 <widget row="0" column="1" >
396 <class>QLineEdit</class> 419 <class>QLineEdit</class>
397 <property stdset="1"> 420 <property stdset="1">
398 <name>name</name> 421 <name>name</name>
399 <cstring>cc</cstring> 422 <cstring>cc</cstring>
400 </property> 423 </property>
401 <property stdset="1"> 424 <property stdset="1">
402 <name>enabled</name> 425 <name>enabled</name>
403 <bool>false</bool> 426 <bool>false</bool>
404 </property> 427 </property>
405 </widget> 428 </widget>
406 <widget row="3" column="0" rowspan="1" colspan="2" > 429 <widget row="3" column="0" rowspan="1" colspan="2" >
407 <class>QLabel</class> 430 <class>QLabel</class>
408 <property stdset="1"> 431 <property stdset="1">
409 <name>name</name> 432 <name>name</name>
410 <cstring>TextLabel12</cstring> 433 <cstring>TextLabel12</cstring>
411 </property> 434 </property>
412 <property stdset="1"> 435 <property stdset="1">
413 <name>text</name> 436 <name>text</name>
414 <string>&lt;b&gt;Signature:</string> 437 <string>&lt;b&gt;Signature:</string>
415 </property> 438 </property>
416 </widget> 439 </widget>
417 <widget row="4" column="0" rowspan="1" colspan="2" > 440 <widget row="4" column="0" rowspan="1" colspan="2" >
418 <class>QMultiLineEdit</class> 441 <class>QMultiLineEdit</class>
419 <property stdset="1"> 442 <property stdset="1">
420 <name>name</name> 443 <name>name</name>
421 <cstring>signature</cstring> 444 <cstring>signature</cstring>
422 </property> 445 </property>
423 </widget> 446 </widget>
424 <spacer row="5" column="1" > 447 <spacer row="5" column="1" >
425 <property> 448 <property>
426 <name>name</name> 449 <name>name</name>
427 <cstring>Spacer3</cstring> 450 <cstring>Spacer3</cstring>
428 </property> 451 </property>
429 <property stdset="1"> 452 <property stdset="1">
430 <name>orientation</name> 453 <name>orientation</name>
431 <enum>Vertical</enum> 454 <enum>Vertical</enum>
432 </property> 455 </property>
433 <property stdset="1"> 456 <property stdset="1">
434 <name>sizeType</name> 457 <name>sizeType</name>
435 <enum>Expanding</enum> 458 <enum>Expanding</enum>
436 </property> 459 </property>
437 <property> 460 <property>
438 <name>sizeHint</name> 461 <name>sizeHint</name>
439 <size> 462 <size>
440 <width>20</width> 463 <width>20</width>
441 <height>20</height> 464 <height>20</height>
442 </size> 465 </size>
443 </property> 466 </property>
444 </spacer> 467 </spacer>
445 </grid> 468 </grid>
446 </widget> 469 </widget>
447 <widget> 470 <widget>
448 <class>QWidget</class> 471 <class>QWidget</class>
449 <property stdset="1"> 472 <property stdset="1">
450 <name>name</name> 473 <name>name</name>
451 <cstring>sslTab</cstring> 474 <cstring>sslTab</cstring>
452 </property> 475 </property>
453 <attribute> 476 <attribute>
454 <name>title</name> 477 <name>title</name>
455 <string>SSL</string> 478 <string>SSL</string>
456 </attribute> 479 </attribute>
457 <grid> 480 <grid>
458 <property stdset="1"> 481 <property stdset="1">
459 <name>margin</name> 482 <name>margin</name>
460 <number>4</number> 483 <number>4</number>
461 </property> 484 </property>
462 <property stdset="1"> 485 <property stdset="1">
463 <name>spacing</name> 486 <name>spacing</name>
464 <number>3</number> 487 <number>3</number>
465 </property> 488 </property>
466 <spacer row="2" column="0" > 489 <spacer row="2" column="0" >
467 <property> 490 <property>
468 <name>name</name> 491 <name>name</name>
469 <cstring>Spacer4</cstring> 492 <cstring>Spacer4</cstring>
470 </property> 493 </property>
471 <property stdset="1"> 494 <property stdset="1">
472 <name>orientation</name> 495 <name>orientation</name>
473 <enum>Vertical</enum> 496 <enum>Vertical</enum>
474 </property> 497 </property>
475 <property stdset="1"> 498 <property stdset="1">
476 <name>sizeType</name> 499 <name>sizeType</name>
477 <enum>Expanding</enum> 500 <enum>Expanding</enum>
478 </property> 501 </property>
479 <property> 502 <property>
480 <name>sizeHint</name> 503 <name>sizeHint</name>
481 <size> 504 <size>
482 <width>20</width> 505 <width>20</width>
483 <height>20</height> 506 <height>20</height>
484 </size> 507 </size>
485 </property> 508 </property>
486 </spacer> 509 </spacer>
487 <widget row="0" column="0" > 510 <widget row="0" column="0" >
488 <class>QButtonGroup</class> 511 <class>QButtonGroup</class>
489 <property stdset="1"> 512 <property stdset="1">
490 <name>name</name> 513 <name>name</name>
491 <cstring>ButtonGroup1</cstring> 514 <cstring>ButtonGroup1</cstring>
492 </property> 515 </property>
493 <property stdset="1"> 516 <property stdset="1">
494 <name>title</name> 517 <name>title</name>
495 <string>IMAP</string> 518 <string>IMAP</string>
496 </property> 519 </property>
497 <property> 520 <property>
498 <name>layoutMargin</name> 521 <name>layoutMargin</name>
499 </property> 522 </property>
500 <property> 523 <property>
501 <name>layoutSpacing</name> 524 <name>layoutSpacing</name>
502 </property> 525 </property>
503 <grid> 526 <grid>
504 <property stdset="1"> 527 <property stdset="1">
505 <name>margin</name> 528 <name>margin</name>
506 <number>4</number> 529 <number>4</number>
507 </property> 530 </property>
508 <property stdset="1"> 531 <property stdset="1">
509 <name>spacing</name> 532 <name>spacing</name>
510 <number>3</number> 533 <number>3</number>
511 </property> 534 </property>
512 <widget row="0" column="0" > 535 <widget row="0" column="0" >
513 <class>QCheckBox</class> 536 <class>QCheckBox</class>
514 <property stdset="1"> 537 <property stdset="1">
515 <name>name</name> 538 <name>name</name>
516 <cstring>imapssl</cstring> 539 <cstring>imapssl</cstring>
517 </property> 540 </property>
518 <property stdset="1"> 541 <property stdset="1">
519 <name>text</name> 542 <name>text</name>
520 <string>Use SSL</string> 543 <string>Use SSL</string>
521 </property> 544 </property>
522 </widget> 545 </widget>
523 <widget row="1" column="0" > 546 <widget row="1" column="0" >
524 <class>QFrame</class> 547 <class>QFrame</class>
525 <property stdset="1"> 548 <property stdset="1">
526 <name>name</name> 549 <name>name</name>
527 <cstring>Frame11</cstring> 550 <cstring>Frame11</cstring>
528 </property> 551 </property>
529 <property stdset="1"> 552 <property stdset="1">
530 <name>enabled</name> 553 <name>enabled</name>
531 <bool>false</bool> 554 <bool>false</bool>
532 </property> 555 </property>
533 <property stdset="1"> 556 <property stdset="1">
534 <name>frameShape</name> 557 <name>frameShape</name>
535 <enum>NoFrame</enum> 558 <enum>NoFrame</enum>
536 </property> 559 </property>
537 <property stdset="1"> 560 <property stdset="1">
538 <name>frameShadow</name> 561 <name>frameShadow</name>
539 <enum>Raised</enum> 562 <enum>Raised</enum>
540 </property> 563 </property>
541 <property> 564 <property>
542 <name>layoutMargin</name> 565 <name>layoutMargin</name>
543 </property> 566 </property>
544 <property> 567 <property>
545 <name>layoutSpacing</name> 568 <name>layoutSpacing</name>
546 </property> 569 </property>
547 <grid> 570 <grid>
548 <property stdset="1"> 571 <property stdset="1">
549 <name>margin</name> 572 <name>margin</name>
550 <number>0</number> 573 <number>0</number>
551 </property> 574 </property>
552 <property stdset="1"> 575 <property stdset="1">
553 <name>spacing</name> 576 <name>spacing</name>
554 <number>3</number> 577 <number>3</number>
555 </property> 578 </property>
556 <widget row="0" column="0" > 579 <widget row="0" column="0" >
557 <class>QLabel</class> 580 <class>QLabel</class>
558 <property stdset="1"> 581 <property stdset="1">
559 <name>name</name> 582 <name>name</name>
560 <cstring>TextLabel13</cstring> 583 <cstring>TextLabel13</cstring>
561 </property> 584 </property>
562 <property stdset="1"> 585 <property stdset="1">
563 <name>enabled</name> 586 <name>enabled</name>
564 <bool>false</bool> 587 <bool>false</bool>
565 </property> 588 </property>
566 <property stdset="1"> 589 <property stdset="1">
567 <name>text</name> 590 <name>text</name>
568 <string>&lt;b&gt;Port:</string> 591 <string>&lt;b&gt;Port:</string>
569 </property> 592 </property>
570 </widget> 593 </widget>
571 <widget row="0" column="1" > 594 <widget row="0" column="1" >
572 <class>QLineEdit</class> 595 <class>QLineEdit</class>
573 <property stdset="1"> 596 <property stdset="1">
574 <name>name</name> 597 <name>name</name>
575 <cstring>imapsPort</cstring> 598 <cstring>imapsPort</cstring>
576 </property> 599 </property>
577 <property stdset="1"> 600 <property stdset="1">
578 <name>enabled</name> 601 <name>enabled</name>
579 <bool>false</bool> 602 <bool>false</bool>
580 </property> 603 </property>
581 <property stdset="1"> 604 <property stdset="1">
582 <name>text</name> 605 <name>text</name>
583 <string>993</string> 606 <string>993</string>
584 </property> 607 </property>
585 </widget> 608 </widget>
586 </grid> 609 </grid>
587 </widget> 610 </widget>
588 </grid> 611 </grid>
589 </widget> 612 </widget>
590 <widget row="1" column="0" > 613 <widget row="1" column="0" >
591 <class>QButtonGroup</class> 614 <class>QButtonGroup</class>
592 <property stdset="1"> 615 <property stdset="1">
593 <name>name</name> 616 <name>name</name>
594 <cstring>smtpSslGroup</cstring> 617 <cstring>smtpSslGroup</cstring>
595 </property> 618 </property>
596 <property stdset="1"> 619 <property stdset="1">
597 <name>title</name> 620 <name>title</name>
598 <string>SMTP</string> 621 <string>SMTP</string>
599 </property> 622 </property>
600 <property> 623 <property>
601 <name>layoutMargin</name> 624 <name>layoutMargin</name>
602 </property> 625 </property>
603 <property> 626 <property>
604 <name>layoutSpacing</name> 627 <name>layoutSpacing</name>
605 </property> 628 </property>
606 <grid> 629 <grid>
607 <property stdset="1"> 630 <property stdset="1">
608 <name>margin</name> 631 <name>margin</name>
609 <number>4</number> 632 <number>4</number>
610 </property> 633 </property>
611 <property stdset="1"> 634 <property stdset="1">
612 <name>spacing</name> 635 <name>spacing</name>
613 <number>3</number> 636 <number>3</number>
614 </property> 637 </property>
615 <widget row="0" column="0" > 638 <widget row="0" column="0" >
616 <class>QCheckBox</class> 639 <class>QCheckBox</class>
617 <property stdset="1"> 640 <property stdset="1">
618 <name>name</name> 641 <name>name</name>
619 <cstring>smtpssl</cstring> 642 <cstring>smtpssl</cstring>
620 </property> 643 </property>
621 <property stdset="1"> 644 <property stdset="1">
622 <name>text</name> 645 <name>text</name>
623 <string>Use SSL</string> 646 <string>Use SSL</string>
624 </property> 647 </property>
625 </widget> 648 </widget>
626 <widget row="1" column="0" > 649 <widget row="1" column="0" >
627 <class>QFrame</class> 650 <class>QFrame</class>
628 <property stdset="1"> 651 <property stdset="1">
629 <name>name</name> 652 <name>name</name>
630 <cstring>Frame6</cstring> 653 <cstring>Frame6</cstring>
631 </property> 654 </property>
632 <property stdset="1"> 655 <property stdset="1">
633 <name>enabled</name> 656 <name>enabled</name>
634 <bool>false</bool> 657 <bool>false</bool>
635 </property> 658 </property>
636 <property stdset="1"> 659 <property stdset="1">
637 <name>frameShape</name> 660 <name>frameShape</name>
638 <enum>NoFrame</enum> 661 <enum>NoFrame</enum>
639 </property> 662 </property>
640 <property stdset="1"> 663 <property stdset="1">
641 <name>frameShadow</name> 664 <name>frameShadow</name>
642 <enum>Raised</enum> 665 <enum>Raised</enum>
643 </property> 666 </property>
644 <property> 667 <property>
645 <name>layoutMargin</name> 668 <name>layoutMargin</name>
646 </property> 669 </property>
647 <property> 670 <property>
648 <name>layoutSpacing</name> 671 <name>layoutSpacing</name>
649 </property> 672 </property>
650 <grid> 673 <grid>
651 <property stdset="1"> 674 <property stdset="1">
652 <name>margin</name> 675 <name>margin</name>
653 <number>0</number> 676 <number>0</number>
654 </property> 677 </property>
655 <property stdset="1"> 678 <property stdset="1">
656 <name>spacing</name> 679 <name>spacing</name>
657 <number>3</number> 680 <number>3</number>
658 </property> 681 </property>
659 <widget row="0" column="0" > 682 <widget row="0" column="0" >
660 <class>QLabel</class> 683 <class>QLabel</class>
661 <property stdset="1"> 684 <property stdset="1">
662 <name>name</name> 685 <name>name</name>
663 <cstring>TextLabel14</cstring> 686 <cstring>TextLabel14</cstring>
664 </property> 687 </property>
665 <property stdset="1"> 688 <property stdset="1">
666 <name>text</name> 689 <name>text</name>
667 <string>&lt;b&gt;Port:</string> 690 <string>&lt;b&gt;Port:</string>
668 </property> 691 </property>
669 </widget> 692 </widget>
670 <widget row="0" column="1" > 693 <widget row="0" column="1" >
671 <class>QLineEdit</class> 694 <class>QLineEdit</class>
672 <property stdset="1"> 695 <property stdset="1">
673 <name>name</name> 696 <name>name</name>
674 <cstring>smtpsPort</cstring> 697 <cstring>smtpsPort</cstring>
675 </property> 698 </property>
676 </widget> 699 </widget>
677 </grid> 700 </grid>
678 </widget> 701 </widget>
679 </grid> 702 </grid>
680 </widget> 703 </widget>
681 </grid> 704 </grid>
682 </widget> 705 </widget>
683 </widget> 706 </widget>
684 </grid> 707 </grid>
685</widget> 708</widget>
686<connections> 709<connections>
687 <connection> 710 <connection>
688 <sender>addCc</sender> 711 <sender>addCc</sender>
689 <signal>toggled(bool)</signal> 712 <signal>toggled(bool)</signal>
690 <receiver>cc</receiver> 713 <receiver>cc</receiver>
691 <slot>setEnabled(bool)</slot> 714 <slot>setEnabled(bool)</slot>
692 </connection> 715 </connection>
693 <connection> 716 <connection>
694 <sender>addBcc</sender> 717 <sender>addBcc</sender>
695 <signal>toggled(bool)</signal> 718 <signal>toggled(bool)</signal>
696 <receiver>bcc</receiver> 719 <receiver>bcc</receiver>
697 <slot>setEnabled(bool)</slot> 720 <slot>setEnabled(bool)</slot>
698 </connection> 721 </connection>
699 <connection> 722 <connection>
700 <sender>addReplyTo</sender> 723 <sender>addReplyTo</sender>
701 <signal>toggled(bool)</signal> 724 <signal>toggled(bool)</signal>
702 <receiver>replyTo</receiver> 725 <receiver>replyTo</receiver>
703 <slot>setEnabled(bool)</slot> 726 <slot>setEnabled(bool)</slot>
704 </connection> 727 </connection>
705 <connection> 728 <connection>
706 <sender>smtpssl</sender> 729 <sender>smtpssl</sender>
707 <signal>toggled(bool)</signal> 730 <signal>toggled(bool)</signal>
708 <receiver>Frame6</receiver> 731 <receiver>Frame6</receiver>
709 <slot>setEnabled(bool)</slot> 732 <slot>setEnabled(bool)</slot>
710 </connection> 733 </connection>
711 <connection> 734 <connection>
712 <sender>imapssl</sender> 735 <sender>imapssl</sender>
713 <signal>toggled(bool)</signal> 736 <signal>toggled(bool)</signal>
714 <receiver>Frame11</receiver> 737 <receiver>Frame11</receiver>
715 <slot>setEnabled(bool)</slot> 738 <slot>setEnabled(bool)</slot>
716 </connection> 739 </connection>
717 <connection> 740 <connection>
718 <sender>imapssl</sender> 741 <sender>imapssl</sender>
719 <signal>toggled(bool)</signal> 742 <signal>toggled(bool)</signal>
720 <receiver>imapsPort</receiver> 743 <receiver>imapsPort</receiver>
721 <slot>setEnabled(bool)</slot> 744 <slot>setEnabled(bool)</slot>
722 </connection> 745 </connection>
723 <connection> 746 <connection>
724 <sender>imapssl</sender> 747 <sender>imapssl</sender>
725 <signal>toggled(bool)</signal> 748 <signal>toggled(bool)</signal>
726 <receiver>TextLabel13</receiver> 749 <receiver>TextLabel13</receiver>
727 <slot>setEnabled(bool)</slot> 750 <slot>setEnabled(bool)</slot>
728 </connection> 751 </connection>
729</connections> 752</connections>
730<tabstops> 753<tabstops>
731 <tabstop>TabWidget2</tabstop> 754 <tabstop>TabWidget2</tabstop>
732 <tabstop>imapServer</tabstop> 755 <tabstop>imapServer</tabstop>
733 <tabstop>imapPort</tabstop> 756 <tabstop>imapPort</tabstop>
734 <tabstop>user</tabstop> 757 <tabstop>user</tabstop>
735 <tabstop>pass</tabstop> 758 <tabstop>pass</tabstop>
736 <tabstop>smtpServer</tabstop> 759 <tabstop>smtpServer</tabstop>
737 <tabstop>smtpPort</tabstop> 760 <tabstop>smtpPort</tabstop>
738 <tabstop>realname</tabstop> 761 <tabstop>realname</tabstop>
739 <tabstop>email</tabstop> 762 <tabstop>email</tabstop>
740 <tabstop>org</tabstop> 763 <tabstop>org</tabstop>
741 <tabstop>addCc</tabstop> 764 <tabstop>addCc</tabstop>
742 <tabstop>cc</tabstop> 765 <tabstop>cc</tabstop>
743 <tabstop>addBcc</tabstop> 766 <tabstop>addBcc</tabstop>
744 <tabstop>bcc</tabstop> 767 <tabstop>bcc</tabstop>
745 <tabstop>addReplyTo</tabstop> 768 <tabstop>addReplyTo</tabstop>
746 <tabstop>replyTo</tabstop> 769 <tabstop>replyTo</tabstop>
747 <tabstop>signature</tabstop> 770 <tabstop>signature</tabstop>
748 <tabstop>imapsPort</tabstop> 771 <tabstop>imapsPort</tabstop>
749 <tabstop>smtpsPort</tabstop> 772 <tabstop>smtpsPort</tabstop>
750</tabstops> 773</tabstops>
751</UI> 774</UI>
diff --git a/pics/mail/showpasswd.png b/pics/mail/showpasswd.png
new file mode 100644
index 0000000..7d5c08b
--- a/dev/null
+++ b/pics/mail/showpasswd.png
Binary files differ