stdex
Additional custom or not Standard C++ covered algorithms
|
Global progress indicator. More...
#include <stdex/progress.hpp>
Public Member Functions | |
global_progress (progress< T > *host=nullptr) | |
Constructs a progress indicator. | |
void | attach (progress< T > *host) |
Attach to a host progress indicator. | |
progress< T > * | detach () |
Detach host progress indicator. | |
void | set_global_range (T start, T end) |
Set global extend of the progress indicator. | |
void | set_section_range (T start, T end) |
Set section extend of the progress indicator. | |
virtual void | set_text (const char *msg) |
Set progress indicator text. | |
virtual void | set_range (T start, T end) |
Set local extend of the progress indicator. | |
virtual void | set (T value) |
Set local current progress. | |
virtual void | show (bool show=true) |
Show or hide progress. | |
virtual bool | cancel () |
Query whether user requested abort. | |
![]() |
Protected Attributes | |
progress< T > * | m_host |
interval< T > | m_local |
interval< T > | m_global |
interval< T > | m_section |
Global progress indicator.
Use to report progress of a phase or section as a part of a whole progress.
|
inline |
Constructs a progress indicator.
[in] | host | Host progress indicator |
|
inline |
Attach to a host progress indicator.
[in] | host | Host progress indicator |
|
inlinevirtual |
Query whether user requested abort.
Reimplemented from stdex::progress< T >.
|
inline |
Detach host progress indicator.
|
inlinevirtual |
Set local current progress.
[in] | value | Current value of the progress. Must be between start and end parameters provided in set_range() call. |
Reimplemented from stdex::progress< T >.
|
inline |
Set global extend of the progress indicator.
[in] | start | Minimum value of the progress |
[in] | end | Maximum value of the progress |
|
inlinevirtual |
Set local extend of the progress indicator.
[in] | start | Minimum value of the progress |
[in] | end | Maximum value of the progress |
Reimplemented from stdex::progress< T >.
|
inline |
Set section extend of the progress indicator.
[in] | start | Minimum value of the progress |
[in] | end | Maximum value of the progress |
|
inlinevirtual |
Set progress indicator text.
[in] | msg | Text to display |
Reimplemented from stdex::progress< T >.
|
inlinevirtual |
Show or hide progress.
[in] | show | Shows or hides progress indicator |
Reimplemented from stdex::progress< T >.