author | zautrix <zautrix> | 2004-07-03 16:33:12 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-03 16:33:12 (UTC) |
commit | e3b89230f065c48c84b48c88edb6eb088374c487 (patch) (unidiff) | |
tree | 162ea2ef909a6f82ccfcedf45d80d6c821174912 /kmicromail/libmailwrapper/sendmailprogress.h | |
parent | 2dd6ac0b2d24c91d35ce674a6c26351352df2b15 (diff) | |
download | kdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.zip kdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.tar.gz kdepimpi-e3b89230f065c48c84b48c88edb6eb088374c487.tar.bz2 |
Initial revision
Diffstat (limited to 'kmicromail/libmailwrapper/sendmailprogress.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kmicromail/libmailwrapper/sendmailprogress.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kmicromail/libmailwrapper/sendmailprogress.h b/kmicromail/libmailwrapper/sendmailprogress.h new file mode 100644 index 0000000..5b7d33b --- a/dev/null +++ b/kmicromail/libmailwrapper/sendmailprogress.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #include "sendmailprogressui.h" | ||
2 | |||
3 | class progressMailSend:public progressMailSendUI | ||
4 | { | ||
5 | Q_OBJECT | ||
6 | public: | ||
7 | progressMailSend(QWidget*parent = 0, const char * name = 0); | ||
8 | ~progressMailSend(); | ||
9 | |||
10 | void setMaxMails(unsigned int aMaxMails); | ||
11 | void setCurrentMails(unsigned int aCurrent); | ||
12 | |||
13 | void setSingleMail(unsigned int aCurrent,unsigned int aMax); | ||
14 | |||
15 | protected: | ||
16 | unsigned m_current_mail,m_current_single,m_max_mail,m_max_single; | ||
17 | void setSingle(); | ||
18 | void setMails(); | ||
19 | }; | ||