Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2218 sbetterm 1
//---------------------------------------------------------------------------
2
 
3
#ifndef LoginH
4
#define LoginH
5
//---------------------------------------------------------------------------
6
#include <Classes.hpp>
7
#include <Controls.hpp>
8
#include <StdCtrls.hpp>
9
#include <Forms.hpp>
10
#include <Buttons.hpp>
11
#include <ExtCtrls.hpp>
12
//---------------------------------------------------------------------------
13
class TLoginForm : public TForm
14
{
15
__published:	// IDE-managed Components
16
	TEdit *UsernameEdit;
17
	TLabel *Label1;
18
	TLabel *Label2;
19
	TEdit *PasswordEdit;
20
	TBitBtn *LoginOKBtn;
21
	TBitBtn *BitBtn1;
22
	TPanel *Panel1;
23
	void __fastcall FormShow(TObject *Sender);
24
    void __fastcall LoginOKBtnClick(TObject *Sender);
25
private:	// User declarations
26
public:		// User declarations
27
	__fastcall TLoginForm(TComponent* Owner);
28
};
29
//---------------------------------------------------------------------------
30
extern PACKAGE TLoginForm *LoginForm;
31
//---------------------------------------------------------------------------
32
#endif