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

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