//: Minor changes to kmnewiostatus*

svn path=/trunk/kdenetwork/kmail/; revision=5263
wilder-work
Markus Wuebben 29 years ago
parent 58bc3fc180
commit 06d25e3ba9
  1. 4
      kmnewiostatus.cpp
  2. 3
      kmnewiostatus.h
  3. 4
      kmnewiostatuswdg.cpp
  4. 3
      kmnewiostatuswdg.h

@ -38,6 +38,10 @@ void KMIOStatus::update() {
}
void KMIOStatus::newMail(bool _newMail) {
}
KMIOStatus::task KMIOStatus::Task() {
return _task;

@ -46,6 +46,9 @@ class KMIOStatus : public QWidget
/** Tell widget that the tranmission has been completed **/
virtual void transmissionCompleted();
/** Tell widget that new mail arrived / has to be sent or not
virtual void newMail(bool);
private slots:
virtual void abortPressed();

@ -54,6 +54,10 @@ KMIOStatusWdg::~KMIOStatusWdg() {
}
void KMIOStatusWdg::newMail(bool _newMail) {
}
void KMIOStatusWdg::updateProgressBar(int index ,int of) {
float value;

@ -31,6 +31,9 @@ class KMIOStatusWdg : public KMIOStatus
/** Tell widget that the tranmission has been completed **/
void transmissionCompleted();
/** Tell widget if mail has to be sent or arrived or not **/
void newMail(bool);
private slots:
void abortPressed();
void update();

Loading…
Cancel
Save