Files
lazarus-ccr/applications/lazstats/source_orig/licenseunit.pas
wp_xxyyzz 15870755f1 LazStats: Adding original source, part 5.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7884 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-11-16 11:13:29 +00:00

50 lines
755 B
ObjectPascal

unit LicenseUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, ExtCtrls;
type
{ TLicenseFrm }
TLicenseFrm = class(TForm)
AcceptBtn: TButton;
RejectBtn: TButton;
Memo1: TMemo;
Panel1: TPanel;
procedure AcceptBtnClick(Sender: TObject);
procedure RejectBtnClick(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
LicenseFrm: TLicenseFrm;
implementation
{ TLicenseFrm }
procedure TLicenseFrm.AcceptBtnClick(Sender: TObject);
begin
LicenseFrm.Hide;
end;
procedure TLicenseFrm.RejectBtnClick(Sender: TObject);
begin
close;
end;
initialization
{$I licenseunit.lrs}
end.