You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

479 lines
16 KiB

/*
This file is part of KMail, the KDE mail client.
Copyright (c) 2002 Don Sanders <sanders@kde.org>
KMail is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
KMail is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
//
// A toplevel KMainWindow derived class for displaying
// single messages or single message parts.
//
// Could be extended to include support for normal main window
// widgets like a toolbar.
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <qaccel.h>
#include <kapplication.h>
#include <klocale.h>
#include <kstdaccel.h>
#include <kwin.h>
#include <kaction.h>
#include <kiconloader.h>
#include <kdebug.h>
#include "kmcommands.h"
#include "kmenubar.h"
#include "kpopupmenu.h"
#include "kmreaderwin.h"
#include "kmfolder.h"
#include "kmmainwidget.h"
#include "kmfoldertree.h"
#include "kmmsgdict.h"
#include "kmreadermainwin.h"
KMReaderMainWin::KMReaderMainWin( bool htmlOverride, bool htmlLoadExtOverride,
char *name )
: KMail::SecondaryWindow( name ? name : "readerwindow#" ),
mMsg( 0 )
{
mReaderWin = new KMReaderWin( this, this, actionCollection() );
//mReaderWin->setShowCompleteMessage( true );
mReaderWin->setAutoDelete( true );
mReaderWin->setHtmlOverride( htmlOverride );
mReaderWin->setHtmlLoadExtOverride( htmlLoadExtOverride );
initKMReaderMainWin();
}
//-----------------------------------------------------------------------------
KMReaderMainWin::KMReaderMainWin( char *name )
: KMail::SecondaryWindow( name ? name : "readerwindow#" ),
mMsg( 0 )
{
mReaderWin = new KMReaderWin( this, this, actionCollection() );
mReaderWin->setAutoDelete( true );
initKMReaderMainWin();
}
//-----------------------------------------------------------------------------
KMReaderMainWin::KMReaderMainWin(KMMessagePart* aMsgPart,
bool aHTML, const QString& aFileName, const QString& pname,
const QString & encoding, char *name )
: KMail::SecondaryWindow( name ? name : "readerwindow#" ),
mMsg( 0 )
{
mReaderWin = new KMReaderWin( this, this, actionCollection() );
mReaderWin->setOverrideEncoding( encoding );
mReaderWin->setMsgPart( aMsgPart, aHTML, aFileName, pname );
initKMReaderMainWin();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::initKMReaderMainWin() {
setCentralWidget( mReaderWin );
setupAccel();
setupGUI( ToolBar | Keys | StatusBar | Create, "kmreadermainwin.rc" );
applyMainWindowSettings( KMKernel::config(), "Separate Reader Window" );
if ( ! mReaderWin->message() ) {
menuBar()->hide();
toolBar( "mainToolBar" )->hide();
}
connect( kmkernel, SIGNAL( configChanged() ),
this, SLOT( slotConfigChanged() ) );
}
//-----------------------------------------------------------------------------
KMReaderMainWin::~KMReaderMainWin()
{
saveMainWindowSettings( KMKernel::config(), "Separate Reader Window" );
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::setUseFixedFont( bool useFixedFont )
{
mReaderWin->setUseFixedFont( useFixedFont );
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::showMsg( const QString & encoding, KMMessage *msg )
{
mReaderWin->setOverrideEncoding( encoding );
mReaderWin->setMsg( msg, true );
mReaderWin->slotTouchMessage();
setCaption( msg->subject() );
mMsg = msg;
menuBar()->show();
toolBar( "mainToolBar" )->show();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotTrashMsg()
{
// find the real msg by its sernum
KMFolder* parent;
int index;
KMMsgDict::instance()->getLocation( mMsg->getMsgSerNum(), &parent, &index );
if ( parent && !parent->isTrash() ) {
// open the folder (ref counted)
parent->open();
KMMessage *msg = parent->getMsg( index );
if (msg) {
KMDeleteMsgCommand *command = new KMDeleteMsgCommand( parent, msg );
command->start();
}
parent->close();
}
close();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotFind()
{
mReaderWin->slotFind();
}
void KMReaderMainWin::slotFindNext()
{
mReaderWin->slotFindNext();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotCopy()
{
mReaderWin->slotCopySelectedText();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotMarkAll()
{
mReaderWin->selectAll();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotPrintMsg()
{
KMCommand *command = new KMPrintCommand( this, mReaderWin->message(),
mReaderWin->htmlOverride(), mReaderWin->htmlLoadExtOverride(),
mReaderWin->isFixedFont(), mReaderWin->overrideEncoding() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotReplyToMsg()
{
KMCommand *command = new KMReplyToCommand( this, mReaderWin->message(),
mReaderWin->copyText() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotReplyAuthorToMsg()
{
KMCommand *command = new KMReplyAuthorCommand( this, mReaderWin->message(),
mReaderWin->copyText() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotReplyAllToMsg()
{
KMCommand *command = new KMReplyToAllCommand( this, mReaderWin->message(),
mReaderWin->copyText() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotReplyListToMsg()
{
KMCommand *command = new KMReplyListCommand( this, mReaderWin->message(),
mReaderWin->copyText() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotForwardInlineMsg()
{
KMCommand *command = 0;
if ( mReaderWin->message() && mReaderWin->message()->parent() ) {
command = new KMForwardInlineCommand( this, mReaderWin->message(),
mReaderWin->message()->parent()->identity() );
} else {
command = new KMForwardInlineCommand( this, mReaderWin->message() );
}
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotForwardAttachedMsg()
{
KMCommand *command = 0;
if ( mReaderWin->message() && mReaderWin->message()->parent() ) {
command = new KMForwardAttachedCommand( this, mReaderWin->message(),
mReaderWin->message()->parent()->identity() );
} else {
command = new KMForwardAttachedCommand( this, mReaderWin->message() );
}
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotForwardDigestMsg()
{
KMCommand *command = 0;
if ( mReaderWin->message() && mReaderWin->message()->parent() ) {
command = new KMForwardDigestCommand( this, mReaderWin->message(),
mReaderWin->message()->parent()->identity() );
} else {
command = new KMForwardDigestCommand( this, mReaderWin->message() );
}
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotRedirectMsg()
{
KMCommand *command = new KMRedirectCommand( this, mReaderWin->message() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotShowMsgSrc()
{
KMMessage *msg = mReaderWin->message();
if ( !msg )
return;
KMCommand *command = new KMShowMsgSrcCommand( this, msg,
mReaderWin->isFixedFont() );
command->start();
}
//-----------------------------------------------------------------------------
void KMReaderMainWin::slotConfigChanged()
{
//readConfig();
}
void KMReaderMainWin::setupAccel()
{
if ( kmkernel->xmlGuiInstance() )
setInstance( kmkernel->xmlGuiInstance() );
//----- File Menu
//mOpenAction = KStdAction::open( this, SLOT( slotOpenMsg() ),
// actionCollection() );
//mSaveAsAction = new KAction( i18n("Save &As..."), "filesave",
// KStdAccel::shortcut( KStdAccel::Save ),
// this, SLOT( slotSaveMsg() ),
// actionCollection(), "file_save_as" );
mSaveAsAction = KStdAction::saveAs( mReaderWin, SLOT( slotSaveMsg() ),
actionCollection() );
mSaveAsAction->setShortcut( KStdAccel::shortcut( KStdAccel::Save ) );
mPrintAction = KStdAction::print( this, SLOT( slotPrintMsg() ),
actionCollection() );
KAction *closeAction = KStdAction::close( this, SLOT( close() ), actionCollection() );
KShortcut closeShortcut = closeAction->shortcut();
closeShortcut.append( KKey(Key_Escape));
closeAction->setShortcut(closeShortcut);
//----- Edit Menu
KStdAction::copy( this, SLOT( slotCopy() ), actionCollection() );
KStdAction::selectAll( this, SLOT( slotMarkAll() ), actionCollection() );
KStdAction::find( this, SLOT(slotFind()), actionCollection() );
KStdAction::findNext( this, SLOT( slotFindNext() ), actionCollection() );
mTrashAction = new KAction( KGuiItem( i18n( "&Move to Trash" ), "edittrash",
i18n( "Move message to trashcan" ) ),
Key_Delete, this, SLOT( slotTrashMsg() ),
actionCollection(), "move_to_trash" );
//----- View Menu
mViewSourceAction = new KAction( i18n("&View Source"), Key_V, this,
SLOT(slotShowMsgSrc()), actionCollection(),
"view_source" );
mForwardActionMenu = new KActionMenu( i18n("Message->","&Forward"),
"mail_forward", actionCollection(),
"message_forward" );
connect( mForwardActionMenu, SIGNAL( activated() ), this,
SLOT( slotForwardInlineMsg() ) );
mForwardAttachedAction = new KAction( i18n("Message->Forward->","As &Attachment..."),
"mail_forward", Key_F, this,
SLOT(slotForwardAttachedMsg()),
actionCollection(),
"message_forward_as_attachment" );
mForwardActionMenu->insert( mForwardAttachedAction );
mForwardInlineAction = new KAction( i18n("&Inline..."),
"mail_forward", SHIFT+Key_F, this,
SLOT(slotForwardInlineMsg()),
actionCollection(),
"message_forward_inline" );
mForwardActionMenu->insert( mForwardInlineAction );
mForwardDigestAction = new KAction( i18n("Message->Forward->","As Di&gest..."),
"mail_forward", 0, this,
SLOT(slotForwardDigestMsg()),
actionCollection(),
"message_forward_as_digest" );
mForwardActionMenu->insert( mForwardDigestAction );
mRedirectAction = new KAction( i18n("Message->Forward->","&Redirect..."),
"mail_forward", Key_E, this,
SLOT(slotRedirectMsg()),
actionCollection(),
"message_forward_redirect" );
mForwardActionMenu->insert( mRedirectAction );
mReplyActionMenu = new KActionMenu( i18n("Message->","&Reply"),
"mail_reply", actionCollection(),
"message_reply_menu" );
connect( mReplyActionMenu, SIGNAL(activated()), this,
SLOT(slotReplyToMsg()) );
mReplyAction = new KAction( i18n("&Reply..."), "mail_reply", Key_R, this,
SLOT(slotReplyToMsg()), actionCollection(), "reply" );
mReplyActionMenu->insert( mReplyAction );
mReplyAuthorAction = new KAction( i18n("Reply to A&uthor..."), "mail_reply",
SHIFT+Key_A, this,
SLOT(slotReplyAuthorToMsg()),
actionCollection(), "reply_author" );
mReplyActionMenu->insert( mReplyAuthorAction );
mReplyAllAction = new KAction( i18n("Reply to &All..."), "mail_replyall",
Key_A, this, SLOT(slotReplyAllToMsg()),
actionCollection(), "reply_all" );
mReplyActionMenu->insert( mReplyAllAction );
mReplyListAction = new KAction( i18n("Reply to Mailing-&List..."),
"mail_replylist", Key_L, this,
SLOT(slotReplyListToMsg()), actionCollection(),
"reply_list" );
mReplyActionMenu->insert( mReplyListAction );
QAccel *accel = new QAccel(mReaderWin, "showMsg()");
accel->connectItem(accel->insertItem(Key_Up),
mReaderWin, SLOT(slotScrollUp()));
accel->connectItem(accel->insertItem(Key_Down),
mReaderWin, SLOT(slotScrollDown()));
accel->connectItem(accel->insertItem(Key_Prior),
mReaderWin, SLOT(slotScrollPrior()));
accel->connectItem(accel->insertItem(Key_Next),
mReaderWin, SLOT(slotScrollNext()));
accel->connectItem(accel->insertItem(KStdAccel::shortcut(KStdAccel::Copy)),
mReaderWin, SLOT(slotCopySelectedText()));
connect( mReaderWin, SIGNAL(popupMenu(KMMessage&,const KURL&,const QPoint&)),
this, SLOT(slotMsgPopup(KMMessage&,const KURL&,const QPoint&)));
connect(mReaderWin, SIGNAL(urlClicked(const KURL&,int)),
mReaderWin, SLOT(slotUrlClicked()));
}
void KMReaderMainWin::slotMsgPopup(KMMessage &aMsg, const KURL &aUrl, const QPoint& aPoint)
{
KPopupMenu * menu = new KPopupMenu;
mUrl = aUrl;
mMsg = &aMsg;
bool urlMenuAdded=false;
if (!aUrl.isEmpty())
{
if (aUrl.protocol() == "mailto") {
// popup on a mailto URL
mReaderWin->mailToComposeAction()->plug( menu );
if ( mMsg ) {
mReaderWin->mailToReplyAction()->plug( menu );
mReaderWin->mailToForwardAction()->plug( menu );
menu->insertSeparator();
}
mReaderWin->addAddrBookAction()->plug( menu );
mReaderWin->openAddrBookAction()->plug( menu );
mReaderWin->copyAction()->plug( menu );
} else {
// popup on a not-mailto URL
mReaderWin->urlOpenAction()->plug( menu );
mReaderWin->addBookmarksAction()->plug( menu );
mReaderWin->urlSaveAsAction()->plug( menu );
mReaderWin->copyURLAction()->plug( menu );
}
urlMenuAdded=true;
}
if(mReaderWin && !mReaderWin->copyText().isEmpty()) {
if ( urlMenuAdded )
menu->insertSeparator();
mReplyActionMenu->plug( menu );
menu->insertSeparator();
mReaderWin->copyAction()->plug( menu );
mReaderWin->selectAllAction()->plug( menu );
} else if ( !urlMenuAdded )
{
// popup somewhere else (i.e., not a URL) on the message
if (!mMsg) // no message
{
delete menu;
return;
}
if ( ! ( aMsg.parent() && ( aMsg.parent()->isSent() || aMsg.parent()->isDrafts() ) ) ) {
// add the reply and forward actions only if we are not in a sent-mail or drafts
// folder
mReplyActionMenu->plug( menu );
mForwardActionMenu->plug( menu );
menu->insertSeparator();
}
QPopupMenu* copyMenu = new QPopupMenu(menu);
KMMainWidget* mainwin = kmkernel->getKMMainWidget();
if ( mainwin )
mainwin->folderTree()->folderToPopupMenu( KMFolderTree::CopyMessage, this,
&mMenuToFolder, copyMenu );
menu->insertItem( i18n("&Copy To" ), copyMenu );
menu->insertSeparator();
mViewSourceAction->plug( menu );
mReaderWin->toggleFixFontAction()->plug( menu );
menu->insertSeparator();
mPrintAction->plug( menu );
mSaveAsAction->plug( menu );
menu->insertItem( i18n("Save Attachments..."), mReaderWin, SLOT(slotSaveAttachments()) );
}
menu->exec(aPoint, 0);
delete menu;
}
void KMReaderMainWin::copySelectedToFolder( int menuId )
{
if (!mMenuToFolder[menuId])
return;
KMCommand *command = new KMCopyCommand( mMenuToFolder[menuId], mMsg );
command->start();
}
#include "kmreadermainwin.moc"