ProgressIndicator.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #include "PreCompiled.h"
00025 #ifndef _PreComp_
00026 #endif
00027
00028 #include "ProgressIndicator.h"
00029
00030 using namespace Part;
00057 ProgressIndicator::ProgressIndicator (int theMaxVal)
00058 : myProgress(new Base::SequencerLauncher("", theMaxVal))
00059 {
00060 SetScale (0, theMaxVal, 1);
00061 }
00062
00063 ProgressIndicator::~ProgressIndicator ()
00064 {
00065 }
00066
00067 Standard_Boolean ProgressIndicator::Show (const Standard_Boolean theForce)
00068 {
00069 if (theForce) {
00070 Handle(TCollection_HAsciiString) aName = GetScope(1).GetName();
00071 if (!aName.IsNull())
00072 myProgress->setText (aName->ToCString());
00073 }
00074
00075 Standard_Real aPc = GetPosition();
00076 int aVal = (int)(aPc * myProgress->numberOfSteps());
00077 myProgress->setProgress (aVal);
00078
00079 return Standard_True;
00080 }
00081
00082 Standard_Boolean ProgressIndicator::UserBreak()
00083 {
00084 return myProgress->wasCanceled();
00085 }