Subversion Repositories DevTools

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

//---------------------------------------------------------------------------

#ifndef LoginH
#define LoginH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TLoginForm : public TForm
{
__published:    // IDE-managed Components
        TEdit *UsernameEdit;
        TLabel *Label1;
        TLabel *Label2;
        TEdit *PasswordEdit;
        TBitBtn *LoginOKBtn;
        TBitBtn *BitBtn1;
        TPanel *Panel1;
        void __fastcall FormShow(TObject *Sender);
    void __fastcall LoginOKBtnClick(TObject *Sender);
private:        // User declarations
public:         // User declarations
        __fastcall TLoginForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TLoginForm *LoginForm;
//---------------------------------------------------------------------------
#endif