// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _Message_ProgressScale_HeaderFile #define _Message_ProgressScale_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _Handle_TCollection_HAsciiString_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Standard_CString_HeaderFile #include #endif class TCollection_HAsciiString; //! Internal data structure for scale in ProgressIndicator
class Message_ProgressScale { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } //! Creates scale ranged from 0 to 100 with step 1
Standard_EXPORT Message_ProgressScale(); void SetName(const Standard_CString theName) ; //! Sets scale name
void SetName(const Handle(TCollection_HAsciiString)& theName) ; //! Gets scale name
//! Name may be Null handle if not set
Handle_TCollection_HAsciiString GetName() const; //! Sets minimum value of scale
void SetMin(const Standard_Real theMin) ; //! Gets minimum value of scale
Standard_Real GetMin() const; //! Sets minimum value of scale
void SetMax(const Standard_Real theMax) ; //! Gets minimum value of scale
Standard_Real GetMax() const; //! Set both min and max
void SetRange(const Standard_Real min,const Standard_Real max) ; //! Sets default step
void SetStep(const Standard_Real theStep) ; //! Gets default step
Standard_Real GetStep() const; //! Sets flag for infinite scale
void SetInfinite(const Standard_Boolean theInfinite = Standard_True) ; //! Gets flag for infinite scale
Standard_Boolean GetInfinite() const; //! Set all scale parameters
void SetScale(const Standard_Real min,const Standard_Real max,const Standard_Real step,const Standard_Boolean theInfinite = Standard_True) ; //! Defines span occupied by the scale on the basis scale
void SetSpan(const Standard_Real first,const Standard_Real last) ; Standard_Real GetFirst() const; //! Return information on span occupied by the scale on the base scale
Standard_Real GetLast() const; Standard_EXPORT Standard_Real LocalToBase(const Standard_Real val) const; //! Convert value from this scale to base one and back
Standard_EXPORT Standard_Real BaseToLocal(const Standard_Real val) const; protected: private: Handle_TCollection_HAsciiString myName; Standard_Real myMin; Standard_Real myMax; Standard_Real myStep; Standard_Boolean myInfinite; Standard_Real myFirst; Standard_Real myLast; }; #include // other Inline functions and methods (like "C++: function call" methods) #endif