79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
//---------------------------------------------------------------------------
|
|
|
|
#ifndef SATH
|
|
#define SATH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include <ExtCtrls.hpp>
|
|
#include <Graphics.hpp>
|
|
#include <Buttons.hpp>
|
|
#include <ComCtrls.hpp>
|
|
//---------------------------------------------------------------------------
|
|
class TSATform : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TPageControl *PageControl1;
|
|
TTabSheet *Inicio;
|
|
TImage *Image1;
|
|
TBevel *Bevel1;
|
|
TLabel *Label1;
|
|
TBevel *Bevel2;
|
|
TLabel *Label2;
|
|
TLabel *Label3;
|
|
TLabel *Label4;
|
|
TLabel *Label5;
|
|
TLabel *Label6;
|
|
TEdit *Nombre;
|
|
TEdit *Dir1;
|
|
TEdit *Dir2;
|
|
TEdit *Tlf1;
|
|
TEdit *Tlf2;
|
|
TEdit *email;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TSpeedButton *SpeedButton10;
|
|
TTabSheet *TabSheet1;
|
|
TButton *Button3;
|
|
TLabel *Label7;
|
|
TComboBox *ComboBox1;
|
|
TLabel *Label8;
|
|
TEdit *CPUmhz;
|
|
TLabel *Label9;
|
|
TGroupBox *GroupBox1;
|
|
TCheckBox *CheckBox1;
|
|
TCheckBox *CheckBox2;
|
|
TCheckBox *CheckBox3;
|
|
TCheckBox *CheckBox4;
|
|
TCheckBox *CheckBox5;
|
|
TLabel *Label10;
|
|
TComboBox *ComboBox2;
|
|
TLabel *Label11;
|
|
TComboBox *ComboBox3;
|
|
TComboBox *ComboBox4;
|
|
TCheckBox *CheckBox6;
|
|
TLabel *Label12;
|
|
TComboBox *ComboBox5;
|
|
TEdit *TVideo;
|
|
TCheckBox *CheckBox7;
|
|
TTabSheet *TabSheet2;
|
|
TButton *Button4;
|
|
TButton *Button5;
|
|
TMemo *Memo1;
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
void __fastcall NombreKeyPress(TObject *Sender, char &Key);
|
|
void __fastcall Dir1KeyPress(TObject *Sender, char &Key);
|
|
void __fastcall Tlf1KeyPress(TObject *Sender, char &Key);
|
|
private: // User declarations
|
|
public: // User declarations
|
|
__fastcall TSATform(TComponent* Owner);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TSATform *SATform;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|