home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
OPTIONS.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-01-16
|
2KB
|
47 lines
//----------------------------------------------------------------------------
//Borland C++ Builder
//Copyright (c) 1987 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
#ifndef optionsH
#define optionsH
//----------------------------------------------------------------------------
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <StdCtrls.hpp>
#include <Controls.hpp>
#include <Forms.hpp>
#include <Graphics.hpp>
#include <Classes.hpp>
#include <SysUtils.hpp>
#include <Windows.hpp>
#include <System.hpp>
#include <ComCtrls.hpp>
//----------------------------------------------------------------------------
class TOptionsDlg : public TForm
{
__published:
TButton *OKBtn;
TButton *CancelBtn;
TBevel *Bevel1;
TTrackBar *SpeedSet;
TTrackBar *PopulationSet;
TEdit *GameTimeSet;
TLabel *Slow;
TLabel *Fast;
TLabel *Label1;
TLabel *Label2;
TLabel *Speed;
TLabel *Population;
TLabel *Time;
void __fastcall OKBtnClick(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
private:
public:
virtual __fastcall TOptionsDlg(TComponent* AOwner);
};
//----------------------------------------------------------------------------
extern TOptionsDlg *OptionsDlg;
//----------------------------------------------------------------------------
#endif