-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReporte.h
executable file
·44 lines (39 loc) · 1.33 KB
/
Reporte.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
/*---------------------------------------------------------------------------*\
| Archivo : Reporte.h |
| Proyecto : Prolog.bpr |
| Programado por: Patricio Merino - Héctor Díaz - Paul Leger. |
| Descripción : Esta librería empaqueta la clase TForm2 para ser usada en |
| otros archivos. |
| Usada por : Reporte.cpp, Editor.cpp. |
\*---------------------------------------------------------------------------*/
#ifndef ReporteH
#define ReporteH
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <ComCtrls.hpp>
class TForm2 : public TForm
{
__published:
TPanel *Panel1;
TLabel *Label1;
TLabel *Label2;
TLabel *Label3;
TLabel *Label4;
TEdit *Edit1;
TProgressBar *ProgressBar1;
TMemo *Memo1;
void __fastcall cierraForm(TObject *Sender, TCloseAction &Action);
private:
TFont *fuente;
public:
__fastcall TForm2(TComponent* Owner);
void limpia(String ruta);
void habilita();
void deshabilita();
void porDefecto();
};
extern PACKAGE TForm2 *Form2;
#endif