CProgressWindow: add member showStatus()

This displays only one progress bar instead two and shows the global
status. That's senseful , if only one progress bar is required.


Origin commit data
------------------
Commit: 7e084c2531
Author: Thilo Graf <dbt@novatux.de>
Date: 2014-11-30 (Sun, 30 Nov 2014)

Origin message was:
------------------
CProgressWindow: add member showStatus()

This displays only one progress bar instead two and shows the global
status. That's senseful , if only one progress bar is required.
This commit is contained in:
2014-11-30 00:21:46 +01:00
parent ebb57c96ac
commit bbb94b0b79
2 changed files with 22 additions and 4 deletions

View File

@@ -48,10 +48,11 @@ class CProgressWindow : public CComponentsWindow, public CMenuTarget
virtual int exec( CMenuTarget* parent, const std::string & actionKey );
virtual void showGlobalStatus(const unsigned int prog);
virtual unsigned int getGlobalStatus(void);
virtual void showLocalStatus(const unsigned int prog);
virtual void showStatusMessageUTF(const std::string & text); // UTF-8
void showStatus(const unsigned int prog);
void showGlobalStatus(const unsigned int prog);
unsigned int getGlobalStatus(void);
void showLocalStatus(const unsigned int prog);
void showStatusMessageUTF(const std::string & text); // UTF-8
};