| 1 |
|
3 |
//---------------------------------------------------------------------------
|
| 2 |
|
|
#ifndef debugH
|
| 3 |
|
|
#define debugH
|
| 4 |
|
|
//---------------------------------------------------------------------------
|
| 5 |
|
|
#include <Classes.hpp>
|
| 6 |
|
|
#include <Controls.hpp>
|
| 7 |
|
|
#include <StdCtrls.hpp>
|
| 8 |
|
|
#include <Forms.hpp>
|
| 9 |
|
|
#include <Buttons.hpp>
|
| 10 |
|
|
#include <Menus.hpp>
|
| 11 |
|
|
#include <Dialogs.hpp>
|
| 12 |
|
|
//---------------------------------------------------------------------------
|
| 13 |
|
|
class TFendebug : public TForm
|
| 14 |
|
|
{
|
| 15 |
|
|
__published: // IDE-managed Components
|
| 16 |
|
|
TGroupBox *GroupBox1;
|
| 17 |
|
|
TGroupBox *GroupBox2;
|
| 18 |
|
|
TGroupBox *GroupBox3;
|
| 19 |
|
|
TListBox *ListBox1;
|
| 20 |
|
|
TListBox *ListBox2;
|
| 21 |
|
|
TListBox *ListBox3;
|
| 22 |
|
|
TListBox *ListBox4;
|
| 23 |
|
|
TListBox *ListBox5;
|
| 24 |
|
|
TListBox *ListBox6;
|
| 25 |
|
|
TSpeedButton *SpeedButton1;
|
| 26 |
|
|
TSpeedButton *SpeedButton2;
|
| 27 |
|
|
TSpeedButton *SpeedButton3;
|
| 28 |
|
|
TSpeedButton *SpeedButton4;
|
| 29 |
|
|
TSpeedButton *SpeedButton5;
|
| 30 |
|
|
TSpeedButton *SpeedButton6;
|
| 31 |
|
|
TSpeedButton *SpeedButton7;
|
| 32 |
|
|
TSpeedButton *SpeedButton8;
|
| 33 |
|
|
TSpeedButton *SpeedButton9;
|
| 34 |
|
|
TMainMenu *MainMenu1;
|
| 35 |
|
|
TMenuItem *Editeur1;
|
| 36 |
|
|
TSpeedButton *SpeedButton10;
|
| 37 |
|
|
TSpeedButton *SpeedButton11;
|
| 38 |
|
|
TSpeedButton *SpeedButton12;
|
| 39 |
|
|
TSpeedButton *SpeedButton13;
|
| 40 |
|
|
TSpeedButton *SpeedButton14;
|
| 41 |
|
|
TSpeedButton *SpeedButton15;
|
| 42 |
|
|
TMenuItem *caractristiquedelapice1;
|
| 43 |
|
|
TMenuItem *Impression1;
|
| 44 |
|
|
TMenuItem *Configuration1;
|
| 45 |
|
|
TMenuItem *Imprimer1;
|
| 46 |
|
|
TPrinterSetupDialog *PrinterSetupDialog1;
|
| 47 |
|
|
TPrintDialog *PrintDialog1;
|
| 48 |
|
|
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
|
| 49 |
|
|
void __fastcall FormResize(TObject *Sender);
|
| 50 |
|
|
void __fastcall FormCreate(TObject *Sender);
|
| 51 |
|
|
void __fastcall SpeedButton4Click(TObject *Sender);
|
| 52 |
|
|
void __fastcall SpeedButton3Click(TObject *Sender);
|
| 53 |
|
|
void __fastcall SpeedButton7Click(TObject *Sender);
|
| 54 |
|
|
void __fastcall SpeedButton8Click(TObject *Sender);
|
| 55 |
|
|
void __fastcall SpeedButton1Click(TObject *Sender);
|
| 56 |
|
|
void __fastcall SpeedButton2Click(TObject *Sender);
|
| 57 |
|
|
void __fastcall SpeedButton6Click(TObject *Sender);
|
| 58 |
|
|
void __fastcall SpeedButton5Click(TObject *Sender);
|
| 59 |
|
|
void __fastcall SpeedButton9Click(TObject *Sender);
|
| 60 |
|
|
void __fastcall Editeur1Click(TObject *Sender);
|
| 61 |
|
|
void __fastcall SpeedButton11Click(TObject *Sender);
|
| 62 |
|
|
void __fastcall SpeedButton12Click(TObject *Sender);
|
| 63 |
|
|
void __fastcall SpeedButton10Click(TObject *Sender);
|
| 64 |
|
|
void __fastcall SpeedButton13Click(TObject *Sender);
|
| 65 |
|
|
void __fastcall SpeedButton14Click(TObject *Sender);
|
| 66 |
|
|
void __fastcall SpeedButton15Click(TObject *Sender);
|
| 67 |
|
|
void __fastcall caractristiquedelapice1Click(TObject *Sender);
|
| 68 |
|
|
void __fastcall Imprimer1Click(TObject *Sender);
|
| 69 |
|
|
void __fastcall Configuration1Click(TObject *Sender);
|
| 70 |
|
|
private: // User declarations
|
| 71 |
|
|
public: // User declarations
|
| 72 |
|
|
__fastcall TFendebug(TComponent* Owner);
|
| 73 |
|
|
void __fastcall ajoute(TListBox *box,char *mess);
|
| 74 |
|
|
int type;
|
| 75 |
|
|
int type2;
|
| 76 |
|
|
|
| 77 |
|
|
};
|
| 78 |
|
|
//---------------------------------------------------------------------------
|
| 79 |
|
|
extern PACKAGE TFendebug *Fendebug;
|
| 80 |
|
|
//---------------------------------------------------------------------------
|
| 81 |
|
|
#endif
|