source: trunk/Forms/UCodeEdit.pas

Last change on this file was 2, checked in by george, 15 years ago
  • Modified: CodeEdit window is now dockable rather than MDI child.
  • Modified: Main menu changed to ActionMainMenuBar with XP style.
File size: 374 bytes
Line 
1unit UCodeEdit;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7 Dialogs, StdCtrls, UDockManagement;
8
9type
10 TCodeEdit = class(TDDockForm)
11 Memo1: TMemo;
12 private
13 { Private declarations }
14 public
15 { Public declarations }
16 end;
17
18var
19 CodeEdit: TCodeEdit;
20
21implementation
22
23{$R *.dfm}
24
25end.
Note: See TracBrowser for help on using the repository browser.