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 663c7deef2
commit 7e084c2531
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
};