home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / PROC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  2.4 KB  |  76 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ProcH
  3. #define ProcH
  4. //----------------------------------------------------------------------------
  5. #include <ComCtrls.hpp>
  6. #include <Buttons.hpp>
  7. #include <ExtCtrls.hpp>
  8. #include <Menus.hpp>
  9. #include <StdCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. #include <Forms.hpp>
  12. #include <Controls.hpp>
  13. #include <Graphics.hpp>
  14. #include <Classes.hpp>
  15. #include <SysUtils.hpp>
  16. #include <Messages.hpp>
  17. #include <Windows.hpp>
  18. #include <System.hpp>
  19. //----------------------------------------------------------------------------
  20. class TForm1 : public TForm
  21. {
  22. __published:
  23.     TGroupBox *GroupBox1;
  24.     TRadioButton *RadioButton1;
  25.     TRadioButton *RadioButton2;
  26.     TRadioButton *RadioButton3;
  27.     TMainMenu *MainMenu1;
  28.     TMenuItem *File1;
  29.     TMenuItem *New1;
  30.     TMenuItem *Exit1;
  31.     TMenuItem *N1;
  32.     TMenuItem *Help1;
  33.     TMenuItem *About1;
  34.     TPanel *Panel1;
  35.     TSpeedButton *SpeedButton1;
  36.     TSpeedButton *SpeedButton2;
  37.     TSpeedButton *SpeedButton3;
  38.     TSpeedButton *SpeedButton4;
  39.     TStatusBar *StatusBar1;
  40.     TListBox *ListBox1;
  41.     TButton *Button1;
  42.     TButton *Button2;
  43.     TMenuItem *Refresh1;
  44.     TLabel *Label1;
  45.     TRadioButton *RadioButton4;
  46.     TLabel *Label2;
  47.     TLabel *Label3;
  48.     TLabel *Label4;
  49.     TTimer *Timer1;
  50.     TImage *Image1;
  51.     TBevel *Bevel1;
  52.     void __fastcall RadioButton3Click(TObject *Sender);
  53.     void __fastcall Exit1Click(TObject *Sender);
  54.     void __fastcall About1Click(TObject *Sender);
  55.     void __fastcall SpeedButton1Click(TObject *Sender);
  56.     void __fastcall SpeedButton2Click(TObject *Sender);
  57.     void __fastcall SpeedButton4Click(TObject *Sender);
  58.     void __fastcall RadioButton1Click(TObject *Sender);
  59.     void __fastcall Button2Click(TObject *Sender);
  60.     void __fastcall Button1Click(TObject *Sender);
  61.     void __fastcall New1Click(TObject *Sender);
  62.     void __fastcall Refresh1Click(TObject *Sender);
  63.     void __fastcall GroupBox1Click(TObject *Sender);
  64.     void __fastcall FormCreate(TObject *Sender);
  65.     void __fastcall SpeedButton3Click(TObject *Sender);
  66.     void __fastcall ListBox1Click(TObject *Sender);
  67.     void __fastcall FormShow(TObject *Sender);
  68.     void __fastcall Timer1Timer(TObject *Sender);
  69. public:
  70.     virtual __fastcall TForm1(TComponent *Owner);
  71. };
  72. //----------------------------------------------------------------------------
  73. extern TForm1 *Form1;
  74. //----------------------------------------------------------------------------
  75. #endif    
  76.