-rw-r--r-- | kmicromail/main.cpp | 3 | ||||
-rw-r--r-- | kmicromail/mainwindow.cpp | 48 | ||||
-rw-r--r-- | kmicromail/opiemail.cpp | 41 |
3 files changed, 47 insertions, 45 deletions
diff --git a/kmicromail/main.cpp b/kmicromail/main.cpp index 5362f08..8947ff8 100644 --- a/kmicromail/main.cpp +++ b/kmicromail/main.cpp | |||
@@ -14,17 +14,17 @@ | |||
14 | #endif | 14 | #endif |
15 | #include "opiemail.h" | 15 | #include "opiemail.h" |
16 | #include <qdir.h> | 16 | #include <qdir.h> |
17 | #include <kstandarddirs.h> | 17 | #include <kstandarddirs.h> |
18 | #include <kglobal.h> | 18 | #include <kglobal.h> |
19 | #include <stdio.h> | 19 | #include <stdio.h> |
20 | #include "mainwindow.h" | 20 | #include "mainwindow.h" |
21 | #include "koprefs.h" | 21 | #include "koprefs.h" |
22 | 22 | void dumpMissing(); | |
23 | //using namespace Opie::Core; | 23 | //using namespace Opie::Core; |
24 | int main( int argc, char **argv ) { | 24 | int main( int argc, char **argv ) { |
25 | 25 | ||
26 | #ifndef DESKTOP_VERSION | 26 | #ifndef DESKTOP_VERSION |
27 | QPEApplication a( argc, argv ); | 27 | QPEApplication a( argc, argv ); |
28 | a.setKeepRunning (); | 28 | a.setKeepRunning (); |
29 | #else | 29 | #else |
30 | QApplication a( argc, argv ); | 30 | QApplication a( argc, argv ); |
@@ -52,11 +52,12 @@ int main( int argc, char **argv ) { | |||
52 | a.showMainWidget(&mw ); | 52 | a.showMainWidget(&mw ); |
53 | #else | 53 | #else |
54 | a.setMainWidget(&mw ); | 54 | a.setMainWidget(&mw ); |
55 | mw.show(); | 55 | mw.show(); |
56 | //m.resize( 800, 600 ); | 56 | //m.resize( 800, 600 ); |
57 | QObject::connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); | 57 | QObject::connect(&a, SIGNAL(lastWindowClosed()), &a, SLOT(quit())); |
58 | #endif | 58 | #endif |
59 | int rv = a.exec(); | 59 | int rv = a.exec(); |
60 | dumpMissing(); | ||
60 | return rv; | 61 | return rv; |
61 | 62 | ||
62 | } | 63 | } |
diff --git a/kmicromail/mainwindow.cpp b/kmicromail/mainwindow.cpp index ddded2a..c77345b 100644 --- a/kmicromail/mainwindow.cpp +++ b/kmicromail/mainwindow.cpp | |||
@@ -17,111 +17,111 @@ | |||
17 | #include <KDGanttMinimizeSplitter.h> | 17 | #include <KDGanttMinimizeSplitter.h> |
18 | 18 | ||
19 | 19 | ||
20 | #include <kabc/stdaddressbook.h> | 20 | #include <kabc/stdaddressbook.h> |
21 | 21 | ||
22 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | 22 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) |
23 | : QMainWindow( parent, name ) //, flags ) | 23 | : QMainWindow( parent, name ) //, flags ) |
24 | { | 24 | { |
25 | setCaption( tr( "KOpieMail/Pi" ) ); | 25 | setCaption( i18n( "KOpieMail/Pi" ) ); |
26 | setToolBarsMovable( false ); | 26 | setToolBarsMovable( false ); |
27 | //KABC::StdAddressBook::self(); | 27 | //KABC::StdAddressBook::self(); |
28 | toolBar = new QToolBar( this ); | 28 | toolBar = new QToolBar( this ); |
29 | menuBar = new QPEMenuBar( toolBar ); | 29 | menuBar = new QPEMenuBar( toolBar ); |
30 | mailMenu = new QPopupMenu( menuBar ); | 30 | mailMenu = new QPopupMenu( menuBar ); |
31 | menuBar->insertItem( tr( "Mail" ), mailMenu ); | 31 | menuBar->insertItem( i18n( "Mail" ), mailMenu ); |
32 | settingsMenu = new QPopupMenu( menuBar ); | 32 | settingsMenu = new QPopupMenu( menuBar ); |
33 | menuBar->insertItem( tr( "Settings" ), settingsMenu ); | 33 | menuBar->insertItem( i18n( "Settings" ), settingsMenu ); |
34 | 34 | ||
35 | addToolBar( toolBar ); | 35 | addToolBar( toolBar ); |
36 | toolBar->setHorizontalStretchable( true ); | 36 | toolBar->setHorizontalStretchable( true ); |
37 | QAction* getMail = new QAction( tr( "Get all new mails" ), SmallIcon("enter"), | 37 | QAction* getMail = new QAction( i18n( "Get all new mails" ), SmallIcon("enter"), |
38 | 0, 0, this ); | 38 | 0, 0, this ); |
39 | connect(getMail, SIGNAL( activated() ), | 39 | connect(getMail, SIGNAL( activated() ), |
40 | SLOT( slotGetAllMail() ) ); | 40 | SLOT( slotGetAllMail() ) ); |
41 | getMail->addTo( mailMenu ); | 41 | getMail->addTo( mailMenu ); |
42 | 42 | ||
43 | getMail = new QAction( tr( "Get new messages" ), SmallIcon("add"), | 43 | getMail = new QAction( i18n( "Get new messages" ), SmallIcon("add"), |
44 | 0, 0, this ); | 44 | 0, 0, this ); |
45 | getMail->addTo( toolBar ); | 45 | getMail->addTo( toolBar ); |
46 | getMail->addTo( mailMenu ); | 46 | getMail->addTo( mailMenu ); |
47 | connect(getMail, SIGNAL( activated() ), | 47 | connect(getMail, SIGNAL( activated() ), |
48 | SLOT( slotGetMail() ) ); | 48 | SLOT( slotGetMail() ) ); |
49 | 49 | ||
50 | composeMail = new QAction( tr( "Compose new mail" ), SmallIcon("composemail"), | 50 | composeMail = new QAction( i18n( "Compose new mail" ), SmallIcon("composemail"), |
51 | 0, 0, this ); | 51 | 0, 0, this ); |
52 | composeMail->addTo( toolBar ); | 52 | composeMail->addTo( toolBar ); |
53 | composeMail->addTo( mailMenu ); | 53 | composeMail->addTo( mailMenu ); |
54 | 54 | ||
55 | sendQueued = new QAction( tr( "Send queued mails" ), SmallIcon("sendqueued") , | 55 | sendQueued = new QAction( i18n( "Send queued mails" ), SmallIcon("sendqueued") , |
56 | 0, 0, this ); | 56 | 0, 0, this ); |
57 | sendQueued->addTo( toolBar ); | 57 | sendQueued->addTo( toolBar ); |
58 | sendQueued->addTo( mailMenu ); | 58 | sendQueued->addTo( mailMenu ); |
59 | 59 | ||
60 | /* | 60 | /* |
61 | syncFolders = new QAction( tr( "Sync mailfolders" ), ICON_SYNC, | 61 | syncFolders = new QAction( i18n( "Sync mailfolders" ), ICON_SYNC, |
62 | 0, 0, this ); | 62 | 0, 0, this ); |
63 | syncFolders->addTo( toolBar ); | 63 | syncFolders->addTo( toolBar ); |
64 | syncFolders->addTo( mailMenu ); | 64 | syncFolders->addTo( mailMenu ); |
65 | */ | 65 | */ |
66 | 66 | ||
67 | showFolders = new QAction( tr( "Show/Hide folders" ), SmallIcon("showfolders") , | 67 | showFolders = new QAction( i18n( "Show/Hide folders" ), SmallIcon("showfolders") , |
68 | 0, 0, this, 0, true ); | 68 | 0, 0, this, 0, true ); |
69 | showFolders->addTo( toolBar ); | 69 | showFolders->addTo( toolBar ); |
70 | showFolders->addTo( mailMenu ); | 70 | showFolders->addTo( mailMenu ); |
71 | showFolders->setOn( true ); | 71 | showFolders->setOn( true ); |
72 | connect(showFolders, SIGNAL( toggled(bool) ), | 72 | connect(showFolders, SIGNAL( toggled(bool) ), |
73 | SLOT( slotShowFolders(bool) ) ); | 73 | SLOT( slotShowFolders(bool) ) ); |
74 | 74 | ||
75 | /* | 75 | /* |
76 | searchMails = new QAction( tr( "Search mails" ), SmallIcon("find") ), | 76 | searchMails = new QAction( i18n( "Search mails" ), SmallIcon("find") ), |
77 | 0, 0, this ); | 77 | 0, 0, this ); |
78 | searchMails->addTo( toolBar ); | 78 | searchMails->addTo( toolBar ); |
79 | searchMails->addTo( mailMenu ); | 79 | searchMails->addTo( mailMenu ); |
80 | */ | 80 | */ |
81 | 81 | ||
82 | deleteMails = new QAction(tr("Delete Mail"), SmallIcon("trash"), 0, 0, this); | 82 | deleteMails = new QAction(i18n("Delete Mail"), SmallIcon("trash"), 0, 0, this); |
83 | deleteMails->addTo( toolBar ); | 83 | deleteMails->addTo( toolBar ); |
84 | deleteMails->addTo( mailMenu ); | 84 | deleteMails->addTo( mailMenu ); |
85 | connect( deleteMails, SIGNAL( activated() ), | 85 | connect( deleteMails, SIGNAL( activated() ), |
86 | SLOT( slotDeleteMail() ) ); | 86 | SLOT( slotDeleteMail() ) ); |
87 | 87 | ||
88 | editSettings = new QAction( tr( "Edit settings" ), SmallIcon("SettingsIcon") , | 88 | editSettings = new QAction( i18n( "Edit settings" ), SmallIcon("SettingsIcon") , |
89 | 0, 0, this ); | 89 | 0, 0, this ); |
90 | editSettings->addTo( settingsMenu ); | 90 | editSettings->addTo( settingsMenu ); |
91 | connect( editSettings, SIGNAL( activated() ), | 91 | connect( editSettings, SIGNAL( activated() ), |
92 | SLOT( slotEditSettings() ) ); | 92 | SLOT( slotEditSettings() ) ); |
93 | editAccounts = new QAction( tr( "Configure accounts" ), SmallIcon("editaccounts") , | 93 | editAccounts = new QAction( i18n( "Configure accounts" ), SmallIcon("editaccounts") , |
94 | 0, 0, this ); | 94 | 0, 0, this ); |
95 | editAccounts->addTo( settingsMenu ); | 95 | editAccounts->addTo( settingsMenu ); |
96 | 96 | ||
97 | //setCentralWidget( view ); | 97 | //setCentralWidget( view ); |
98 | 98 | ||
99 | QVBox* wrapperBox = new QVBox( this ); | 99 | QVBox* wrapperBox = new QVBox( this ); |
100 | setCentralWidget( wrapperBox ); | 100 | setCentralWidget( wrapperBox ); |
101 | 101 | ||
102 | // QWidget *view = new QWidget( wrapperBox ); | 102 | // QWidget *view = new QWidget( wrapperBox ); |
103 | KDGanttMinimizeSplitter* split = new KDGanttMinimizeSplitter( Qt::Horizontal, wrapperBox); | 103 | KDGanttMinimizeSplitter* split = new KDGanttMinimizeSplitter( Qt::Horizontal, wrapperBox); |
104 | split->setMinimizeDirection( KDGanttMinimizeSplitter::Left); | 104 | split->setMinimizeDirection( KDGanttMinimizeSplitter::Left); |
105 | //layout = new QBoxLayout ( split, QBoxLayout::LeftToRight ); | 105 | //layout = new QBoxLayout ( split, QBoxLayout::LeftToRight ); |
106 | 106 | ||
107 | folderView = new AccountView( split ); | 107 | folderView = new AccountView( split ); |
108 | folderView->header()->hide(); | 108 | folderView->header()->hide(); |
109 | folderView->setRootIsDecorated( false ); | 109 | folderView->setRootIsDecorated( false ); |
110 | folderView->addColumn( tr( "Mailbox" ) ); | 110 | folderView->addColumn( i18n( "Mailbox" ) ); |
111 | 111 | ||
112 | //layout->addWidget( folderView ); | 112 | //layout->addWidget( folderView ); |
113 | 113 | ||
114 | mailView = new QListView( split ); | 114 | mailView = new QListView( split ); |
115 | mailView->addColumn( tr( " " ) ); | 115 | mailView->addColumn( i18n( " " ) ); |
116 | mailView->addColumn( tr( "Subject" ),QListView::Manual ); | 116 | mailView->addColumn( i18n( "Subject" ),QListView::Manual ); |
117 | mailView->addColumn( tr( "Sender" ),QListView::Manual ); | 117 | mailView->addColumn( i18n( "Sender" ),QListView::Manual ); |
118 | mailView->addColumn( tr( "Size" ),QListView::Manual); | 118 | mailView->addColumn( i18n( "Size" ),QListView::Manual); |
119 | mailView->addColumn( tr( "Date" ),QListView::Manual); | 119 | mailView->addColumn( i18n( "Date" ),QListView::Manual); |
120 | mailView->setAllColumnsShowFocus(true); | 120 | mailView->setAllColumnsShowFocus(true); |
121 | //mailView->setSorting(-1); | 121 | //mailView->setSorting(-1); |
122 | mailView->setRootIsDecorated( false ); | 122 | mailView->setRootIsDecorated( false ); |
123 | statusWidget = new StatusWidget( wrapperBox ); | 123 | statusWidget = new StatusWidget( wrapperBox ); |
124 | statusWidget->hide(); | 124 | statusWidget->hide(); |
125 | 125 | ||
126 | //layout->addWidget( mailView ); | 126 | //layout->addWidget( mailView ); |
127 | //layout->setStretchFactor( folderView, 1 ); | 127 | //layout->setStretchFactor( folderView, 1 ); |
@@ -154,32 +154,32 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags flags ) | |||
154 | list.append( 100 ); | 154 | list.append( 100 ); |
155 | split->setSizes( list ); | 155 | split->setSizes( list ); |
156 | QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) ); | 156 | QTimer::singleShot( 1000, this, SLOT( slotAdjustColumns() ) ); |
157 | mailView->setShowSortIndicator ( true ); | 157 | mailView->setShowSortIndicator ( true ); |
158 | QLabel *spacer = new QLabel( toolBar ); | 158 | QLabel *spacer = new QLabel( toolBar ); |
159 | spacer->setBackgroundMode( QWidget::PaletteButton ); | 159 | spacer->setBackgroundMode( QWidget::PaletteButton ); |
160 | toolBar->setStretchableWidget( spacer ); | 160 | toolBar->setStretchableWidget( spacer ); |
161 | 161 | ||
162 | QAction* closeMail = new QAction(tr("Close"),SmallIcon("exit"), 0, 0, this); | 162 | QAction* closeMail = new QAction(i18n("Close"),SmallIcon("exit"), 0, 0, this); |
163 | connect( closeMail, SIGNAL( activated() ), SLOT( close() ) ); | 163 | connect( closeMail, SIGNAL( activated() ), SLOT( close() ) ); |
164 | if ( QApplication::desktop()->width() > 320 ) | 164 | if ( QApplication::desktop()->width() > 320 ) |
165 | closeMail->addTo(toolBar); | 165 | closeMail->addTo(toolBar); |
166 | closeMail->addTo(mailMenu); | 166 | closeMail->addTo(mailMenu); |
167 | 167 | ||
168 | 168 | ||
169 | QPopupMenu* helpMenu = new QPopupMenu( menuBar ); | 169 | QPopupMenu* helpMenu = new QPopupMenu( menuBar ); |
170 | menuBar->insertItem( tr( "Help" ), helpMenu ); | 170 | menuBar->insertItem( i18n( "Help" ), helpMenu ); |
171 | QAction* li = new QAction(tr("About"), QPixmap(), 0, 0, this); | 171 | QAction* li = new QAction(i18n("About"), QPixmap(), 0, 0, this); |
172 | connect( li, SIGNAL( activated() ), SLOT( showAbout()) ); | 172 | connect( li, SIGNAL( activated() ), SLOT( showAbout()) ); |
173 | li->addTo(helpMenu); | 173 | li->addTo(helpMenu); |
174 | li = new QAction(tr("Licence"),QPixmap(), 0, 0, this); | 174 | li = new QAction(i18n("Licence"),QPixmap(), 0, 0, this); |
175 | connect( li, SIGNAL( activated() ), SLOT( showLicence()) ); | 175 | connect( li, SIGNAL( activated() ), SLOT( showLicence()) ); |
176 | li->addTo(helpMenu); | 176 | li->addTo(helpMenu); |
177 | li = new QAction(tr("LibEtPan Licence"), QPixmap(), 0, 0, this); | 177 | li = new QAction(i18n("LibEtPan Licence"), QPixmap(), 0, 0, this); |
178 | connect( li, SIGNAL( activated() ), SLOT( showEtpanLicence()) ); | 178 | connect( li, SIGNAL( activated() ), SLOT( showEtpanLicence()) ); |
179 | li->addTo(helpMenu); | 179 | li->addTo(helpMenu); |
180 | } | 180 | } |
181 | 181 | ||
182 | MainWindow::~MainWindow() | 182 | MainWindow::~MainWindow() |
183 | { | 183 | { |
184 | } | 184 | } |
185 | 185 | ||
diff --git a/kmicromail/opiemail.cpp b/kmicromail/opiemail.cpp index 164988c..3aa7905 100644 --- a/kmicromail/opiemail.cpp +++ b/kmicromail/opiemail.cpp | |||
@@ -6,16 +6,17 @@ | |||
6 | #include "editaccounts.h" | 6 | #include "editaccounts.h" |
7 | #include "composemail.h" | 7 | #include "composemail.h" |
8 | #include "mailistviewitem.h" | 8 | #include "mailistviewitem.h" |
9 | #include "viewmail.h" | 9 | #include "viewmail.h" |
10 | #include "selectstore.h" | 10 | #include "selectstore.h" |
11 | #include "selectsmtp.h" | 11 | #include "selectsmtp.h" |
12 | #include "accountitem.h" | 12 | #include "accountitem.h" |
13 | #include "koprefsdialog.h" | 13 | #include "koprefsdialog.h" |
14 | #include "klocale.h" | ||
14 | 15 | ||
15 | #include <qmessagebox.h> | 16 | #include <qmessagebox.h> |
16 | #include <qtimer.h> | 17 | #include <qtimer.h> |
17 | #include <libkdepim/externalapphandler.h> | 18 | #include <libkdepim/externalapphandler.h> |
18 | #include <libkdepim/kpimglobalprefs.h> | 19 | #include <libkdepim/kpimglobalprefs.h> |
19 | 20 | ||
20 | #include <qpe/qpeapplication.h> | 21 | #include <qpe/qpeapplication.h> |
21 | #include <libmailwrapper/smtpwrapper.h> | 22 | #include <libmailwrapper/smtpwrapper.h> |
@@ -171,17 +172,17 @@ void OpieMail::slotSendQueued() | |||
171 | if ( it->getType() == MAILLIB::A_SMTP ) | 172 | if ( it->getType() == MAILLIB::A_SMTP ) |
172 | { | 173 | { |
173 | smtp = static_cast<SMTPaccount *>(it); | 174 | smtp = static_cast<SMTPaccount *>(it); |
174 | smtpList.append(smtp); | 175 | smtpList.append(smtp); |
175 | } | 176 | } |
176 | } | 177 | } |
177 | if (smtpList.count()==0) | 178 | if (smtpList.count()==0) |
178 | { | 179 | { |
179 | QMessageBox::information(0,tr("Info"),tr("Define a smtp account first!\n")); | 180 | QMessageBox::information(0,i18n("Info"),i18n("Define a smtp account first!\n")); |
180 | return; | 181 | return; |
181 | } | 182 | } |
182 | if (smtpList.count()==1) | 183 | if (smtpList.count()==1) |
183 | { | 184 | { |
184 | smtp = smtpList.at(0); | 185 | smtp = smtpList.at(0); |
185 | } | 186 | } |
186 | else | 187 | else |
187 | { | 188 | { |
@@ -194,17 +195,17 @@ void OpieMail::slotSendQueued() | |||
194 | smtp = selsmtp.selected_smtp(); | 195 | smtp = selsmtp.selected_smtp(); |
195 | } | 196 | } |
196 | } | 197 | } |
197 | if (smtp) | 198 | if (smtp) |
198 | { | 199 | { |
199 | SMTPwrapper * wrap = new SMTPwrapper(smtp); | 200 | SMTPwrapper * wrap = new SMTPwrapper(smtp); |
200 | if ( wrap->flushOutbox() ) | 201 | if ( wrap->flushOutbox() ) |
201 | { | 202 | { |
202 | QMessageBox::information(0,tr("Info"),tr("Mail queue flushed")); | 203 | QMessageBox::information(0,i18n("Info"),i18n("Mail queue flushed")); |
203 | } | 204 | } |
204 | delete wrap; | 205 | delete wrap; |
205 | } | 206 | } |
206 | } | 207 | } |
207 | 208 | ||
208 | void OpieMail::slotSearchMails() | 209 | void OpieMail::slotSearchMails() |
209 | { | 210 | { |
210 | qDebug("OpieMail::slotSearchMails():not implemented "); | 211 | qDebug("OpieMail::slotSearchMails():not implemented "); |
@@ -268,27 +269,27 @@ void OpieMail::slotGetMail() | |||
268 | QListViewItem * item = folderView->currentItem(); | 269 | QListViewItem * item = folderView->currentItem(); |
269 | if ( ! item ) return; | 270 | if ( ! item ) return; |
270 | ((AccountViewItem *)item)->contextMenuSelected( 101 ); | 271 | ((AccountViewItem *)item)->contextMenuSelected( 101 ); |
271 | } | 272 | } |
272 | void OpieMail::slotDeleteMail() | 273 | void OpieMail::slotDeleteMail() |
273 | { | 274 | { |
274 | if (!mailView->currentItem()) return; | 275 | if (!mailView->currentItem()) return; |
275 | RecMailP mail = ((MailListViewItem*)mailView->currentItem() )->data(); | 276 | RecMailP mail = ((MailListViewItem*)mailView->currentItem() )->data(); |
276 | if ( QMessageBox::warning(this, tr("Delete Mail"), QString( tr("<p>Do you really want to delete this mail? <br><br>" ) + mail->getFrom() + " - " + mail->getSubject() ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 277 | if ( QMessageBox::warning(this, i18n("Delete Mail"), QString( i18n("<p>Do you really want to delete this mail? <br><br>" ) + mail->getFrom() + " - " + mail->getSubject() ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
277 | { | 278 | { |
278 | mail->Wrapper()->deleteMail( mail ); | 279 | mail->Wrapper()->deleteMail( mail ); |
279 | folderView->refreshCurrent(); | 280 | folderView->refreshCurrent(); |
280 | } | 281 | } |
281 | } | 282 | } |
282 | void OpieMail::slotDeleteAllMail() | 283 | void OpieMail::slotDeleteAllMail() |
283 | { | 284 | { |
284 | 285 | ||
285 | QValueList<RecMailP> t; | 286 | QValueList<RecMailP> t; |
286 | if ( QMessageBox::warning(this, tr("Delete All Mails"), tr("Do you really want to delete\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 287 | if ( QMessageBox::warning(this, i18n("Delete All Mails"), i18n("Do you really want to delete\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
287 | { | 288 | { |
288 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); | 289 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); |
289 | while ( item ) { | 290 | while ( item ) { |
290 | if ( item->isSelected() ) { | 291 | if ( item->isSelected() ) { |
291 | t.append( item->data() ); | 292 | t.append( item->data() ); |
292 | } | 293 | } |
293 | item = (MailListViewItem*)item->nextSibling(); | 294 | item = (MailListViewItem*)item->nextSibling(); |
294 | } | 295 | } |
@@ -315,32 +316,32 @@ void OpieMail::mailHold(int button, QListViewItem *item,const QPoint&,int ) | |||
315 | MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType(); | 316 | MAILLIB::ATYPE mailtype = ((MailListViewItem*)mailView->currentItem() )->wrapperType(); |
316 | /* just the RIGHT button - or hold on pda */ | 317 | /* just the RIGHT button - or hold on pda */ |
317 | if (button!=2) {return;} | 318 | if (button!=2) {return;} |
318 | if (!item) return; | 319 | if (!item) return; |
319 | QPopupMenu *m = new QPopupMenu(0); | 320 | QPopupMenu *m = new QPopupMenu(0); |
320 | if (m) | 321 | if (m) |
321 | { | 322 | { |
322 | if (mailtype==MAILLIB::A_NNTP) { | 323 | if (mailtype==MAILLIB::A_NNTP) { |
323 | m->insertItem(tr("Read this posting"),this,SLOT(displayMail())); | 324 | m->insertItem(i18n("Read this posting"),this,SLOT(displayMail())); |
324 | m->insertItem(tr("Copy this posting"),this,SLOT(slotMoveCopyMail())); | 325 | m->insertItem(i18n("Copy this posting"),this,SLOT(slotMoveCopyMail())); |
325 | m->insertSeparator(); | 326 | m->insertSeparator(); |
326 | m->insertItem(tr("Copy all selected postings"),this,SLOT(slotMoveCopyAllMail())); | 327 | m->insertItem(i18n("Copy all selected postings"),this,SLOT(slotMoveCopyAllMail())); |
327 | m->insertItem(tr("Clear selection"),this,SLOT(clearSelection())); | 328 | m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection())); |
328 | } else { | 329 | } else { |
329 | if (folderView->currentisDraft()) { | 330 | if (folderView->currentisDraft()) { |
330 | m->insertItem(tr("Edit this mail"),this,SLOT(reEditMail())); | 331 | m->insertItem(i18n("Edit this mail"),this,SLOT(reEditMail())); |
331 | } | 332 | } |
332 | m->insertItem(tr("Read this mail"),this,SLOT(displayMail())); | 333 | m->insertItem(i18n("Read this mail"),this,SLOT(displayMail())); |
333 | m->insertItem(tr("Move/Copy this mail"),this,SLOT(slotMoveCopyMail())); | 334 | m->insertItem(i18n("Move/Copy this mail"),this,SLOT(slotMoveCopyMail())); |
334 | m->insertItem(tr("Delete this mail"),this,SLOT(slotDeleteMail())); | 335 | m->insertItem(i18n("Delete this mail"),this,SLOT(slotDeleteMail())); |
335 | m->insertSeparator(); | 336 | m->insertSeparator(); |
336 | m->insertItem(tr("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail())); | 337 | m->insertItem(i18n("Move/Copy all selected mail"),this,SLOT(slotMoveCopyAllMail())); |
337 | m->insertItem(tr("Delete all selected mails"),this,SLOT(slotDeleteAllMail())); | 338 | m->insertItem(i18n("Delete all selected mails"),this,SLOT(slotDeleteAllMail())); |
338 | m->insertItem(tr("Clear selection"),this,SLOT(clearSelection())); | 339 | m->insertItem(i18n("Clear selection"),this,SLOT(clearSelection())); |
339 | } | 340 | } |
340 | m->setFocus(); | 341 | m->setFocus(); |
341 | m->exec( QPoint( QCursor::pos().x(), QCursor::pos().y()) ); | 342 | m->exec( QPoint( QCursor::pos().x(), QCursor::pos().y()) ); |
342 | delete m; | 343 | delete m; |
343 | } | 344 | } |
344 | } | 345 | } |
345 | 346 | ||
346 | void OpieMail::slotShowFolders( bool show ) | 347 | void OpieMail::slotShowFolders( bool show ) |
@@ -395,33 +396,33 @@ void OpieMail::slotMoveCopyMail() | |||
395 | targetFolder = sels.currentFolder(); | 396 | targetFolder = sels.currentFolder(); |
396 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || | 397 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || |
397 | targetFolder.isEmpty()) | 398 | targetFolder.isEmpty()) |
398 | { | 399 | { |
399 | return; | 400 | return; |
400 | } | 401 | } |
401 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 402 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
402 | { | 403 | { |
403 | QMessageBox::critical(0,tr("Error creating new Folder"), | 404 | QMessageBox::critical(0,i18n("Error creating new Folder"), |
404 | tr("<center>Error while creating<br>new folder - breaking.</center>")); | 405 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); |
405 | return; | 406 | return; |
406 | } | 407 | } |
407 | sels.hide(); | 408 | sels.hide(); |
408 | qApp->processEvents(); | 409 | qApp->processEvents(); |
409 | // qDebug("hiding sels "); | 410 | // qDebug("hiding sels "); |
410 | mail->Wrapper()->mvcpMail(mail,targetFolder,targetMail,sels.moveMails()); | 411 | mail->Wrapper()->mvcpMail(mail,targetFolder,targetMail,sels.moveMails()); |
411 | folderView->refreshCurrent(); | 412 | folderView->refreshCurrent(); |
412 | } | 413 | } |
413 | 414 | ||
414 | void OpieMail::slotMoveCopyAllMail() | 415 | void OpieMail::slotMoveCopyAllMail() |
415 | { | 416 | { |
416 | 417 | ||
417 | if (!mailView->currentItem()) return; | 418 | if (!mailView->currentItem()) return; |
418 | QValueList<RecMailP> t; | 419 | QValueList<RecMailP> t; |
419 | // if ( QMessageBox::warning(this, tr("Move/Copy all selected mails"), tr("Do you really want to copy/move\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) | 420 | // if ( QMessageBox::warning(this, i18n("Move/Copy all selected mails"), i18n("Do you really want to copy/move\nall selected mails?" ) , QMessageBox::Yes, QMessageBox::No ) == QMessageBox::Yes ) |
420 | { | 421 | { |
421 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); | 422 | MailListViewItem* item = (MailListViewItem*)mailView->firstChild (); |
422 | while ( item ) { | 423 | while ( item ) { |
423 | if ( item->isSelected() ) { | 424 | if ( item->isSelected() ) { |
424 | t.append( item->data() ); | 425 | t.append( item->data() ); |
425 | } | 426 | } |
426 | item = (MailListViewItem*)item->nextSibling(); | 427 | item = (MailListViewItem*)item->nextSibling(); |
427 | } | 428 | } |
@@ -440,18 +441,18 @@ void OpieMail::slotMoveCopyAllMail() | |||
440 | targetFolder = sels.currentFolder(); | 441 | targetFolder = sels.currentFolder(); |
441 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || | 442 | if ( (mail->Wrapper()==targetMail && mail->getMbox()==targetFolder) || |
442 | targetFolder.isEmpty()) | 443 | targetFolder.isEmpty()) |
443 | { | 444 | { |
444 | return; | 445 | return; |
445 | } | 446 | } |
446 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 447 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
447 | { | 448 | { |
448 | QMessageBox::critical(0,tr("Error creating new Folder"), | 449 | QMessageBox::critical(0,i18n("Error creating new Folder"), |
449 | tr("<center>Error while creating<br>new folder - breaking.</center>")); | 450 | i18n("<center>Error while creating<br>new folder - breaking.</center>")); |
450 | return; | 451 | return; |
451 | } | 452 | } |
452 | sels.hide(); | 453 | sels.hide(); |
453 | qApp->processEvents(); | 454 | qApp->processEvents(); |
454 | //qDebug("hiding sels "); | 455 | //qDebug("hiding sels "); |
455 | mail->Wrapper()->mvcpMailList(t,targetFolder,targetMail,sels.moveMails()); | 456 | mail->Wrapper()->mvcpMailList(t,targetFolder,targetMail,sels.moveMails()); |
456 | folderView->refreshCurrent(); | 457 | folderView->refreshCurrent(); |
457 | } | 458 | } |