-rw-r--r-- | kmicromail/composemail.cpp | 28 | ||||
-rw-r--r-- | kmicromail/composemailui.ui | 4 | ||||
-rw-r--r-- | kmicromail/selectstoreui.ui | 8 |
3 files changed, 27 insertions, 13 deletions
diff --git a/kmicromail/composemail.cpp b/kmicromail/composemail.cpp index 35ad367..5f7a76f 100644 --- a/kmicromail/composemail.cpp +++ b/kmicromail/composemail.cpp | |||
@@ -9,24 +9,25 @@ | |||
9 | 9 | ||
10 | /* OPIE */ | 10 | /* OPIE */ |
11 | //#include <opie2/ofiledialog.h> | 11 | //#include <opie2/ofiledialog.h> |
12 | //#include <opie2/odebug.h> | 12 | //#include <opie2/odebug.h> |
13 | #include <kfiledialog.h> | 13 | #include <kfiledialog.h> |
14 | //#include <qpe/resource.h> | 14 | //#include <qpe/resource.h> |
15 | #include <qpe/global.h> | 15 | #include <qpe/global.h> |
16 | //#include <qpe/contact.h> | 16 | //#include <qpe/contact.h> |
17 | 17 | ||
18 | 18 | ||
19 | #include <qcombobox.h> | 19 | #include <qcombobox.h> |
20 | #include <qcheckbox.h> | 20 | #include <qcheckbox.h> |
21 | #include <qiconset.h> | ||
21 | #include <qtimer.h> | 22 | #include <qtimer.h> |
22 | #include <qmessagebox.h> | 23 | #include <qmessagebox.h> |
23 | #include <qpushbutton.h> | 24 | #include <qpushbutton.h> |
24 | #include <qmultilineedit.h> | 25 | #include <qmultilineedit.h> |
25 | #include <qlabel.h> | 26 | #include <qlabel.h> |
26 | #include <qtabwidget.h> | 27 | #include <qtabwidget.h> |
27 | #include <qlistview.h> | 28 | #include <qlistview.h> |
28 | #include <kabc/addresseedialog.h> | 29 | #include <kabc/addresseedialog.h> |
29 | #include <kabc/stdaddressbook.h> | 30 | #include <kabc/stdaddressbook.h> |
30 | #include <kabc/addressee.h> | 31 | #include <kabc/addressee.h> |
31 | #ifdef DESKTOP_VERSION | 32 | #ifdef DESKTOP_VERSION |
32 | #include <kabc/addresseedialog.h> | 33 | #include <kabc/addresseedialog.h> |
@@ -101,38 +102,51 @@ ComposeMail::ComposeMail( Settings *s, QWidget *parent, const char *name, bool m | |||
101 | smtpAccounts.append( smtp ); | 102 | smtpAccounts.append( smtp ); |
102 | } | 103 | } |
103 | } | 104 | } |
104 | connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) ); | 105 | connect( toButton, SIGNAL( clicked() ), SLOT( pickAddressTo() ) ); |
105 | connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) ); | 106 | connect( ccButton, SIGNAL( clicked() ), SLOT( pickAddressCC() ) ); |
106 | connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) ); | 107 | connect( bccButton, SIGNAL( clicked() ), SLOT( pickAddressBCC() ) ); |
107 | connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) ); | 108 | connect( replyButton, SIGNAL( clicked() ), SLOT( pickAddressReply() ) ); |
108 | connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) ); | 109 | connect( addButton, SIGNAL( clicked() ), SLOT( addAttachment() ) ); |
109 | connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) ); | 110 | connect( deleteButton, SIGNAL( clicked() ), SLOT( removeAttachment() ) ); |
110 | connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) ); | 111 | connect( SaveButton, SIGNAL( clicked() ), SLOT( saveAsDraft()) ); |
111 | mMail = 0; | 112 | mMail = 0; |
112 | warnAttach = true; | 113 | warnAttach = true; |
114 | QIconSet icon; | ||
115 | //icon = SmallIcon("fileexport"); | ||
116 | icon = SmallIcon("filesave"); | ||
117 | SaveButton->setIconSet (icon ) ; | ||
118 | if ( QApplication::desktop()->width() < 320 ) { | ||
119 | SaveButton->setText ("") ; | ||
120 | SaveButton->setMaximumSize ( SaveButton->sizeHint().height(),SaveButton->sizeHint().height()) ; | ||
121 | } | ||
122 | else | ||
123 | SaveButton->setText (i18n("Save")); | ||
124 | #ifndef DESKTOP_VERSION | ||
125 | QPEApplication::setStylusOperation( message, QPEApplication::RightOnHold ); | ||
126 | QPEApplication::setStylusOperation( senderNameEdit, QPEApplication::RightOnHold ); | ||
127 | QPEApplication::setStylusOperation( subjectLine, QPEApplication::RightOnHold ); | ||
128 | #endif | ||
129 | message->setFont ( KOPrefs::instance()->mComposeFont ); | ||
130 | message->setWordWrap (QMultiLineEdit::WidgetWidth); | ||
113 | if ( smtpAccounts.count() > 0 ) { | 131 | if ( smtpAccounts.count() > 0 ) { |
114 | fillValues( smtpAccountBox->currentItem() ); | 132 | fillValues( smtpAccountBox->currentItem() ); |
115 | } else { | 133 | } else { |
116 | QMessageBox::information( 0, i18n( "Problem" ), | 134 | QMessageBox::information( 0, i18n( "Problem" ), |
117 | i18n( "Please create an SMTP account first.\nThe SMTP is needed for sending mail.\n" ), | 135 | i18n( "Please create an\nSMTP account first.\nThe SMTP is needed\nfor sending mail.\n" ), |
118 | i18n( "Ok" ) ); | 136 | i18n( "Ok" ) ); |
119 | return; | 137 | return; |
120 | } | 138 | } |
121 | connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); | 139 | connect( smtpAccountBox, SIGNAL( activated(int) ), SLOT( fillValues(int) ) ); |
122 | message->setFont ( KOPrefs::instance()->mComposeFont ); | 140 | |
123 | message->setWordWrap (QMultiLineEdit::WidgetWidth); | ||
124 | #ifndef DESKTOP_VERSION | ||
125 | QPEApplication::setStylusOperation( message, QPEApplication::RightOnHold ); | ||
126 | #endif | ||
127 | 141 | ||
128 | } | 142 | } |
129 | 143 | ||
130 | void ComposeMail::fillSettings() | 144 | void ComposeMail::fillSettings() |
131 | { | 145 | { |
132 | if ( QApplication::desktop()->width() < 320 ) | 146 | if ( QApplication::desktop()->width() < 320 ) |
133 | fromBox->setMaximumWidth( 100 ); | 147 | fromBox->setMaximumWidth( 100 ); |
134 | QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail); | 148 | QStringList mailList = QStringList::split(";",KOPrefs::instance()->mEmail); |
135 | QStringList::ConstIterator sit = mailList.begin(); | 149 | QStringList::ConstIterator sit = mailList.begin(); |
136 | int pref = 0; | 150 | int pref = 0; |
137 | for (;sit!=mailList.end();++sit) { | 151 | for (;sit!=mailList.end();++sit) { |
138 | fromBox->insertItem((*sit)); | 152 | fromBox->insertItem((*sit)); |
diff --git a/kmicromail/composemailui.ui b/kmicromail/composemailui.ui index 0a5a750..c66b0c8 100644 --- a/kmicromail/composemailui.ui +++ b/kmicromail/composemailui.ui | |||
@@ -4,25 +4,25 @@ | |||
4 | <widget> | 4 | <widget> |
5 | <class>QDialog</class> | 5 | <class>QDialog</class> |
6 | <property stdset="1"> | 6 | <property stdset="1"> |
7 | <name>name</name> | 7 | <name>name</name> |
8 | <cstring>ComposeMailUI</cstring> | 8 | <cstring>ComposeMailUI</cstring> |
9 | </property> | 9 | </property> |
10 | <property stdset="1"> | 10 | <property stdset="1"> |
11 | <name>geometry</name> | 11 | <name>geometry</name> |
12 | <rect> | 12 | <rect> |
13 | <x>0</x> | 13 | <x>0</x> |
14 | <y>0</y> | 14 | <y>0</y> |
15 | <width>276</width> | 15 | <width>276</width> |
16 | <height>262</height> | 16 | <height>263</height> |
17 | </rect> | 17 | </rect> |
18 | </property> | 18 | </property> |
19 | <property stdset="1"> | 19 | <property stdset="1"> |
20 | <name>caption</name> | 20 | <name>caption</name> |
21 | <string>Compose Message</string> | 21 | <string>Compose Message</string> |
22 | </property> | 22 | </property> |
23 | <property> | 23 | <property> |
24 | <name>layoutMargin</name> | 24 | <name>layoutMargin</name> |
25 | </property> | 25 | </property> |
26 | <property> | 26 | <property> |
27 | <name>layoutSpacing</name> | 27 | <name>layoutSpacing</name> |
28 | </property> | 28 | </property> |
@@ -438,25 +438,25 @@ | |||
438 | <vsizetype>0</vsizetype> | 438 | <vsizetype>0</vsizetype> |
439 | </sizepolicy> | 439 | </sizepolicy> |
440 | </property> | 440 | </property> |
441 | </widget> | 441 | </widget> |
442 | <widget row="0" column="3" > | 442 | <widget row="0" column="3" > |
443 | <class>QPushButton</class> | 443 | <class>QPushButton</class> |
444 | <property stdset="1"> | 444 | <property stdset="1"> |
445 | <name>name</name> | 445 | <name>name</name> |
446 | <cstring>SaveButton</cstring> | 446 | <cstring>SaveButton</cstring> |
447 | </property> | 447 | </property> |
448 | <property stdset="1"> | 448 | <property stdset="1"> |
449 | <name>text</name> | 449 | <name>text</name> |
450 | <string>Save</string> | 450 | <string> S</string> |
451 | </property> | 451 | </property> |
452 | </widget> | 452 | </widget> |
453 | </grid> | 453 | </grid> |
454 | </widget> | 454 | </widget> |
455 | <tabstops> | 455 | <tabstops> |
456 | <tabstop>fromBox</tabstop> | 456 | <tabstop>fromBox</tabstop> |
457 | <tabstop>toButton</tabstop> | 457 | <tabstop>toButton</tabstop> |
458 | <tabstop>toLine</tabstop> | 458 | <tabstop>toLine</tabstop> |
459 | <tabstop>subjectLine</tabstop> | 459 | <tabstop>subjectLine</tabstop> |
460 | <tabstop>message</tabstop> | 460 | <tabstop>message</tabstop> |
461 | <tabstop>tabWidget</tabstop> | 461 | <tabstop>tabWidget</tabstop> |
462 | <tabstop>ccButton</tabstop> | 462 | <tabstop>ccButton</tabstop> |
diff --git a/kmicromail/selectstoreui.ui b/kmicromail/selectstoreui.ui index 2da103b..89f6ebc 100644 --- a/kmicromail/selectstoreui.ui +++ b/kmicromail/selectstoreui.ui | |||
@@ -3,26 +3,26 @@ | |||
3 | <include location="local">tr.h</include> | 3 | <include location="local">tr.h</include> |
4 | <widget> | 4 | <widget> |
5 | <class>QDialog</class> | 5 | <class>QDialog</class> |
6 | <property stdset="1"> | 6 | <property stdset="1"> |
7 | <name>name</name> | 7 | <name>name</name> |
8 | <cstring>selectstoreui</cstring> | 8 | <cstring>selectstoreui</cstring> |
9 | </property> | 9 | </property> |
10 | <property stdset="1"> | 10 | <property stdset="1"> |
11 | <name>geometry</name> | 11 | <name>geometry</name> |
12 | <rect> | 12 | <rect> |
13 | <x>0</x> | 13 | <x>0</x> |
14 | <y>0</y> | 14 | <y>0</y> |
15 | <width>279</width> | 15 | <width>230</width> |
16 | <height>304</height> | 16 | <height>307</height> |
17 | </rect> | 17 | </rect> |
18 | </property> | 18 | </property> |
19 | <property stdset="1"> | 19 | <property stdset="1"> |
20 | <name>caption</name> | 20 | <name>caption</name> |
21 | <string>Select target box</string> | 21 | <string>Select target box</string> |
22 | </property> | 22 | </property> |
23 | <property> | 23 | <property> |
24 | <name>layoutMargin</name> | 24 | <name>layoutMargin</name> |
25 | </property> | 25 | </property> |
26 | <property> | 26 | <property> |
27 | <name>layoutSpacing</name> | 27 | <name>layoutSpacing</name> |
28 | </property> | 28 | </property> |
@@ -173,25 +173,25 @@ | |||
173 | <name>enabled</name> | 173 | <name>enabled</name> |
174 | <bool>false</bool> | 174 | <bool>false</bool> |
175 | </property> | 175 | </property> |
176 | </widget> | 176 | </widget> |
177 | <widget row="5" column="0" rowspan="1" colspan="2" > | 177 | <widget row="5" column="0" rowspan="1" colspan="2" > |
178 | <class>QLabel</class> | 178 | <class>QLabel</class> |
179 | <property stdset="1"> | 179 | <property stdset="1"> |
180 | <name>name</name> | 180 | <name>name</name> |
181 | <cstring>newFolderLabel</cstring> | 181 | <cstring>newFolderLabel</cstring> |
182 | </property> | 182 | </property> |
183 | <property stdset="1"> | 183 | <property stdset="1"> |
184 | <name>text</name> | 184 | <name>text</name> |
185 | <string>Prefix will prepend, no need to enter it!</string> | 185 | <string>Prefix will prepend, do not enter</string> |
186 | </property> | 186 | </property> |
187 | <property stdset="1"> | 187 | <property stdset="1"> |
188 | <name>alignment</name> | 188 | <name>alignment</name> |
189 | <set>WordBreak|AlignCenter</set> | 189 | <set>WordBreak|AlignCenter</set> |
190 | </property> | 190 | </property> |
191 | <property> | 191 | <property> |
192 | <name>hAlign</name> | 192 | <name>hAlign</name> |
193 | </property> | 193 | </property> |
194 | <property> | 194 | <property> |
195 | <name>wordwrap</name> | 195 | <name>wordwrap</name> |
196 | </property> | 196 | </property> |
197 | </widget> | 197 | </widget> |
@@ -237,25 +237,25 @@ | |||
237 | <name>text</name> | 237 | <name>text</name> |
238 | <string>Move mail(s)</string> | 238 | <string>Move mail(s)</string> |
239 | </property> | 239 | </property> |
240 | </widget> | 240 | </widget> |
241 | <widget row="7" column="0" > | 241 | <widget row="7" column="0" > |
242 | <class>QCheckBox</class> | 242 | <class>QCheckBox</class> |
243 | <property stdset="1"> | 243 | <property stdset="1"> |
244 | <name>name</name> | 244 | <name>name</name> |
245 | <cstring>useSize</cstring> | 245 | <cstring>useSize</cstring> |
246 | </property> | 246 | </property> |
247 | <property stdset="1"> | 247 | <property stdset="1"> |
248 | <name>text</name> | 248 | <name>text</name> |
249 | <string>apply only to mails smaller</string> | 249 | <string>only mails smaller</string> |
250 | </property> | 250 | </property> |
251 | </widget> | 251 | </widget> |
252 | <widget row="7" column="1" > | 252 | <widget row="7" column="1" > |
253 | <class>QSpinBox</class> | 253 | <class>QSpinBox</class> |
254 | <property stdset="1"> | 254 | <property stdset="1"> |
255 | <name>name</name> | 255 | <name>name</name> |
256 | <cstring>sizeSpinBox</cstring> | 256 | <cstring>sizeSpinBox</cstring> |
257 | </property> | 257 | </property> |
258 | <property stdset="1"> | 258 | <property stdset="1"> |
259 | <name>suffix</name> | 259 | <name>suffix</name> |
260 | <string> kB</string> | 260 | <string> kB</string> |
261 | </property> | 261 | </property> |