Medical Imaging Interaction Toolkit
2023.12.00
Medical Imaging Interaction Toolkit
|
GUI independent Interface for all Gui depentent implementations of a ProgressBar. More...
#include <mitkProgressBarImplementation.h>
Public Member Functions | |
ProgressBarImplementation () | |
Constructor. More... | |
virtual | ~ProgressBarImplementation () |
Destructor. More... | |
virtual void | SetPercentageVisible (bool visible)=0 |
Sets whether the current progress value is displayed. More... | |
virtual void | Reset ()=0 |
Explicitly reset progress bar. More... | |
virtual void | AddStepsToDo (unsigned int steps)=0 |
Adds steps to totalSteps. More... | |
virtual void | Progress (unsigned int steps)=0 |
Sets the current amount of progress to current progress + steps. More... | |
GUI independent Interface for all Gui depentent implementations of a ProgressBar.
Definition at line 21 of file mitkProgressBarImplementation.h.
|
inline |
Constructor.
Definition at line 26 of file mitkProgressBarImplementation.h.
|
inlinevirtual |
Destructor.
Definition at line 30 of file mitkProgressBarImplementation.h.
|
pure virtual |
Adds steps to totalSteps.
Implemented in QmitkProgressBar.
|
pure virtual |
Sets the current amount of progress to current progress + steps.
steps | the number of steps done since last Progress(int steps) call. |
Implemented in QmitkProgressBar.
|
pure virtual |
Explicitly reset progress bar.
|
pure virtual |
Sets whether the current progress value is displayed.
Implemented in QmitkProgressBar.