summaryrefslogtreecommitdiff
path: root/src/Message/Message_ProgressSentry.cxx
blob: 1a1f885eb51ab4016e527d6ddfedf4ec835baff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <Message_ProgressSentry.ixx>
  
//=======================================================================
//function : Message_ProgressSentry
//purpose  : 
//=======================================================================

Message_ProgressSentry::Message_ProgressSentry (const Handle(Message_ProgressIndicator) &progress,
                                                  const Standard_CString name,
                                                  const Standard_Real min, 
                                                  const Standard_Real max, 
                                                  const Standard_Real step,
                                                  const Standard_Boolean isInf,
                                                  const Standard_Real newScopeSpan) :
       myProgress(progress), myActive(!progress.IsNull())
{
  if ( ! myActive ) return;
  progress->SetName ( name );
  progress->SetScale ( min, max, step, isInf );
  progress->NewScope ( newScopeSpan >0 ? newScopeSpan : step );
}

//=======================================================================
//function : Message_ProgressSentry
//purpose  : 
//=======================================================================

Message_ProgressSentry::Message_ProgressSentry (const Handle(Message_ProgressIndicator) &progress,
                                                  const Handle(TCollection_HAsciiString) &name,
                                                  const Standard_Real min, 
                                                  const Standard_Real max, 
                                                  const Standard_Real step,
                                                  const Standard_Boolean isInf,
                                                  const Standard_Real newScopeSpan) :
       myProgress(progress), myActive(!progress.IsNull())
{
  if ( ! myActive ) return;
  progress->SetName ( name );
  progress->SetScale ( min, max, step, isInf );
  progress->NewScope ( newScopeSpan >0 ? newScopeSpan : step );
}