Branch data Line data Source code
1 : : #include "StubProgressTool.hpp"
2 : :
3 : 1748 : StubProgressTool::StubProgressTool()
4 : : {
5 : 874 : }
6 : :
7 : 0 : StubProgressTool::~StubProgressTool()
8 : : {
9 [ # # ]: 0 : }
10 : :
11 : : //=============================================================================
12 : : // Description:
13 : : // Notes: This will initialize the progress bar and display it
14 : : // The difference between nLower and nUpper will be the number of
15 : : // integral steps the progress bar will before the process is complete
16 : : // Author:bwhanks
17 : : // Date: 4/29/02
18 : : //=============================================================================
19 : : void
20 : 127 : StubProgressTool::start(int , int ,
21 : : const char* ,
22 : : const char* ,
23 : : CubitBoolean ,
24 : : CubitBoolean )
25 : : {
26 : 127 : }
27 : :
28 : : //=============================================================================
29 : : // Description: end
30 : : // Notes: closes/finishes the prgress bar window
31 : : // Author:bwhanks
32 : : // Date: 4/29/02
33 : : //=============================================================================
34 : : void
35 : 127 : StubProgressTool::end()
36 : : {
37 : 127 : }
38 : :
39 : : //=============================================================================
40 : : // Description: makes one integer step of the progress bar
41 : : // Notes:
42 : : // Author:bwhanks
43 : : // Date: 4/29/02
44 : : //=============================================================================
45 : 903 : void StubProgressTool::step()
46 : : {
47 : 903 : }
48 : :
49 : : //=============================================================================
50 : : // Description: moves the progress bar to the specified percentage
51 : : // Notes: only moves if percentage is greater the the current step
52 : : // pcnt should be between 0 and 1
53 : : // Author:bwhanks
54 : : // Date: 4/29/02
55 : : //=============================================================================
56 : 0 : void StubProgressTool::percent( double )
57 : : {
58 : 0 : }
59 : :
60 : 800 : void StubProgressTool::check_interrupt()
61 : : {
62 : 800 : }
|