-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitFormLaberinto.h
62 lines (61 loc) · 1.87 KB
/
UnitFormLaberinto.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//---------------------------------------------------------------------------
#ifndef UnitFormLaberintoH
#define UnitFormLaberintoH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ComCtrls.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Imaging.pngimage.hpp>
//---------------------------------------------------------------------------
class TFormLaberinto : public TForm
{
__published: // IDE-managed Components
TLabel *Label1;
TLabel *Label_PtoTot;
TLabel *Label6;
TLabel *Label9;
TImage *Image1;
TComboBox *ComboBox_Equipos;
TButton *Button_Exit;
TButton *Button_calc;
TButton *Button_guardar;
TGroupBox *GroupBox_Bonus;
TCheckBox *CheckBoxBest;
TGroupBox *GroupBox1;
TLabel *Label5;
TLabel *Label7;
TLabel *Label8;
TUpDown *UpDownSalComp;
TUpDown *UpDownSalBox;
TUpDown *UpDownBoxComp;
TEdit *Edit_SalComp;
TEdit *Edit_SalCompBox;
TEdit *Edit_SalBox;
TGroupBox *GroupBox2;
TLabel *Label2;
TLabel *Label3;
TLabel *Label10;
TEdit *Edit_Temp1;
TEdit *Edit_Temp2;
TLabel *Label4;
TEdit *Edit_Temp3;
TLabeledEdit *LabeledEditTmax;
TLabeledEdit *LabeledEditPtoTotal;
TButton *ButtonPtoTotal;
void __fastcall Button_ExitClick(TObject *Sender);
void __fastcall ComboBox_EquiposChange(TObject *Sender);
void __fastcall Button_guardarClick(TObject *Sender);
void __fastcall Button_calcClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall ButtonPtoTotalClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormLaberinto(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormLaberinto *FormLaberinto;
//---------------------------------------------------------------------------
#endif