1 |
|
5 |
//------------------------------------------------------------
|
2 |
|
|
//------------------------------------------------------------
|
3 |
|
|
// MAGiC
|
4 |
|
|
// Jean Christophe Cuillière et Vincent FRANCOIS
|
5 |
|
|
// Département de Génie Mécanique - UQTR
|
6 |
|
|
//------------------------------------------------------------
|
7 |
|
|
// Le projet MAGIC est un projet de recherche du département
|
8 |
|
|
// de génie mécanique de l'Université du Québec à
|
9 |
|
|
// Trois Rivières
|
10 |
|
|
// Les librairies ne peuvent être utilisées sans l'accord
|
11 |
|
|
// des auteurs (contact : francois@uqtr.ca)
|
12 |
|
|
//------------------------------------------------------------
|
13 |
|
|
//------------------------------------------------------------
|
14 |
|
|
//
|
15 |
|
|
// ccfwin.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef ccfwinH
|
25 |
|
|
#define ccfwinH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
//---------------------------------------------------------------------------
|
31 |
|
|
class Tccfwinform : public TForm
|
32 |
|
|
{
|
33 |
|
|
__published: // IDE-managed Components
|
34 |
|
|
TButton *Button1;
|
35 |
|
|
TButton *Button2;
|
36 |
|
|
TEdit *Edit1;
|
37 |
|
|
TLabel *Label1;
|
38 |
|
|
TRadioButton *RadioButton1;
|
39 |
|
|
TRadioButton *RadioButton2;
|
40 |
|
|
TRadioButton *RadioButton3;
|
41 |
|
|
TRadioButton *RadioButton4;
|
42 |
|
|
TComboBox *ComboBox1;
|
43 |
|
|
TComboBox *ComboBox2;
|
44 |
|
|
TComboBox *ComboBox3;
|
45 |
|
|
TComboBox *ComboBox4;
|
46 |
|
|
TLabel *Label2;
|
47 |
|
|
TLabel *Label4;
|
48 |
|
|
TComboBox *ComboBox5;
|
49 |
|
|
TCheckBox *CheckBox1;
|
50 |
|
|
TCheckBox *CheckBox2;
|
51 |
|
|
TCheckBox *CheckBox3;
|
52 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
53 |
|
|
void __fastcall RadioButton1Click(TObject *Sender);
|
54 |
|
|
void __fastcall RadioButton2Click(TObject *Sender);
|
55 |
|
|
void __fastcall RadioButton3Click(TObject *Sender);
|
56 |
|
|
void __fastcall RadioButton4Click(TObject *Sender);
|
57 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
58 |
|
|
void __fastcall ComboBox5Change(TObject *Sender);
|
59 |
|
|
private: // User declarations
|
60 |
|
|
class MG_FILE *gest;
|
61 |
|
|
char type[4];
|
62 |
|
|
public: // User declarations
|
63 |
|
|
__fastcall Tccfwinform(TComponent* Owner);
|
64 |
|
|
void __fastcall active(MG_FILE* gesttmp,char *typeccf);
|
65 |
|
|
};
|
66 |
|
|
//---------------------------------------------------------------------------
|
67 |
|
|
extern PACKAGE Tccfwinform *ccfwinform;
|
68 |
|
|
//---------------------------------------------------------------------------
|
69 |
|
|
#endif
|