mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-13 03:23:03 +02:00
24 lines
429 B
ObjectPascal
24 lines
429 B
ObjectPascal
program mousetest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, uform
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Scaled:=True;
|
|
Application.Title:='Demo mouse';
|
|
RequireDerivedFormResource:=True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TFormMain, FormMain);
|
|
Application.Run;
|
|
end.
|
|
|