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 |
|
|
// expwin.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef expwinH
|
25 |
|
|
#define expwinH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
#include <Forms.hpp>
|
31 |
|
|
#include <FileCtrl.hpp>
|
32 |
|
|
#include <Dialogs.hpp>
|
33 |
|
|
#include <ExtCtrls.hpp>
|
34 |
|
|
#include <Graphics.hpp>
|
35 |
|
|
//---------------------------------------------------------------------------
|
36 |
|
|
class Texpwinf : public TForm
|
37 |
|
|
{
|
38 |
|
|
__published: // IDE-managed Components
|
39 |
|
|
TButton *Button1;
|
40 |
|
|
TDriveComboBox *DriveComboBox1;
|
41 |
|
|
TDirectoryListBox *DirectoryListBox1;
|
42 |
|
|
TFileListBox *FileListBox1;
|
43 |
|
|
TFilterComboBox *FilterComboBox1;
|
44 |
|
|
TListBox *ListBox1;
|
45 |
|
|
TLabel *Label1;
|
46 |
|
|
TLabel *Label2;
|
47 |
|
|
TButton *Button2;
|
48 |
|
|
TOpenDialog *OpenDialog1;
|
49 |
|
|
TButton *Button3;
|
50 |
|
|
TListBox *ListBox2;
|
51 |
|
|
TButton *Button4;
|
52 |
|
|
TImage *Image1;
|
53 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
54 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
55 |
|
|
void __fastcall FileListBox1Change(TObject *Sender);
|
56 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
57 |
|
|
void __fastcall Button3Click(TObject *Sender);
|
58 |
|
|
void __fastcall Button4Click(TObject *Sender);
|
59 |
|
|
void __fastcall FilterComboBox1Change(TObject *Sender);
|
60 |
|
|
private: // User declarations
|
61 |
|
|
public: // User declarations
|
62 |
|
|
__fastcall Texpwinf(TComponent* Owner);
|
63 |
|
|
};
|
64 |
|
|
//---------------------------------------------------------------------------
|
65 |
|
|
extern PACKAGE Texpwinf *expwinf;
|
66 |
|
|
//---------------------------------------------------------------------------
|
67 |
|
|
#endif
|