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.
84 lines
1.6 KiB
84 lines
1.6 KiB
#ifndef KornMailDlg_h
|
|
#define KornMailDlg_h
|
|
|
|
#include<kdialogbase.h>
|
|
#include <keditcl.h>
|
|
|
|
class KornMailSubject;
|
|
class KMailDrop;
|
|
|
|
class TQProgressDialog;
|
|
class TQString;
|
|
|
|
/**
|
|
* KornMailDlg shows the header and (if available) the body of a mail.
|
|
* If the mails body is not available a button allows the user to load it.
|
|
*/
|
|
class KornMailDlg : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
/**
|
|
* Edit control showing the mail (read only)
|
|
*/
|
|
KEdit * _editCtrl;
|
|
|
|
/**
|
|
* The mail to show
|
|
*/
|
|
KornMailSubject * _mailSubject;
|
|
|
|
/**
|
|
* The mailbox which can load the mail fully
|
|
*/
|
|
KMailDrop * _mailDrop;
|
|
|
|
/**
|
|
* Flag used during the load process. Set to true if the user clicks the cancel button.
|
|
*/
|
|
bool _loadMailCanceled;
|
|
|
|
/**
|
|
* Progress bar
|
|
*/
|
|
TQProgressDialog *_progress;
|
|
public:
|
|
/**
|
|
* KornMailDlg Constructor
|
|
* @param parent parent widget
|
|
*/
|
|
KornMailDlg( TQWidget *parent=0 );
|
|
|
|
/**
|
|
* Set the mail details to show. The mails body is transfered to the edit control
|
|
* and the "Full Message" button is enabled, if the mail body is not available and
|
|
* if the mailbox can load the mail fully.
|
|
* @param mailDrop maibox which can load the mesage fully
|
|
* @param mailSubject mail to show
|
|
*/
|
|
void setMailSubject( KornMailSubject * mailSubject);
|
|
|
|
/**
|
|
* KornMailDlg Destructor
|
|
*/
|
|
virtual ~KornMailDlg();
|
|
|
|
private:
|
|
void deleteProgress();
|
|
private slots:
|
|
/**
|
|
* Slot triggered if the user presses the "Full Message" button
|
|
*/
|
|
void showFullMessage();
|
|
|
|
/**
|
|
* Slot triggered if the user canceles the message loading process
|
|
*/
|
|
void loadMailCanceled();
|
|
|
|
void readMailReady( TQString* );
|
|
};
|
|
|
|
#endif
|