| 2263 |
kivins |
1 |
//---------------------------------------------------------------------------
|
|
|
2 |
|
|
|
3 |
#ifndef InitProgressH
|
|
|
4 |
#define InitProgressH
|
|
|
5 |
//---------------------------------------------------------------------------
|
|
|
6 |
#include <Classes.hpp>
|
|
|
7 |
#include <Controls.hpp>
|
|
|
8 |
#include <StdCtrls.hpp>
|
|
|
9 |
#include <Forms.hpp>
|
|
|
10 |
#include <ComCtrls.hpp>
|
|
|
11 |
#include <ExtCtrls.hpp>
|
|
|
12 |
//---------------------------------------------------------------------------
|
|
|
13 |
class TInitValuesProgressForm : public TForm
|
|
|
14 |
{
|
|
|
15 |
__published: // IDE-managed Components
|
|
|
16 |
TProgressBar *ProgressBar1;
|
|
|
17 |
TEdit *Label1;
|
|
|
18 |
TPanel *Panel1;
|
|
|
19 |
private: // User declarations
|
|
|
20 |
public: // User declarations
|
|
|
21 |
__fastcall TInitValuesProgressForm(TComponent* Owner);
|
|
|
22 |
void Advance(const char *label);
|
|
|
23 |
void AddStep();
|
|
|
24 |
void AddSteps(int steps);
|
|
|
25 |
};
|
|
|
26 |
//---------------------------------------------------------------------------
|
|
|
27 |
extern PACKAGE TInitValuesProgressForm *InitValuesProgressForm;
|
|
|
28 |
//---------------------------------------------------------------------------
|
|
|
29 |
#endif
|