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 |
|
|
// transform.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef transformH
|
25 |
|
|
#define transformH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
#include <Forms.hpp>
|
31 |
|
|
#include <Dialogs.hpp>
|
32 |
|
|
#include <ComCtrls.hpp>
|
33 |
|
|
//---------------------------------------------------------------------------
|
34 |
|
|
class Twintransform : public TForm
|
35 |
|
|
{
|
36 |
|
|
__published: // IDE-managed Components
|
37 |
|
|
TGroupBox *GroupBox1;
|
38 |
|
|
TGroupBox *GroupBox2;
|
39 |
|
|
TEdit *Edit1;
|
40 |
|
|
TEdit *Edit2;
|
41 |
|
|
TButton *Button1;
|
42 |
|
|
TButton *Button3;
|
43 |
|
|
TGroupBox *GroupBox3;
|
44 |
|
|
TOpenDialog *OpenDialog1;
|
45 |
|
|
TCheckBox *CheckBox1;
|
46 |
|
|
TCheckBox *CheckBox2;
|
47 |
|
|
TProgressBar *ProgressBar1;
|
48 |
|
|
TButton *Button2;
|
49 |
|
|
TButton *Button4;
|
50 |
|
|
TGroupBox *GroupBox4;
|
51 |
|
|
TListBox *ListBox1;
|
52 |
|
|
TGroupBox *GroupBox5;
|
53 |
|
|
TRadioButton *RadioButton1;
|
54 |
|
|
TRadioButton *RadioButton2;
|
55 |
|
|
TRadioButton *RadioButton3;
|
56 |
|
|
TRadioButton *RadioButton4;
|
57 |
|
|
TRadioButton *RadioButton5;
|
58 |
|
|
TButton *Button5;
|
59 |
francois |
98 |
TGroupBox *GroupBox6;
|
60 |
|
|
TCheckBox *CheckBox3;
|
61 |
|
5 |
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
62 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
63 |
|
|
void __fastcall Button3Click(TObject *Sender);
|
64 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
65 |
|
|
void __fastcall Button4Click(TObject *Sender);
|
66 |
|
|
void __fastcall ListBox1Click(TObject *Sender);
|
67 |
|
|
void __fastcall Button5Click(TObject *Sender);
|
68 |
|
|
private: // User declarations
|
69 |
|
|
public: // User declarations
|
70 |
|
|
__fastcall Twintransform(TComponent* Owner);
|
71 |
|
|
void __fastcall stat(void);
|
72 |
|
|
};
|
73 |
|
|
//---------------------------------------------------------------------------
|
74 |
|
|
extern PACKAGE Twintransform *wintransform;
|
75 |
|
|
//---------------------------------------------------------------------------
|
76 |
|
|
#endif
|