ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/app/VMM/win32/ccfwin.h
Revision: 188
Committed: Wed Jul 8 20:53:35 2009 UTC (16 years, 1 month ago) by francois
Content type: text/plain
Original Path: magic/app/VMM/VMM/win32/ccfwin.h
File size: 3244 byte(s)
Log Message:
Compilation des derniers changements sous Borland et Slection possible dans VMM

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     // ccfwin.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H25
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23    
24     #ifndef ccfwinH
25     #define ccfwinH
26     //---------------------------------------------------------------------------
27     #include <Classes.hpp>
28     #include <Controls.hpp>
29     #include <StdCtrls.hpp>
30 francois 188 #include <Buttons.hpp>
31    
32    
33 5 //---------------------------------------------------------------------------
34     class Tccfwinform : public TForm
35     {
36     __published: // IDE-managed Components
37     TButton *Button1;
38     TButton *Button2;
39     TEdit *Edit1;
40     TLabel *Label1;
41     TRadioButton *RadioButton1;
42     TRadioButton *RadioButton2;
43     TRadioButton *RadioButton3;
44     TRadioButton *RadioButton4;
45     TComboBox *ComboBox1;
46     TComboBox *ComboBox2;
47     TComboBox *ComboBox3;
48     TComboBox *ComboBox4;
49     TLabel *Label2;
50     TLabel *Label4;
51     TComboBox *ComboBox5;
52     TCheckBox *CheckBox1;
53     TCheckBox *CheckBox2;
54     TCheckBox *CheckBox3;
55 francois 188 TBitBtn *BitBtn1;
56     TBitBtn *BitBtn2;
57     TBitBtn *BitBtn3;
58     TBitBtn *BitBtn4;
59 5 void __fastcall Button2Click(TObject *Sender);
60     void __fastcall RadioButton1Click(TObject *Sender);
61     void __fastcall RadioButton2Click(TObject *Sender);
62     void __fastcall RadioButton3Click(TObject *Sender);
63     void __fastcall RadioButton4Click(TObject *Sender);
64     void __fastcall Button1Click(TObject *Sender);
65     void __fastcall ComboBox5Change(TObject *Sender);
66 francois 188 void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
67     void __fastcall BitBtn1Click(TObject *Sender);
68     void __fastcall BitBtn2Click(TObject *Sender);
69     void __fastcall BitBtn3Click(TObject *Sender);
70     void __fastcall BitBtn4Click(TObject *Sender);
71 5 private: // User declarations
72     class MG_FILE *gest;
73     char type[4];
74 francois 188 class TVisuWinform *fenp;
75 5 public: // User declarations
76 francois 188 __fastcall Tccfwinform(TComponent* Owner,TVisuWinform *fen);
77 5 void __fastcall active(MG_FILE* gesttmp,char *typeccf);
78     };
79     //---------------------------------------------------------------------------
80     extern PACKAGE Tccfwinform *ccfwinform;
81     //---------------------------------------------------------------------------
82     #endif