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.
66 lines
1.7 KiB
66 lines
1.7 KiB
// -*- mode: C++; c-file-style: "gnu" -*- |
|
|
|
#ifndef KMReaderMainWin_h |
|
#define KMReaderMainWin_h |
|
|
|
#include "secondarywindow.h" |
|
|
|
#include <kurl.h> |
|
|
|
class QTextCodec; |
|
class KMReaderWin; |
|
class KMMessage; |
|
class KMMessagePart; |
|
class KAction; |
|
class KActionMenu; |
|
class KMFolderIndex; |
|
template <typename T, typename S> class QMap; |
|
|
|
class KMReaderMainWin : public KMail::SecondaryWindow |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
KMReaderMainWin( bool htmlOverride, char *name = 0 ); |
|
KMReaderMainWin( char *name = 0 ); |
|
KMReaderMainWin(KMMessagePart* aMsgPart, |
|
bool aHTML, const QString& aFileName, const QString& pname, |
|
const QTextCodec *codec, char *name = 0 ); |
|
virtual ~KMReaderMainWin(); |
|
// take ownership of and show @param msg |
|
void showMsg( const QTextCodec *codec, KMMessage *msg ); |
|
|
|
private slots: |
|
void slotMsgPopup(KMMessage &aMsg, const KURL &aUrl, const QPoint& aPoint); |
|
|
|
/** Copy selected messages to folder with corresponding to given menuid */ |
|
void copySelectedToFolder( int menuId ); |
|
void slotPrintMsg(); |
|
void slotReplyToMsg(); |
|
void slotReplyAllToMsg(); |
|
void slotReplyAuthorToMsg(); |
|
void slotReplyListToMsg(); |
|
void slotForwardMsg(); |
|
void slotForwardAttachedMsg(); |
|
void slotRedirectMsg(); |
|
void slotBounceMsg(); |
|
|
|
void slotConfigChanged(); |
|
|
|
private: |
|
void setupAccel(); |
|
|
|
KMReaderWin *mReaderWin; |
|
KMMessage *mMsg; |
|
KURL mUrl; |
|
QMap<int,KMFolder*> mMenuToFolder; |
|
// a few actions duplicated from kmmainwidget |
|
KAction *mPrintAction, *mReplyAction, *mReplyAllAction, *mReplyAuthorAction, |
|
*mReplyListAction, *mForwardAction, |
|
*mForwardAttachedAction, *mRedirectAction, *mBounceAction; |
|
KActionMenu *mReplyActionMenu; |
|
KActionMenu *mForwardActionMenu; |
|
|
|
}; |
|
|
|
#endif /*KMReaderMainWin_h*/
|
|
|