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 |
|
|
// help.h
|
16 |
|
|
//
|
17 |
|
|
//------------------------------------------------------------
|
18 |
|
|
//------------------------------------------------------------
|
19 |
|
|
// COPYRIGHT 2000
|
20 |
|
|
// Version du 02/03/2006 à 11H25
|
21 |
|
|
//------------------------------------------------------------
|
22 |
|
|
//------------------------------------------------------------
|
23 |
|
|
|
24 |
|
|
#ifndef helpH
|
25 |
|
|
#define helpH
|
26 |
|
|
//---------------------------------------------------------------------------
|
27 |
|
|
#include <Classes.hpp>
|
28 |
|
|
#include <Controls.hpp>
|
29 |
|
|
#include <StdCtrls.hpp>
|
30 |
|
|
#include <Forms.hpp>
|
31 |
|
|
#include "SHDocVw_OCX.h"
|
32 |
|
|
#include <OleCtrls.hpp>
|
33 |
|
|
#include <Buttons.hpp>
|
34 |
|
|
#include <ExtCtrls.hpp>
|
35 |
|
|
#include <Graphics.hpp>
|
36 |
|
|
//---------------------------------------------------------------------------
|
37 |
|
|
class Thelpwin : public TForm
|
38 |
|
|
{
|
39 |
|
|
__published: // IDE-managed Components
|
40 |
|
|
TCppWebBrowser *CppWebBrowser1;
|
41 |
|
|
TBitBtn *BitBtn1;
|
42 |
|
|
TBitBtn *BitBtn2;
|
43 |
|
|
TBitBtn *BitBtn3;
|
44 |
|
|
TBitBtn *BitBtn4;
|
45 |
|
|
TImage *Image1;
|
46 |
|
|
void __fastcall FormShow(TObject *Sender);
|
47 |
|
|
void __fastcall BitBtn1Click(TObject *Sender);
|
48 |
|
|
void __fastcall BitBtn2Click(TObject *Sender);
|
49 |
|
|
void __fastcall BitBtn4Click(TObject *Sender);
|
50 |
|
|
void __fastcall BitBtn3Click(TObject *Sender);
|
51 |
|
|
void __fastcall FormResize(TObject *Sender);
|
52 |
|
|
private: // User declarations
|
53 |
|
|
public: // User declarations
|
54 |
|
|
__fastcall Thelpwin(TComponent* Owner);
|
55 |
|
|
};
|
56 |
|
|
//---------------------------------------------------------------------------
|
57 |
|
|
extern PACKAGE Thelpwin *helpwin;
|
58 |
|
|
//---------------------------------------------------------------------------
|
59 |
|
|
#endif
|