ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/mesh/edition.h
Revision: 3
Committed: Tue Jun 12 12:42:51 2007 UTC (17 years, 11 months ago)
Content type: text/plain
File size: 1615 byte(s)
Log Message:

File Contents

# Content
1 //---------------------------------------------------------------------------
2 #ifndef editionH
3 #define editionH
4 //---------------------------------------------------------------------------
5 #include <vcl\Classes.hpp>
6 #include <vcl\Controls.hpp>
7 #include <vcl\StdCtrls.hpp>
8 #include <vcl\Forms.hpp>
9 #include <vcl\ComCtrls.hpp>
10 #include <vcl\Dialogs.hpp>
11 #include <vcl\Menus.hpp>
12 //---------------------------------------------------------------------------
13 class TEditeur : public TForm
14 {
15 __published: // IDE-managed Components
16 TRichEdit *RichEdit1;
17 TOpenDialog *OpenDialog1;
18 TMainMenu *MainMenu1;
19 TMenuItem *File1;
20 TMenuItem *Ouvrir1;
21 TMenuItem *Mode1;
22 TMenuItem *Lecture1;
23 TMenuItem *Ecriture1;
24 TMenuItem *Enregistrer1;
25 TSaveDialog *SaveDialog1;
26 TMenuItem *Fermer1;
27 TStatusBar *StatusBar1;
28 void __fastcall FormShow(TObject *Sender);
29 void __fastcall Fermer1Click(TObject *Sender);
30 void __fastcall Ouvrir1Click(TObject *Sender);
31
32 void __fastcall Lecture1Click(TObject *Sender);
33 void __fastcall Ecriture1Click(TObject *Sender);
34 void __fastcall Enregistrer1Click(TObject *Sender);
35
36 void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
37
38
39 void __fastcall StatusBar1Resize(TObject *Sender);
40 void __fastcall FormCreate(TObject *Sender);
41
42
43 private: // User declarations
44 public: // User declarations
45 __fastcall TEditeur(TComponent* Owner);
46 };
47 //---------------------------------------------------------------------------
48 extern TEditeur *Editeur;
49 //---------------------------------------------------------------------------
50 #endif