|
Last change
on this file was 189, checked in by george, 15 years ago |
- Modified: All unit and type names renamed to shorted form. Shortcut "CD" instead of "CoolDock".
|
|
File size:
573 bytes
|
| Line | |
|---|
| 1 | unit USourceEditorForm;
|
|---|
| 2 |
|
|---|
| 3 | {$mode objfpc}{$H+}
|
|---|
| 4 |
|
|---|
| 5 | interface
|
|---|
| 6 |
|
|---|
| 7 | uses
|
|---|
| 8 | Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, UCDClient,
|
|---|
| 9 | SynHighlighterPas, SynEdit, SynHighlighterMulti;
|
|---|
| 10 |
|
|---|
| 11 | type
|
|---|
| 12 |
|
|---|
| 13 | { TSourceEditorForm }
|
|---|
| 14 |
|
|---|
| 15 | TSourceEditorForm = class(TForm)
|
|---|
| 16 | published
|
|---|
| 17 | CoolDockClient1: TCDClient;
|
|---|
| 18 | SynMultiSyn1: TSynMultiSyn;
|
|---|
| 19 | SynEdit1: TSynEdit;
|
|---|
| 20 | SynPasSyn1: TSynPasSyn;
|
|---|
| 21 | { private declarations }
|
|---|
| 22 | public
|
|---|
| 23 | { public declarations }
|
|---|
| 24 | end;
|
|---|
| 25 |
|
|---|
| 26 | var
|
|---|
| 27 | SourceEditorForm: TSourceEditorForm;
|
|---|
| 28 |
|
|---|
| 29 | implementation
|
|---|
| 30 |
|
|---|
| 31 | {$R *.lfm}
|
|---|
| 32 |
|
|---|
| 33 | end.
|
|---|
| 34 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.