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 |
|
|
// matwin.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef matwinH
|
25 |
|
|
#define matwinH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
#include <Forms.hpp>
|
31 |
|
|
#include <Grids.hpp>
|
32 |
|
|
//---------------------------------------------------------------------------
|
33 |
|
|
class Tmatwinform : public TForm
|
34 |
|
|
{
|
35 |
|
|
__published: // IDE-managed Components
|
36 |
|
|
TStringGrid *StringGrid1;
|
37 |
|
|
TButton *Button1;
|
38 |
|
|
TButton *Button2;
|
39 |
|
|
TLabel *Label1;
|
40 |
|
|
TLabel *Label2;
|
41 |
|
|
TLabel *Label3;
|
42 |
|
|
TLabel *Label4;
|
43 |
|
|
TComboBox *ComboBox1;
|
44 |
|
|
TComboBox *ComboBox2;
|
45 |
|
|
TLabel *Label5;
|
46 |
|
|
TLabel *Label6;
|
47 |
|
|
TComboBox *ComboBox3;
|
48 |
|
|
TComboBox *ComboBox4;
|
49 |
|
|
TLabel *Label7;
|
50 |
|
|
TLabel *Label8;
|
51 |
|
|
void __fastcall FormCreate(TObject *Sender);
|
52 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
53 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
54 |
|
|
void __fastcall ComboBox1Change(TObject *Sender);
|
55 |
|
|
void __fastcall FormActivate(TObject *Sender);
|
56 |
|
|
void __fastcall ComboBox2Change(TObject *Sender);
|
57 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
58 |
|
|
void __fastcall ComboBox4Change(TObject *Sender);
|
59 |
|
|
void __fastcall ComboBox3Change(TObject *Sender);
|
60 |
|
|
private: // User declarations
|
61 |
|
|
class MT_GESTIONNAIRE *mgest;
|
62 |
|
|
|
63 |
|
|
public: // User declarations
|
64 |
|
|
__fastcall Tmatwinform(TComponent* Owner);
|
65 |
|
|
|
66 |
|
|
|
67 |
|
|
class MG_GESTIONNAIRE* gest;
|
68 |
|
|
|
69 |
|
|
};
|
70 |
|
|
//---------------------------------------------------------------------------
|
71 |
|
|
extern PACKAGE Tmatwinform *matwinform;
|
72 |
|
|
//---------------------------------------------------------------------------
|
73 |
|
|
#endif
|