GUI indepentent Interface for all Gui depentent implementations of a ProgressBar. More...
#include <mitkProgressBarImplementation.h>
Public Member Functions | |
ProgressBarImplementation () | |
Constructor. | |
virtual | ~ProgressBarImplementation () |
Destructor. | |
virtual void | SetPercentageVisible (bool visible)=0 |
Sets whether the current progress value is displayed. | |
virtual void | AddStepsToDo (unsigned int steps)=0 |
Adds steps to totalSteps. | |
virtual void | Progress (unsigned int steps)=0 |
Sets the current amount of progress to current progress + steps. |
GUI indepentent Interface for all Gui depentent implementations of a ProgressBar.
Definition at line 28 of file mitkProgressBarImplementation.h.
mitk::ProgressBarImplementation::ProgressBarImplementation | ( | ) | [inline] |
virtual mitk::ProgressBarImplementation::~ProgressBarImplementation | ( | ) | [inline, virtual] |
virtual void mitk::ProgressBarImplementation::AddStepsToDo | ( | unsigned int | steps ) | [pure virtual] |
Adds steps to totalSteps.
Implemented in QmitkProgressBar.
virtual void mitk::ProgressBarImplementation::Progress | ( | unsigned int | steps ) | [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.
Referenced by mitk::ProgressBar::Progress().
virtual void mitk::ProgressBarImplementation::SetPercentageVisible | ( | bool | visible ) | [pure virtual] |
Sets whether the current progress value is displayed.
Implemented in QmitkProgressBar.