home *** CD-ROM | disk | FTP | other *** search
- unit About;
-
- interface
-
- uses
- Windows, StdCtrls, ExtCtrls, Controls, Buttons, Classes,Forms;
- //SysUtils;//, Classes, Graphics, Forms,Controls, StdCtrls, Buttons, ExtCtrls, Dialogs;
- const
-
- kRadCon = pi/180;
- kMaxECAT = 512;
- PixelCountMax = 32768;
- type
-
- xRGBTripleArray = ^TRGBTripleArray;
- TRGBTripleArray = ARRAY[0..PixelCountMax-1] OF TRGBTriple;
-
- TAboutBox = class(TForm)
- Panel1: TPanel;
- Version: TLabel;
- OKButton: TButton;
- Image1: TImage;
- SpeedButton1: TSpeedButton;
- Label1: TLabel;
- procedure OKButtonClick(Sender: TObject);
-
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- AboutBox: TAboutBox;
-
- implementation
-
- uses Main;
-
- {$R *.DFM}
- procedure TAboutBox.OKButtonClick(Sender: TObject);
- begin
- Close;
- end;
-
- end.
-
-