-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitFormSelectores.h
73 lines (72 loc) · 2.53 KB
/
UnitFormSelectores.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
63
64
65
66
67
68
69
70
71
72
73
//---------------------------------------------------------------------------
#ifndef UnitFormSelectoresH
#define UnitFormSelectoresH
//---------------------------------------------------------------------------
#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 TFormSelectores : 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 *CheckBoxSnitch;
TGroupBox *GroupBox1;
TLabel *Label4;
TLabel *Label5;
TLabel *Label7;
TLabel *Label8;
TEdit *Edit_PiezasBlancas;
TUpDown *UpDownPiezasBlancas;
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_PiezasNegras;
TUpDown *UpDownPiezasNegras;
TLabeledEdit *LabeledEditTmax;
TEdit *Edit_PtoTot;
TButton *ButtonPto;
void __fastcall ComboBox_EquiposChange(TObject *Sender);
void __fastcall Button_guardarClick(TObject *Sender);
void __fastcall UpDownPiezasBlancasChangingEx(TObject *Sender, bool &AllowChange, int NewValue,
TUpDownDirection Direction);
void __fastcall UpDownSalCompChangingEx(TObject *Sender, bool &AllowChange, int NewValue,
TUpDownDirection Direction);
void __fastcall UpDownSalBoxChangingEx(TObject *Sender, bool &AllowChange, int NewValue,
TUpDownDirection Direction);
void __fastcall UpDownBoxCompChangingEx(TObject *Sender, bool &AllowChange, int NewValue,
TUpDownDirection Direction);
void __fastcall UpDownPiezasNegrasChangingEx(TObject *Sender, bool &AllowChange,
int NewValue, TUpDownDirection Direction);
void __fastcall Button_calcClick(TObject *Sender);
void __fastcall Button_ExitClick(TObject *Sender);
void __fastcall ButtonPtoClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TFormSelectores(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFormSelectores *FormSelectores;
//---------------------------------------------------------------------------
#endif