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

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //----------------------------------------------------------------------------
  6. #ifndef optionsH
  7. #define optionsH
  8. //----------------------------------------------------------------------------
  9. #include <ExtCtrls.hpp>
  10. #include <Buttons.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Controls.hpp>
  13. #include <Forms.hpp>
  14. #include <Graphics.hpp>
  15. #include <Classes.hpp>
  16. #include <SysUtils.hpp>
  17. #include <Windows.hpp>
  18. #include <System.hpp>
  19. #include <ComCtrls.hpp>
  20. //----------------------------------------------------------------------------
  21. class TOptionsDlg : public TForm
  22. {
  23. __published:
  24.     TButton *OKBtn;
  25.     TButton *CancelBtn;
  26.     TBevel *Bevel1;
  27.     TTrackBar *SpeedSet;
  28.     TTrackBar *PopulationSet;
  29.     TEdit *GameTimeSet;
  30.     TLabel *Slow;
  31.     TLabel *Fast;
  32.     TLabel *Label1;
  33.     TLabel *Label2;
  34.     TLabel *Speed;
  35.     TLabel *Population;
  36.     TLabel *Time;
  37.     void __fastcall OKBtnClick(TObject *Sender);
  38.     void __fastcall FormShow(TObject *Sender);
  39. private:
  40. public:
  41.     virtual __fastcall TOptionsDlg(TComponent* AOwner);
  42. };
  43. //----------------------------------------------------------------------------
  44. extern TOptionsDlg *OptionsDlg;
  45. //----------------------------------------------------------------------------
  46. #endif    
  47.