ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/app/VMM/VMM/win32/about.h
Revision: 5
Committed: Tue Jun 12 20:26:34 2007 UTC (18 years, 2 months ago)
Content type: text/plain
File size: 1971 byte(s)
Log Message:

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     // about.h
16     //
17     //------------------------------------------------------------
18     //------------------------------------------------------------
19     // COPYRIGHT 2000
20     // Version du 02/03/2006 à 11H25
21     //------------------------------------------------------------
22     //------------------------------------------------------------
23     #ifndef AboutH
24     #define AboutH
25     //----------------------------------------------------------------------------
26     #include <vcl\ExtCtrls.hpp>
27     #include <vcl\Buttons.hpp>
28     #include <vcl\StdCtrls.hpp>
29     #include <vcl\Controls.hpp>
30     #include <vcl\Forms.hpp>
31     #include <vcl\Graphics.hpp>
32     #include <vcl\Classes.hpp>
33     #include <vcl\Windows.hpp>
34     #include <vcl\System.hpp>
35     #include <jpeg.hpp>
36     //----------------------------------------------------------------------------
37     class TAboutBox : public TForm
38     {
39     __published:
40     TButton *OKButton;
41     TLabel *Copyright;
42     TImage *ProgramIcon;
43     TLabel *Label1;
44     TMemo *Memo1;
45     void __fastcall FormCreate(TObject *Sender);
46     private:
47     public:
48     virtual __fastcall TAboutBox(TComponent *Owner);
49     };
50     //----------------------------------------------------------------------------
51     extern TAboutBox *AboutBox;
52     //----------------------------------------------------------------------------
53     #endif