Open CASCADE Technology Reference Manual 8.0.0
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions
Draw_ProgressIndicator Class Reference

Implements ProgressIndicator (interface provided by Message) for DRAW, with possibility to output to TCL window and/or trace file. More...

#include <Draw_ProgressIndicator.hxx>

Inheritance diagram for Draw_ProgressIndicator:
Inheritance graph
[legend]

Public Member Functions

 Draw_ProgressIndicator (const Draw_Interpretor &di, double theUpdateThreshold=1.)
 Creates a progress indicator and remembers pointer to Draw_Interpretor.
 
 ~Draw_ProgressIndicator () override
 Destructor; calls Reset()
 
void SetTclMode (const bool theTclMode)
 Sets tcl output mode (on/off).
 
bool GetTclMode () const
 Gets tcl output mode (on/off).
 
void SetConsoleMode (const bool theMode)
 Sets console output mode (on/off). If it is on then progress is shown in the standard output.
 
bool GetConsoleMode () const
 Gets console output mode (on/off)
 
void SetGraphMode (const bool theGraphMode)
 Sets graphical output mode (on/off)
 
bool GetGraphMode () const
 Gets graphical output mode (on/off)
 
void Reset () override
 Clears/erases opened TCL windows if any and sets myBreak to False.
 
void Show (const Message_ProgressScope &theScope, const bool force=true) override
 Defines method Show of Progress Indicator.
 
bool UserBreak () override
 Redefines method UserBreak of Progress Indicator.
 
- Public Member Functions inherited from Message_ProgressIndicator
double GetPosition () const
 Returns total progress position ranged from 0 to 1. Should not be called concurrently while the progress is advancing, except from implementation of method Show().
 
 ~Message_ProgressIndicator () override
 Destructor.
 
Message_ProgressRange Start ()
 Resets the indicator to zero, calls Reset(), and returns the range. This range refers to the scope that has no name and is initialized with max value 1 and step 1. Use this method to get the top level range for progress indication.
 
- Public Member Functions inherited from Standard_Transient
 Standard_Transient ()
 Empty constructor.
 
 Standard_Transient (const Standard_Transient &)
 Copy constructor – does nothing.
 
Standard_Transientoperator= (const Standard_Transient &)
 Assignment operator, needed to avoid copying reference counter.
 
virtual ~Standard_Transient ()=default
 Destructor must be virtual.
 
virtual const opencascade::handle< Standard_Type > & DynamicType () const
 Returns a type descriptor about this object.
 
bool IsInstance (const opencascade::handle< Standard_Type > &theType) const
 Returns a true value if this is an instance of Type.
 
bool IsInstance (const char *const theTypeName) const
 Returns a true value if this is an instance of TypeName.
 
bool IsKind (const opencascade::handle< Standard_Type > &theType) const
 Returns true if this is an instance of Type or an instance of any class that inherits from Type. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
bool IsKind (const char *const theTypeName) const
 Returns true if this is an instance of TypeName or an instance of any class that inherits from TypeName. Note that multiple inheritance is not supported by OCCT RTTI mechanism.
 
Standard_TransientThis () const
 Returns non-const pointer to this object (like const_cast). For protection against creating handle to objects allocated in stack or call from constructor, it will raise exception Standard_ProgramError if reference counter is zero.
 
int GetRefCount () const noexcept
 Get the reference counter of this object.
 
void IncrementRefCounter () noexcept
 Increments the reference counter of this object. Uses relaxed memory ordering since incrementing only requires atomicity, not synchronization with other memory operations.
 
int DecrementRefCounter () noexcept
 Decrements the reference counter of this object; returns the decremented value. Uses release ordering for the decrement to ensure all writes to the object are visible before the count reaches zero. An acquire fence is added only when the count reaches zero, ensuring proper synchronization before deletion. This is more efficient than using acq_rel for every decrement.
 
virtual void Delete () const
 Memory deallocator for transient classes.
 

Static Public Member Functions

static boolDefaultTclMode ()
 Get/Set default value for tcl mode.
 
static boolDefaultConsoleMode ()
 Get/Set default value for console mode.
 
static boolDefaultGraphMode ()
 Get/Set default value for graph mode.
 
static void *& StopIndicator ()
 Internal method for implementation of UserBreak mechanism; note that it uses static variable and thus not thread-safe!
 
- Static Public Member Functions inherited from Message_ProgressIndicator
static Message_ProgressRange Start (const occ::handle< Message_ProgressIndicator > &theProgress)
 If argument is non-null handle, returns theProgress->Start(). Otherwise, returns dummy range that can be safely used in the algorithms but not bound to progress indicator.
 
- Static Public Member Functions inherited from Standard_Transient
static constexpr const charget_type_name ()
 Returns a type descriptor about this object.
 
static const opencascade::handle< Standard_Type > & get_type_descriptor ()
 Returns type descriptor of Standard_Transient class.
 

Additional Inherited Members

- Public Types inherited from Standard_Transient
typedef void base_type
 Returns a type descriptor about this object.
 
- Protected Member Functions inherited from Message_ProgressIndicator
 Message_ProgressIndicator ()
 Constructor.
 

Detailed Description

Implements ProgressIndicator (interface provided by Message) for DRAW, with possibility to output to TCL window and/or trace file.

Constructor & Destructor Documentation

◆ Draw_ProgressIndicator()

Draw_ProgressIndicator::Draw_ProgressIndicator ( const Draw_Interpretor & di,
double theUpdateThreshold = 1. )

Creates a progress indicator and remembers pointer to Draw_Interpretor.

Parameters
theUpdateThresholddefines minimal progress (in percents) between updates of the indicator (non-forced updates of the progress bar will be disabled until that progress is reached since last update).

◆ ~Draw_ProgressIndicator()

Draw_ProgressIndicator::~Draw_ProgressIndicator ( )
override

Destructor; calls Reset()

Member Function Documentation

◆ DefaultConsoleMode()

static bool & Draw_ProgressIndicator::DefaultConsoleMode ( )
static

Get/Set default value for console mode.

◆ DefaultGraphMode()

static bool & Draw_ProgressIndicator::DefaultGraphMode ( )
static

Get/Set default value for graph mode.

◆ DefaultTclMode()

static bool & Draw_ProgressIndicator::DefaultTclMode ( )
static

Get/Set default value for tcl mode.

◆ GetConsoleMode()

bool Draw_ProgressIndicator::GetConsoleMode ( ) const

Gets console output mode (on/off)

◆ GetGraphMode()

bool Draw_ProgressIndicator::GetGraphMode ( ) const

Gets graphical output mode (on/off)

◆ GetTclMode()

bool Draw_ProgressIndicator::GetTclMode ( ) const

Gets tcl output mode (on/off).

◆ Reset()

void Draw_ProgressIndicator::Reset ( )
overridevirtual

Clears/erases opened TCL windows if any and sets myBreak to False.

Reimplemented from Message_ProgressIndicator.

◆ SetConsoleMode()

void Draw_ProgressIndicator::SetConsoleMode ( const bool theMode)

Sets console output mode (on/off). If it is on then progress is shown in the standard output.

◆ SetGraphMode()

void Draw_ProgressIndicator::SetGraphMode ( const bool theGraphMode)

Sets graphical output mode (on/off)

◆ SetTclMode()

void Draw_ProgressIndicator::SetTclMode ( const bool theTclMode)

Sets tcl output mode (on/off).

◆ Show()

void Draw_ProgressIndicator::Show ( const Message_ProgressScope & theScope,
const bool force = true )
overridevirtual

Defines method Show of Progress Indicator.

Implements Message_ProgressIndicator.

◆ StopIndicator()

static void *& Draw_ProgressIndicator::StopIndicator ( )
static

Internal method for implementation of UserBreak mechanism; note that it uses static variable and thus not thread-safe!

◆ UserBreak()

bool Draw_ProgressIndicator::UserBreak ( )
overridevirtual

Redefines method UserBreak of Progress Indicator.

Reimplemented from Message_ProgressIndicator.


The documentation for this class was generated from the following file: