author | zautrix <zautrix> | 2004-08-31 21:01:18 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-31 21:01:18 (UTC) |
commit | 3f5c51234c8068f3d4826a2a0066648ace21a19f (patch) (unidiff) | |
tree | 91b76c1c7ddec6628c573e409070070747d99feb /kmicromail/accountview.cpp | |
parent | 95f8d4f1de557bd25ae38807d970208399cec5d1 (diff) | |
download | kdepimpi-3f5c51234c8068f3d4826a2a0066648ace21a19f.zip kdepimpi-3f5c51234c8068f3d4826a2a0066648ace21a19f.tar.gz kdepimpi-3f5c51234c8068f3d4826a2a0066648ace21a19f.tar.bz2 |
Enhancements of kopiemail
-rw-r--r-- | kmicromail/accountview.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/kmicromail/accountview.cpp b/kmicromail/accountview.cpp index 0893733..4ead545 100644 --- a/kmicromail/accountview.cpp +++ b/kmicromail/accountview.cpp | |||
@@ -1,48 +1,50 @@ | |||
1 | 1 | ||
2 | #include "accountview.h" | 2 | #include "accountview.h" |
3 | #include "accountitem.h" | 3 | #include "accountitem.h" |
4 | #include "selectstore.h" | 4 | #include "selectstore.h" |
5 | 5 | ||
6 | #include <libmailwrapper/settings.h> | 6 | #include <libmailwrapper/settings.h> |
7 | #include <libmailwrapper/mailwrapper.h> | 7 | #include <libmailwrapper/mailwrapper.h> |
8 | #include <libmailwrapper/mailtypes.h> | 8 | #include <libmailwrapper/mailtypes.h> |
9 | #include <libmailwrapper/abstractmail.h> | 9 | #include <libmailwrapper/abstractmail.h> |
10 | 10 | ||
11 | /* OPIE */ | 11 | /* OPIE */ |
12 | #include <qpe/qpeapplication.h> | 12 | #include <qpe/qpeapplication.h> |
13 | 13 | ||
14 | /* QT */ | 14 | /* QT */ |
15 | #include <qmessagebox.h> | 15 | #include <qmessagebox.h> |
16 | #include <qpopupmenu.h> | 16 | #include <qpopupmenu.h> |
17 | #include <qcheckbox.h> | ||
18 | #include <qspinbox.h> | ||
17 | 19 | ||
18 | using namespace Opie::Core; | 20 | using namespace Opie::Core; |
19 | AccountView::AccountView( QWidget *parent, const char *name, WFlags flags ) | 21 | AccountView::AccountView( QWidget *parent, const char *name, WFlags flags ) |
20 | : QListView( parent, name, flags ) | 22 | : QListView( parent, name, flags ) |
21 | { | 23 | { |
22 | connect( this, SIGNAL( selectionChanged(QListViewItem*) ), | 24 | connect( this, SIGNAL( selectionChanged(QListViewItem*) ), |
23 | SLOT( refresh(QListViewItem*) ) ); | 25 | SLOT( refresh(QListViewItem*) ) ); |
24 | connect( this, SIGNAL( mouseButtonPressed(int,QListViewItem*,const QPoint&,int) ),this, | 26 | connect( this, SIGNAL( mouseButtonPressed(int,QListViewItem*,const QPoint&,int) ),this, |
25 | SLOT( slotHold(int,QListViewItem*,const QPoint&,int) ) ); | 27 | SLOT( slotHold(int,QListViewItem*,const QPoint&,int) ) ); |
26 | setSorting(0); | 28 | setSorting(0); |
27 | } | 29 | } |
28 | 30 | ||
29 | AccountView::~AccountView() | 31 | AccountView::~AccountView() |
30 | { | 32 | { |
31 | imapAccounts.clear(); | 33 | imapAccounts.clear(); |
32 | mhAccounts.clear(); | 34 | mhAccounts.clear(); |
33 | } | 35 | } |
34 | 36 | ||
35 | void AccountView::slotContextMenu(int id) | 37 | void AccountView::slotContextMenu(int id) |
36 | { | 38 | { |
37 | AccountViewItem *view = static_cast<AccountViewItem *>(currentItem()); | 39 | AccountViewItem *view = static_cast<AccountViewItem *>(currentItem()); |
38 | if (!view) return; | 40 | if (!view) return; |
39 | view->contextMenuSelected(id); | 41 | view->contextMenuSelected(id); |
40 | } | 42 | } |
41 | 43 | ||
42 | void AccountView::slotHold(int button, QListViewItem * item,const QPoint&,int) | 44 | void AccountView::slotHold(int button, QListViewItem * item,const QPoint&,int) |
43 | { | 45 | { |
44 | if (button==1) {return;} | 46 | if (button==1) {return;} |
45 | if (!item) return; | 47 | if (!item) return; |
46 | AccountViewItem *view = static_cast<AccountViewItem *>(item); | 48 | AccountViewItem *view = static_cast<AccountViewItem *>(item); |
47 | QPopupMenu*m = view->getContextMenu(); | 49 | QPopupMenu*m = view->getContextMenu(); |
48 | if (!m) return; | 50 | if (!m) return; |
@@ -129,42 +131,46 @@ void AccountView::setupFolderselect(Selectstore*sels) | |||
129 | sFolders = mhAccounts[i]->subFolders(); | 131 | sFolders = mhAccounts[i]->subFolders(); |
130 | sels->addAccounts(mhAccounts[i]->getWrapper(),sFolders); | 132 | sels->addAccounts(mhAccounts[i]->getWrapper(),sFolders); |
131 | } | 133 | } |
132 | for (i=0; i < imapAccounts.count();++i) | 134 | for (i=0; i < imapAccounts.count();++i) |
133 | { | 135 | { |
134 | if (imapAccounts[i]->offline()) | 136 | if (imapAccounts[i]->offline()) |
135 | continue; | 137 | continue; |
136 | imapAccounts[i]->refreshFolders(false); | 138 | imapAccounts[i]->refreshFolders(false); |
137 | sels->addAccounts(imapAccounts[i]->getWrapper(),imapAccounts[i]->subFolders()); | 139 | sels->addAccounts(imapAccounts[i]->getWrapper(),imapAccounts[i]->subFolders()); |
138 | } | 140 | } |
139 | } | 141 | } |
140 | 142 | ||
141 | void AccountView::downloadMails(const FolderP&fromFolder,AbstractMail*fromWrapper) | 143 | void AccountView::downloadMails(const FolderP&fromFolder,AbstractMail*fromWrapper) |
142 | { | 144 | { |
143 | AbstractMail*targetMail = 0; | 145 | AbstractMail*targetMail = 0; |
144 | QString targetFolder = ""; | 146 | QString targetFolder = ""; |
145 | Selectstore sels; | 147 | Selectstore sels; |
146 | setupFolderselect(&sels); | 148 | setupFolderselect(&sels); |
147 | if (!sels.exec()) return; | 149 | if (!sels.exec()) return; |
148 | targetMail = sels.currentMail(); | 150 | targetMail = sels.currentMail(); |
149 | targetFolder = sels.currentFolder(); | 151 | targetFolder = sels.currentFolder(); |
150 | if ( (fromWrapper==targetMail && fromFolder->getName()==targetFolder) || | 152 | if ( (fromWrapper==targetMail && fromFolder->getName()==targetFolder) || |
151 | targetFolder.isEmpty()) | 153 | targetFolder.isEmpty()) |
152 | { | 154 | { |
153 | return; | 155 | return; |
154 | } | 156 | } |
155 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) | 157 | if (sels.newFolder() && !targetMail->createMbox(targetFolder)) |
156 | { | 158 | { |
157 | QMessageBox::critical(0,tr("Error creating new Folder"), | 159 | QMessageBox::critical(0,tr("Error creating new Folder"), |
158 | tr("<center>Error while creating<br>new folder - breaking.</center>")); | 160 | tr("<center>Error while creating<br>new folder - breaking.</center>")); |
159 | return; | 161 | return; |
160 | } | 162 | } |
161 | fromWrapper->mvcpAllMails(fromFolder,targetFolder,targetMail,sels.moveMails()); | 163 | int maxsize = 0; |
164 | if ( sels.useSize->isChecked()) | ||
165 | maxsize = sels.sizeSpinBox->value(); | ||
166 | |||
167 | fromWrapper->mvcpAllMails(fromFolder,targetFolder,targetMail,sels.moveMails(), maxsize); | ||
162 | refreshCurrent(); | 168 | refreshCurrent(); |
163 | } | 169 | } |
164 | 170 | ||
165 | bool AccountView::currentisDraft() | 171 | bool AccountView::currentisDraft() |
166 | { | 172 | { |
167 | AccountViewItem *view = static_cast<AccountViewItem *>(currentItem()); | 173 | AccountViewItem *view = static_cast<AccountViewItem *>(currentItem()); |
168 | if (!view) return false; | 174 | if (!view) return false; |
169 | return view->isDraftfolder(); | 175 | return view->isDraftfolder(); |
170 | } | 176 | } |