Desktop application to see IOW server load and connect to IOW and external servers via jupyterlab and xpra
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
program phyportal;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
uses
|
|
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
|
|
cthreads,
|
|
|
|
{$ENDIF}{$ENDIF}
|
|
|
|
Interfaces, // this includes the LCL widgetset
|
|
|
|
Forms, Unit1, Unit2, Unit3
|
|
|
|
{ you can add units after this };
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
RequireDerivedFormResource:=True;
|
|
|
|
Application.Scaled:=True;
|
|
|
|
Application.Initialize;
|
|
|
|
Application.CreateForm(TForm1, Form1);
|
|
|
|
Application.CreateForm(TForm2, Form2);
|
|
|
|
Application.CreateForm(TForm3, Form3);
|
|
|
|
Application.Run;
|
|
|
|
end.
|
|
|
|
|