00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef SHOWMAILDIALOG_H
00019 #define SHOWMAILDIALOG_H
00020
00021
00022 #include <qlayout.h>
00023 #include <qlabel.h>
00024 #include <QStringList>
00025
00026
00027 #include <klocale.h>
00028 #include <KDialog>
00029 #include <klineedit.h>
00030 #include <kdebug.h>
00031 #include <ktextedit.h>
00032 #include <kurl.h>
00033 #include <kapplication.h>
00034
00035
00036 #include "constants.h"
00037
00043 class ShowMailDialog : public KDialog
00044 {
00045
00046 Q_OBJECT
00047
00048 public:
00049
00061 ShowMailDialog( QWidget* parent, QString caption, bool allowHTML, QString sender, QString date, QString size, QString subject, QStringList body );
00062
00066 ~ShowMailDialog();
00067
00068 };
00069
00070 #endif