source: trunk/Forms/FormHelp.pas

Last change on this file was 153, checked in by chronos, 3 months ago
  • Added: Full screen switching support.
  • Added: Help form.
  • Modified: Updated Common package.
  • Fixed: Execution of compiled Java and C# programs.
  • Fixed: Removed interlanced empty lines in Console form on Unix.
File size: 896 bytes
Line 
1unit FormHelp;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, FormEx;
7
8type
9
10 { TFormHelp }
11
12 TFormHelp = class(TFormEx)
13 MemoHelp: TMemo;
14 procedure FormShow(Sender: TObject);
15 end;
16
17var
18 FormHelp: TFormHelp;
19
20
21implementation
22
23{$R *.lfm}
24
25resourcestring
26 SHelpSummary = 'LazFuck is a GUI application for writing, executing, compiling and debugging programs written in famous BrainFuck esoteric programming language.';
27 SHelpFeatures = 'Features:' + LineEnding +
28 '* Graphical code editor with color syntax highlighting' + LineEnding +
29 '* Cross-compilation to Delphi, Free Pascal, Python, Java, C, C#, PHP, Rust and Javascript' + LineEnding +
30 '* Interpreter with debugger';
31
32{ TFormHelp }
33
34procedure TFormHelp.FormShow(Sender: TObject);
35begin
36 MemoHelp.Lines.Text := SHelpSummary + LineEnding + LineEnding + SHelpFeatures;
37end;
38
39end.
40
Note: See TracBrowser for help on using the repository browser.