// // C++ Interface: showheaderdialog // // Description: // // // Author: Ulrich Weigelt , (C) 2007 // // Copyright: See COPYING file that comes with this distribution // // #ifndef SHOWHEADERDIALOG_H #define SHOWHEADERDIALOG_H //TQt headers #include #include //KDE headers #include #include #include #include //KShowmail headers #include "constants.h" /** * Used in ShowRecordElem to show the mail header. * * @author Ulrich Weigelt */ class ShowHeaderDialog : public KDialogBase { TQ_OBJECT public: /** * Generic constructor. * @param parent parent of the dialog * @param caption the dialog caption * @param subject mail subject * @param header mail header */ ShowHeaderDialog( TQWidget* parent, TQString& caption, TQString& subject, TQString header ); /** * Destructor */ ~ShowHeaderDialog(); }; #endif