home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 October
/
Chip_2001-10_cd1.bin
/
zkuste
/
delphi
/
navody
/
DICOMSRC.ZIP
/
About.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2001-06-08
|
851b
|
48 lines
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.