source: branches/xpascal/Forms/FormSource.pas

Last change on this file was 227, checked in by chronos, 17 months ago
  • Added: Test form.
  • Added: Interface translation.
  • Added: Common package.
File size: 329 bytes
Line 
1unit FormSource;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls,
7 SynHighlighterPas, SynEdit, FormEx;
8
9type
10
11 { TFormSource }
12
13 TFormSource = class(TFormEx)
14 Label1: TLabel;
15 SynEditSource: TSynEdit;
16 SynFreePascalSyn1: TSynFreePascalSyn;
17 end;
18
19implementation
20
21{$R *.lfm}
22
23end.
24
Note: See TracBrowser for help on using the repository browser.