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 |
|
|
// compocarte.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef compocarteH
|
25 |
|
|
#define compocarteH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
#include <Forms.hpp>
|
31 |
|
|
#include <Dialogs.hpp>
|
32 |
|
|
//---------------------------------------------------------------------------
|
33 |
|
|
class Tcomc : public TForm
|
34 |
|
|
{
|
35 |
|
|
__published: // IDE-managed Components
|
36 |
|
|
TButton *Button1;
|
37 |
|
|
TButton *Button2;
|
38 |
|
|
TOpenDialog *OpenDialog1;
|
39 |
|
|
TLabel *Label1;
|
40 |
|
|
TLabel *Label2;
|
41 |
|
|
TButton *Button3;
|
42 |
|
|
TComboBox *ComboBox1;
|
43 |
|
|
TLabel *Label3;
|
44 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
45 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
46 |
|
|
void __fastcall Button3Click(TObject *Sender);
|
47 |
|
|
private: // User declarations
|
48 |
|
|
public: // User declarations
|
49 |
|
|
__fastcall Tcomc(TComponent* Owner);
|
50 |
|
|
int etat;
|
51 |
|
|
};
|
52 |
|
|
//---------------------------------------------------------------------------
|
53 |
|
|
extern PACKAGE Tcomc *comc;
|
54 |
|
|
//---------------------------------------------------------------------------
|
55 |
|
|
#endif
|