This class can be used to inform the progress of a task. More...
#include <TaskProgress.h>
Public Types | |
| enum | { UNDEFINED = 0 , DRAW = 1 } | 
| Defines some task types.  More... | |
Public Member Functions | |
| void | cancel () | 
| Cancel task, set the task active FALSE.   | |
| int | getCurrentStep () const | 
| Get the task current step.   | |
| int | getId () const | 
| Get the task identification.   | |
| const std::string & | getMessage () const | 
| Get the task message.   | |
| int | getProportionalValue () const | 
| Get the proportional value (value between 0 and 100).   | |
| int | getTotalSteps () const | 
| Get the task total stepes.   | |
| unsigned int | getType () const | 
| Get the task type.   | |
| bool | hasToUpdate () const | 
| This function is used when proportional value has changed.   | |
| bool | isActive () const | 
| Verify if the task is active.   | |
| void | pulse () | 
| Calls setCurrentStep() function using getCurrentStep() + 1.   | |
| void | setCurrentStep (int value) | 
| Set the task current step.   | |
| void | setMessage (const std::string &message) | 
| Set the task message.   | |
| void | setTotalSteps (int value) | 
| Set the task total stepes.   | |
| TaskProgress (const std::string &message="", unsigned int type=UNDEFINED, int totalSteps=0) | |
| Default constructor.   | |
| void | useMultiThread (bool flag) | 
| Used to define if task is running in thread mode.   | |
| void | useTimer (bool flag) | 
| Used to define if task use progress timer information.   | |
| ~TaskProgress () | |
| Destructor.   | |
Protected Attributes | |
| int | m_currentPropStep | 
| Current proportinal step.   | |
| int | m_currentStep | 
| Task current step.   | |
| bool | m_hasToUpdate | 
| Flag used to indicate the update status.   | |
| int | m_id | 
| Task identification.   | |
| bool | m_isActive | 
| Flag used to indicate the task status.   | |
| bool | m_isMultiThread | 
| Flag used to indicate the thread mode.   | |
| std::string | m_message | 
| Task message.   | |
| ProgressTimer * | m_timer | 
| Progress timer instance.   | |
| int | m_totalSteps | 
| Task total steps.   | |
| unsigned int | m_type | 
| Task type.   | |
| bool | m_useTimer | 
| Flag used to indicate the timer status.   | |
This class can be used to inform the progress of a task.
Definition at line 53 of file TaskProgress.h.
| anonymous enum | 
Defines some task types.
| Enumerator | |
|---|---|
| UNDEFINED | Undefined task type.  | 
| DRAW | Draw task type.   | 
Definition at line 58 of file TaskProgress.h.
| te::common::TaskProgress::TaskProgress | ( | const std::string & | message = "",  | 
        
| unsigned int | type = UNDEFINED,  | 
        ||
| int | totalSteps = 0  | 
        ||
| ) | 
Default constructor.
The constructor will register the task in the progress manager.
| te::common::TaskProgress::~TaskProgress | ( | ) | 
Destructor.
The destructor will remove the task from the progress manager.
| void te::common::TaskProgress::cancel | ( | ) | 
Cancel task, set the task active FALSE.
| int te::common::TaskProgress::getCurrentStep | ( | ) | const | 
Get the task current step.
| int te::common::TaskProgress::getId | ( | ) | const | 
Get the task identification.
| const std::string & te::common::TaskProgress::getMessage | ( | ) | const | 
Get the task message.
| int te::common::TaskProgress::getProportionalValue | ( | ) | const | 
Get the proportional value (value between 0 and 100).
| int te::common::TaskProgress::getTotalSteps | ( | ) | const | 
Get the task total stepes.
| unsigned int te::common::TaskProgress::getType | ( | ) | const | 
Get the task type.
| bool te::common::TaskProgress::hasToUpdate | ( | ) | const | 
This function is used when proportional value has changed.
| bool te::common::TaskProgress::isActive | ( | ) | const | 
Verify if the task is active.
Referenced by te::rp::rg::mergeSegments().
| void te::common::TaskProgress::pulse | ( | ) | 
Calls setCurrentStep() function using getCurrentStep() + 1.
Referenced by te::cl::KMeans< TTRAIN, TCLASSIFY >::classify(), and te::cl::KMeans< TTRAIN, TCLASSIFY >::train().
| void te::common::TaskProgress::setCurrentStep | ( | int | value | ) | 
Set the task current step.
| value | Current value. | 
| void te::common::TaskProgress::setMessage | ( | const std::string & | message | ) | 
Set the task message.
| message | String value with task message. | 
| void te::common::TaskProgress::setTotalSteps | ( | int | value | ) | 
Set the task total stepes.
| value | Interger value with total steps. | 
| void te::common::TaskProgress::useMultiThread | ( | bool | flag | ) | 
Used to define if task is running in thread mode.
| flag | Boolean value used to set the thread option. | 
| void te::common::TaskProgress::useTimer | ( | bool | flag | ) | 
Used to define if task use progress timer information.
| flag | Boolean value used to set the timer option. | 
      
  | 
  protected | 
Current proportinal step.
Definition at line 181 of file TaskProgress.h.
      
  | 
  protected | 
Task current step.
Definition at line 180 of file TaskProgress.h.
      
  | 
  protected | 
Flag used to indicate the update status.
Definition at line 183 of file TaskProgress.h.
      
  | 
  protected | 
Task identification.
Definition at line 177 of file TaskProgress.h.
      
  | 
  protected | 
Flag used to indicate the task status.
Definition at line 184 of file TaskProgress.h.
      
  | 
  protected | 
Flag used to indicate the thread mode.
Definition at line 185 of file TaskProgress.h.
      
  | 
  protected | 
Task message.
Definition at line 182 of file TaskProgress.h.
      
  | 
  protected | 
Progress timer instance.
Definition at line 187 of file TaskProgress.h.
      
  | 
  protected | 
Task total steps.
Definition at line 179 of file TaskProgress.h.
      
  | 
  protected | 
Task type.
Definition at line 178 of file TaskProgress.h.
      
  | 
  protected | 
Flag used to indicate the timer status.
Definition at line 186 of file TaskProgress.h.