home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 May / Chip_2002-05_cd1.bin / chplus / cpp / 3 / Posuv.exe / main.h < prev    next >
C/C++ Source or Header  |  1999-02-05  |  2KB  |  46 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef mainH
  7. #define mainH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published:    // IDE-managed Components
  17.     TScrollBar *ScrollBar1;
  18.     TLabel *Label2;
  19.     TGroupBox *GroupBox1;
  20.     TLabel *Label1;
  21.     TEdit *PosEdit;
  22.     TButton *Button1;
  23.     TLabel *Label3;
  24.     TEdit *MinEdit;
  25.     TLabel *Label4;
  26.     TEdit *MaxEdit;
  27.     TLabel *Label5;
  28.     TEdit *LargeEdit;
  29.     TLabel *Label6;
  30.     TEdit *SmallEdit;
  31.     void __fastcall ScrollBar1Scroll(TObject *Sender, TScrollCode ScrollCode,
  32.     int &ScrollPos);
  33.     void __fastcall Button1Click(TObject *Sender);
  34.     void __fastcall FormCreate(TObject *Sender);
  35.     
  36.     void __fastcall EnableButton(TObject *Sender, char &Key);
  37.     
  38. private:    // User declarations
  39. public:        // User declarations
  40.     virtual __fastcall TForm1(TComponent* Owner);
  41. };
  42. //---------------------------------------------------------------------------
  43. extern TForm1 *Form1;
  44. //---------------------------------------------------------------------------
  45. #endif
  46.