Subversion Repositories DevTools

Rev

Blame | 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 Components
        TProgressBar *ProgressBar1;
        TEdit *Label1;
        TPanel *Panel1;
private:        // User declarations
public:         // User declarations
        __fastcall TInitValuesProgressForm(TComponent* Owner);
    void Advance(const char *label);
    void AddStep();
    void AddSteps(int steps);
};
//---------------------------------------------------------------------------
extern PACKAGE TInitValuesProgressForm *InitValuesProgressForm;
//---------------------------------------------------------------------------
#endif