Stephan Kulow
3ceeb4fc02
merged the kmreaderwin split
...
merged the Makefile.am and add all files that were added in make_it_cool
to get smaller diffs [most of them not yet compiled :]
svn path=/trunk/kdenetwork/kmail/; revision=191335
24 years ago
Marc Mutz
cf9449f22b
from make_it_cool: remove duplicates feature with status message added
...
svn path=/trunk/kdenetwork/kmail/; revision=191242
24 years ago
Marc Mutz
3cab992bfc
from make_it_cool: more towards ad-hoc-filters (actually, they should work, but they don't :-( At least it doesn't break other filter-related stuff. Let's leave something to be done for tomorrow...
...
svn path=/trunk/kdenetwork/kmail/; revision=191216
24 years ago
Marc Mutz
f09922abec
from make_it_cool: systray notification
...
svn path=/trunk/kdenetwork/kmail/; revision=191168
24 years ago
Bo Thorsen
8b8db5ccc8
Disconnected IMAP mode
...
svn path=/trunk/kdenetwork/kmail/; revision=191154
24 years ago
Stephan Kulow
e6461866a8
ported Don's KMKernel::config into HEAD
...
svn path=/trunk/kdenetwork/kmail/; revision=190863
24 years ago
Marc Mutz
c207fdd2e9
from kroupware_branch: Sieve Vacation support
...
svn path=/trunk/kdenetwork/kmail/; revision=190697
24 years ago
Ingo Klcker
104208bb94
Restore the header layout also in the ctor of KMMainWin after calling KMHeaders::readConfig. This fixes the problem Michael reported.
...
svn path=/trunk/kdenetwork/kmail/; revision=188725
24 years ago
Carsten Burghardt
a9299217d3
Add the possibility to select the startup-folder. This is a hidden feature and is only necessary for people who use only imap and get confused by the local folders. Reviewed (and requested ;-)) by Ingo.
...
svn path=/trunk/kdenetwork/kmail/; revision=186220
24 years ago
Ingo Klcker
799879fb7e
Give KMail's different windows some different names so that kwin's store window settings feature works correctly. This (together with Lubos' changes in kwin) fixes bug 49369
...
svn path=/trunk/kdenetwork/kmail/; revision=185656
24 years ago
Ingo Klcker
014c8e2fcf
Really fix Bug 39876 by restoring the useFixedFont toggle action correctly.
...
svn path=/trunk/kdenetwork/kmail/; revision=184582
24 years ago
Ingo Klcker
7922ee5f12
Remove the obsolete new mail notification code.
...
svn path=/trunk/kdenetwork/kmail/; revision=184580
24 years ago
Carsten Burghardt
ff80f4e450
Fix multiple undos, fix threading after undo, make undo a KMMoveCommand, make the undostack a QObject and make it emit signals on changes. Correct the default sizes of kmmainwin. Reviewed by Ingo.
...
svn path=/trunk/kdenetwork/kmail/; revision=183472
24 years ago
Ingo Klcker
d616951db2
Replace NULL and 0L with 0 everywhere and clean up some delete foo
...
svn path=/trunk/kdenetwork/kmail/; revision=183391
24 years ago
Ingo Klcker
32eb97af4f
Oops, I did it again.
...
Revert all commits except the correct one.
svn path=/trunk/kdenetwork/kmail/; revision=182313
24 years ago
Ingo Klcker
5bcb437307
CVS_SILENT Style guide text fix: Select crypto module -> Select Crypto Module
...
svn path=/trunk/kdenetwork/kmail/; revision=182312
24 years ago
Stephan Kulow
ada56bde7e
preventing crash again
...
- if (curMsgSerNum != msg->getMsgSerNum())
+ if (msg && curMsgSerNum != msg->getMsgSerNum())
CCMAIL: 48258-close@bugs.kde.org
svn path=/trunk/kdenetwork/kmail/; revision=180269
24 years ago
Stephan Kulow
07312a4c0e
prevent some slots from creating crashing KMCommands.
...
somehow the key actions for e.g. reply aren't disabled correctly, so
that pressing 'R' after kmail startup causes slotReply to be called,
but no current msg to be selected to reply on -> bang.
No idea where the problem came from, but I think crashing is not good
and some of the slots actually check for a selected msg.
svn path=/trunk/kdenetwork/kmail/; revision=179460
24 years ago
Michael Haeckel
f550ec081f
Make the option to show the MIME tree always really working.
...
Patch by Martin Koller <m.koller@surfeu.at>
svn path=/trunk/kdenetwork/kmail/; revision=179004
24 years ago
Stephan Binner
0a6bbba33a
CVS_SILENT Style guide fix, use "cvslastchange" or X-WebCVS header line to view
...
svn path=/trunk/kdenetwork/kmail/; revision=178742
24 years ago
Michael Haeckel
7c0a73b953
Rename the delete message action.
...
Upgraders now get the default keybinding instead of the same keybinding for
two different actions.
svn path=/trunk/kdenetwork/kmail/; revision=177916
24 years ago
Ingo Klcker
8d8c5bf44e
Move the config dialog to the kernel and make it available in the composer. Patch approved by Marc.
...
svn path=/trunk/kdenetwork/kmail/; revision=177800
24 years ago
Michael Haeckel
7fa3617162
CCMAIL: 47727-close@bugs.kde.org
...
Use a correct text for the empty folder action and the warning message for
the trash folder.
svn path=/trunk/kdenetwork/kmail/; revision=177407
24 years ago
Michael Haeckel
8682af9851
Move the KMCommand changes back in as it was the general agreement.
...
Sorry for not bying that this can't be seperated for the rest of changes we
didn't like.
svn path=/trunk/kdenetwork/kmail/; revision=176966
24 years ago
Don Sanders
4b3f78176b
Reverting all my recent changes as requested by Michael.
...
svn path=/trunk/kdenetwork/kmail/; revision=176742
24 years ago
Don Sanders
94194878d6
I remembered why I need the trivial slotCopySelectedText slot.
...
It's to handle the case when the user selects the configuration dialog
and changes the appearance (long/short foldertree).
The problem is mMsgView gets deleted and a new one created, so I can't
KStdAction::copy( mMsgView, SLOT(slotCopySelectedText), ....
instead I have to create a trival
void KMMainWin::slotCopySelectedText()
{
mMsgView->slotCopySelectedText();
}
and then
KStdAction::copy( this, SLOT(slotCopySelectedText), ....
which sucks. I wonder if there is a way to change the object that a
KAction is connected to.
svn path=/trunk/kdenetwork/kmail/; revision=176350
24 years ago
Michael Haeckel
0bc597d246
Oops that patch had a bug...
...
svn path=/trunk/kdenetwork/kmail/; revision=175911
24 years ago
Michael Haeckel
7d98570ab4
Don't allow editing mails in the outbox while sending is in progress.
...
This solution is actually better than my previous fix.
Patch by ville <vi64pa@koti.soon.fi>
svn path=/trunk/kdenetwork/kmail/; revision=175901
24 years ago
Don Sanders
05cde7e1a7
Code cleanup, make various actions (reply, replyall, etc, etc) independent
...
of gui classes.
svn path=/trunk/kdenetwork/kmail/; revision=175796
24 years ago
Michael Haeckel
b444f4cefa
Don't allow editing mails in the outbox while sending is in progress.
...
svn path=/trunk/kdenetwork/kmail/; revision=175554
24 years ago
Stephan Kulow
63e8cb9980
accel clashes in the main windows
...
svn path=/trunk/kdenetwork/kmail/; revision=175437
24 years ago
Ingo Klcker
6615a799d3
GUI cleanup for more consistency with other applications (based on patch by Martin Koller)
...
svn path=/trunk/kdenetwork/kmail/; revision=175069
24 years ago
Carsten Pfeiffer
be5e7bf43d
- centralize CryptPlugWrapperList in KMKernel to fix ownership problems
...
- replace KMKernel::self() with kernel
- introduce KMTextBrowser for viewing raw messages or text-attachments
to fix memory leaks
svn path=/trunk/kdenetwork/kmail/; revision=175027
24 years ago
Marc Mutz
473d86b6c5
There's a _very_ subtle difference between KTipDialog::showTip( 0 ) and ::showTip( this )...
...
svn path=/trunk/kdenetwork/kmail/; revision=174944
24 years ago
Malcolm Hunter
1f3d5eccc2
CVS_SILENT Corrected typographical errors
...
When replying, please CC me - I'm not subscribed
svn path=/trunk/kdenetwork/kmail/; revision=174270
24 years ago
Ingo Klcker
6ae3fc833e
Make D the primary shortcut for 'Move to Trash'
...
svn path=/trunk/kdenetwork/kmail/; revision=174174
24 years ago
Carsten Burghardt
39cbf8df78
do not scroll the currently displayed imap-message to top if new mail arrives
...
svn path=/trunk/kdenetwork/kmail/; revision=173564
24 years ago
Ingo Klcker
ef1ea5b6e7
Patch by Martin Koller <m.koller@surfeu.at> which adds a real (irrevocable) delete action to KMail. The old 'Delete' action is renamed to 'Move to Trash'. The default bindings for 'Move to Trash' are still 'D' and 'Del'. The new 'Delete' action is bound to 'Shift+Del'.
...
svn path=/trunk/kdenetwork/kmail/; revision=173174
24 years ago
Luk Tinkl
38d08465c2
missing i18n()
...
svn path=/trunk/kdenetwork/kmail/; revision=172840
24 years ago
Stephan Kulow
6bb62771fd
conflicting accels
...
svn path=/trunk/kdenetwork/kmail/; revision=172244
24 years ago
Carsten Burghardt
324cc1167a
Add full path to caption
...
svn path=/trunk/kdenetwork/kmail/; revision=172200
24 years ago
Thomas Zander
be1d04e5bd
continue message boxes as discussed on kde-core-devel
...
svn path=/trunk/kdenetwork/kmail/; revision=172080
24 years ago
Daniel Molkentin
f80956baf0
Added highlighting for smb:// (Written by Lubos, reviewed by me)
...
svn path=/trunk/kdenetwork/kmail/; revision=172023
24 years ago
Waldo Bastian
9930ea2fd5
Use the standard name "file_save_as" for the Save As action.
...
- <Action name="save_as" />
+ <Action name="file_save_as" />
svn path=/trunk/kdenetwork/kmail/; revision=171874
24 years ago
Stephan Kulow
4254daffe4
more accels. Now all of kmail's menu has accels
...
svn path=/trunk/kdenetwork/kmail/; revision=171820
24 years ago
Zack Rusin
e5b1f5aa20
Last Marc's commit broke emptying of folders (warningYesNo boxes don't have
...
a continue button :) )
svn path=/trunk/kdenetwork/kmail/; revision=171596
24 years ago
Marc Mutz
ab8161685b
CCMAIL: 46369-done@bugs.kde.org, kde-core-devel@kde.org
...
Why does _warning_ContinueCancel default to Continue??
svn path=/trunk/kdenetwork/kmail/; revision=171482
24 years ago
Tim Jansen
4e5485c7f0
Add support for vnc urls (as used by krdc)
...
svn path=/trunk/kdenetwork/kmail/; revision=169466
24 years ago
Carsten Burghardt
3a1d17070a
Fix bug# 45873
...
svn path=/trunk/kdenetwork/kmail/; revision=169460
24 years ago
Malcolm Hunter
3adf01b7ea
Corrected typographical errors
...
svn path=/trunk/kdenetwork/kmail/; revision=169408
24 years ago