blob: 5b7d33b8a69176caf47427c83e7f158512b13bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "sendmailprogressui.h"
class progressMailSend:public progressMailSendUI
{
Q_OBJECT
public:
progressMailSend(QWidget*parent = 0, const char * name = 0);
~progressMailSend();
void setMaxMails(unsigned int aMaxMails);
void setCurrentMails(unsigned int aCurrent);
void setSingleMail(unsigned int aCurrent,unsigned int aMax);
protected:
unsigned m_current_mail,m_current_single,m_max_mail,m_max_single;
void setSingle();
void setMails();
};
|