source: trunk/OpenBDS.dpr

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: 1.1 KB
Line 
1program OpenBDS;
2
3uses
4 Forms,
5 UDockManagement in 'UDockManagement.pas',
6 UCodeEdit in 'Forms\UCodeEdit.pas' {CodeEdit},
7 UComponentPalette in 'DockForms\UComponentPalette.pas' {ComponentPalette},
8 UObjectInspector in 'DockForms\UObjectInspector.pas' {ObjectInspector},
9 UProjectManager in 'DockForms\UProjectManager.pas' {ProjectManager},
10 UStructureView in 'DockForms\UStructureView.pas' {StructureView},
11 UMainForm in 'Forms\UMainForm.pas' {MainForm},
12 UApplicationInfo in 'UApplicationInfo.pas',
13 UProject in 'UProject.pas';
14
15{$R *.res}
16
17begin
18 {$WARN SYMBOL_PLATFORM OFF}
19 ReportMemoryLeaksOnShutdown := DebugHook <> 0;
20 {$WARN SYMBOL_PLATFORM ON}
21 Application.Initialize;
22 Application.Title := 'OpenBDS';
23 Application.CreateForm(TMainForm, MainForm);
24 Application.CreateForm(TCodeEdit, CodeEdit);
25 Application.CreateForm(TComponentPalette, ComponentPalette);
26 Application.CreateForm(TObjectInspector, ObjectInspector);
27 Application.CreateForm(TProjectManager, ProjectManager);
28 Application.CreateForm(TStructureView, StructureView);
29 Application.Run;
30end.
Note: See TracBrowser for help on using the repository browser.