Rev 2263 | Blame | Compare with Previous | Last modification | View Log | RSS feed
//---------------------------------------------------------------------------#ifndef InitProgressH#define InitProgressH//---------------------------------------------------------------------------#include <Classes.hpp>#include <Controls.hpp>#include <StdCtrls.hpp>#include <Forms.hpp>#include <ComCtrls.hpp>#include <ExtCtrls.hpp>//---------------------------------------------------------------------------class TInitValuesProgressForm : public TForm{__published: // IDE-managed ComponentsTProgressBar *ProgressBar1;TEdit *Label1;TPanel *Panel1;private: // User declarationspublic: // User declarations__fastcall TInitValuesProgressForm(TComponent* Owner);void Advance(const char *label);void AddStep();void AddSteps(int steps);};//---------------------------------------------------------------------------extern PACKAGE TInitValuesProgressForm *InitValuesProgressForm;//---------------------------------------------------------------------------#endif