ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/app/VMM/win32/magicform.h
Revision: 62
Committed: Fri Nov 16 16:46:00 2007 UTC (17 years, 9 months ago) by francois
Content type: text/plain
Original Path: magic/app/VMM/VMM/win32/magicform.h
File size: 3823 byte(s)
Log Message:
Nouvelle version de VMM avec couleur configurable et affichage de l 'origine des mailles
Nouveau prog de transfert
Nouvelle version de mailleur avec toutes les options disponibles

File Contents

# User Rev Content
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     // magicform.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H25
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23    
24     #ifndef magicformH
25     #define magicformH
26     //---------------------------------------------------------------------------
27     #include <Classes.hpp>
28     #include <Controls.hpp>
29     #include <StdCtrls.hpp>
30     #include <Forms.hpp>
31     #include <ComCtrls.hpp>
32     #include <ToolWin.hpp>
33     #include <ImgList.hpp>
34     #include "CGAUGES.h"
35     #include "main.h"
36     #include "PERFGRAP.h"
37     #include <ExtCtrls.hpp>
38     #include <Dialogs.hpp>
39     //---------------------------------------------------------------------------
40     class TVisuMagicform : public TForm
41     {
42     __published: // IDE-managed Components
43    
44     TButton *Button1;
45     TLabel *Label1;
46     TRadioButton *RadioButton1;
47     TGroupBox *GroupBox2;
48     TEdit *Edit1;
49     TEdit *Edit2;
50     TLabel *Label2;
51     TLabel *Label3;
52     TGroupBox *GroupBox3;
53     TRadioButton *RadioButton2;
54     TRadioButton *RadioButton3;
55     TRadioButton *RadioButton4;
56     TGroupBox *GroupBox1;
57     TRadioButton *RadioButton5;
58     TRadioButton *RadioButton6;
59     TButton *Button3;
60     TOpenDialog *OpenDialog1;
61 francois 62 TButton *Button2;
62     TRadioButton *RadioButton7;
63     TGroupBox *GroupBox4;
64     TCheckBox *CheckBox2;
65     TCheckBox *CheckBox1;
66     TTrackBar *TrackBar2;
67     TLabel *Label4;
68     TComboBox *ComboBox1;
69     TLabel *Label5;
70     TEdit *Edit7;
71 5 TTrackBar *TrackBar1;
72     TLabel *Label8;
73 francois 62 TEdit *Edit3;
74     TCheckBox *CheckBox3;
75     TEdit *Edit4;
76     TButton *Button4;
77     TOpenDialog *OpenDialog2;
78     TTrackBar *TrackBar3;
79     TEdit *Edit5;
80 5 void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
81     void __fastcall RadioButton1Click(TObject *Sender);
82     void __fastcall Button1Click(TObject *Sender);
83     void __fastcall RadioButton6Click(TObject *Sender);
84     void __fastcall Button3Click(TObject *Sender);
85     void __fastcall TrackBar1Change(TObject *Sender);
86     void __fastcall Button2Click(TObject *Sender);
87 francois 62 void __fastcall RadioButton7Click(TObject *Sender);
88     void __fastcall TrackBar2Change(TObject *Sender);
89     void __fastcall Button4Click(TObject *Sender);
90     void __fastcall CheckBox3Click(TObject *Sender);
91     void __fastcall TrackBar3Change(TObject *Sender);
92 5 private: // User declarations
93    
94     public: // User declarations
95 francois 62 __fastcall TVisuMagicform(TComponent* Owner,TMainForm *win,MG_FILE* mgest);
96 5 class Thread_maille* maille_process;
97     TMainForm* fen;
98 francois 62 MG_GESTIONNAIRE* gest;
99 5 };
100     //---------------------------------------------------------------------------
101     extern PACKAGE TVisuMagicform *VisuMagicform;
102     //---------------------------------------------------------------------------
103     #endif