Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 9825acea20b8c1730a908ceb6b6baa6d > files > 120

fpc-doc-3.0.4-6.mga7.armv7hl.rpm

{$mode objfpc}
program TestGTK;

uses SysUtils, classes, FPgtk, FPgtkExt, lister;

begin
  try
    writeln ('Creating application');
    application := TFPgtkApplication.Create;
    writeln ('Setting mainwindow');
    application.MainWindow := TlistWindow.Create;
    writeln ('Running GTK');
    application.Run;
    writeln ('Everything Closed');
    application.Free;
    writeln ('Cleaned up everything');
  except
    on e : Exception do
      writeln ('UNEXPECTED ERORR: ',e.message);
  end;
end.