1 |
|
5 |
//---------------------------------------------------------------------------
|
2 |
|
|
|
3 |
|
|
#ifndef reconsH
|
4 |
|
|
#define reconsH
|
5 |
|
|
//---------------------------------------------------------------------------
|
6 |
|
|
#include <Classes.hpp>
|
7 |
|
|
#include <Controls.hpp>
|
8 |
|
|
#include <StdCtrls.hpp>
|
9 |
|
|
#include <Forms.hpp>
|
10 |
|
|
#include "mg_gestionnaire.h"
|
11 |
|
|
#include <Menus.hpp>
|
12 |
|
|
#include <Dialogs.hpp>
|
13 |
|
|
//---------------------------------------------------------------------------
|
14 |
|
|
class Tfrecons : public TForm
|
15 |
|
|
{
|
16 |
|
|
__published: // IDE-managed Components
|
17 |
|
|
TGroupBox *GroupBox1;
|
18 |
|
|
TGroupBox *GroupBox2;
|
19 |
|
|
TButton *Button1;
|
20 |
|
|
TListBox *ListBox1;
|
21 |
|
|
TLabel *Label1;
|
22 |
|
|
TListBox *ListBox2;
|
23 |
|
|
TListBox *ListBox3;
|
24 |
|
|
TLabel *Label2;
|
25 |
|
|
TLabel *Label3;
|
26 |
|
|
TPopupMenu *PopupMenu1;
|
27 |
|
|
TMenuItem *dx1;
|
28 |
|
|
TMenuItem *dy1;
|
29 |
|
|
TMenuItem *dz1;
|
30 |
|
|
TLabel *Label4;
|
31 |
|
|
TLabel *Label5;
|
32 |
|
|
TLabel *Label6;
|
33 |
|
|
TLabel *Label7;
|
34 |
|
|
TLabel *Label12;
|
35 |
|
|
TLabel *Label13;
|
36 |
|
|
TLabel *Label14;
|
37 |
|
|
TLabel *Label15;
|
38 |
|
|
TLabel *Label8;
|
39 |
|
|
TLabel *Label9;
|
40 |
|
|
TLabel *Label10;
|
41 |
|
|
TLabel *Label11;
|
42 |
|
|
TLabel *Label16;
|
43 |
|
|
TLabel *Label17;
|
44 |
|
|
TLabel *Label18;
|
45 |
|
|
TLabel *Label19;
|
46 |
|
|
TLabel *Label20;
|
47 |
|
|
TLabel *Label21;
|
48 |
|
|
TButton *Button2;
|
49 |
|
|
TLabel *Label22;
|
50 |
|
|
TButton *Button3;
|
51 |
|
|
TListBox *ListBox4;
|
52 |
|
|
TLabel *Label23;
|
53 |
|
|
TButton *Button4;
|
54 |
|
|
TPopupMenu *PopupMenu2;
|
55 |
|
|
TMenuItem *Maillageoriginal1;
|
56 |
|
|
TMenuItem *Maillagedform1;
|
57 |
|
|
TLabel *Label24;
|
58 |
|
|
TLabel *Label25;
|
59 |
|
|
TLabel *Label26;
|
60 |
|
|
TLabel *Label27;
|
61 |
|
|
TButton *Button5;
|
62 |
|
|
TEdit *Edit1;
|
63 |
|
|
TLabel *Label28;
|
64 |
|
|
TButton *Button6;
|
65 |
|
|
TSaveDialog *SaveDialog1;
|
66 |
|
|
TButton *Button7;
|
67 |
|
|
void __fastcall Button1Click(TObject *Sender);
|
68 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
69 |
|
|
void __fastcall ListBox1Click(TObject *Sender);
|
70 |
|
|
void __fastcall ListBox2Click(TObject *Sender);
|
71 |
|
|
void __fastcall dx1Click(TObject *Sender);
|
72 |
|
|
void __fastcall dy1Click(TObject *Sender);
|
73 |
|
|
void __fastcall dz1Click(TObject *Sender);
|
74 |
|
|
void __fastcall Button2Click(TObject *Sender);
|
75 |
|
|
void __fastcall Button3Click(TObject *Sender);
|
76 |
|
|
void __fastcall Button4Click(TObject *Sender);
|
77 |
|
|
void __fastcall Maillageoriginal1Click(TObject *Sender);
|
78 |
|
|
void __fastcall Maillagedform1Click(TObject *Sender);
|
79 |
|
|
void __fastcall Button5Click(TObject *Sender);
|
80 |
|
|
void __fastcall Button6Click(TObject *Sender);
|
81 |
|
|
void __fastcall Button7Click(TObject *Sender);
|
82 |
|
|
private: // User declarations
|
83 |
|
|
MG_GESTIONNAIRE* gest;
|
84 |
|
|
int xsol,ysol,zsol;
|
85 |
|
|
int xchamps,ychamps,zchamps;
|
86 |
|
|
|
87 |
|
|
public: // User declarations
|
88 |
|
|
__fastcall Tfrecons(TComponent* Owner,MG_GESTIONNAIRE* gestion);
|
89 |
|
|
};
|
90 |
|
|
//---------------------------------------------------------------------------
|
91 |
|
|
extern PACKAGE Tfrecons *frecons;
|
92 |
|
|
//---------------------------------------------------------------------------
|
93 |
|
|
#endif
|