2011-07-21 15:10:27 +00:00
|
|
|
{
|
|
|
|
LazEyes2
|
|
|
|
|
|
|
|
Fun application which follows the mouse wherever it goes.
|
|
|
|
|
|
|
|
The window has the form of the eyes, which are ellipses.
|
|
|
|
|
|
|
|
Version 2: Operates with a custom control
|
|
|
|
}
|
|
|
|
program lazeyes2;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
Interfaces,
|
|
|
|
Forms,
|
|
|
|
lazeyes2painter,
|
|
|
|
lazeyes2form;
|
|
|
|
|
|
|
|
//{$IFDEF WINDOWS}{$R lazeyes2.rc}{$ENDIF}
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
2011-07-28 12:20:06 +00:00
|
|
|
RequireDerivedFormResource := False;
|
2011-07-21 15:10:27 +00:00
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|