source: trunk/Packages/CoolDocking/Demo/IDE/IDE.lpr

Last change on this file was 73, checked in by chronos, 12 years ago
  • Modified: Packages are now stored as uncomporessed and are linked with relative path to project.
File size: 1.3 KB
Line 
1program IDE;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, UMainForm, UObjectInspectorForm, CoolDocking, UStructureForm,
11UToolPaletteForm, UProjectManagerForm, UMessagesForm, UCallStackForm,
12ULocalVariablesForm, UToDoListForm, UWatchListForm, UThreadStatusForm,
13USourceEditorForm, UComponentTree;
14
15{$R *.res}
16
17begin
18// RequireDerivedFormResource := True;
19 Application.Initialize;
20 Application.CreateForm(TMainForm, MainForm);
21 Application.CreateForm(TObjectInspectorForm, ObjectInspectorForm);
22 Application.CreateForm(TStructureForm, StructureForm);
23 Application.CreateForm(TToolPaletteForm, ToolPaletteForm);
24 Application.CreateForm(TProjectManagerForm, ProjectManagerForm);
25 Application.CreateForm(TMessagesForm, MessagesForm);
26 Application.CreateForm(TCallStackForm, CallStackForm);
27 Application.CreateForm(TLocalVariablesForm, LocalVariablesForm);
28 Application.CreateForm(TToDoListForm, ToDoListForm);
29 Application.CreateForm(TWatchListForm, WatchListForm);
30 Application.CreateForm(TThreadStatusForm, ThreadStatusForm);
31 Application.CreateForm(TSourceEditorForm, SourceEditorForm);
32 Application.CreateForm(TComponentTree, ComponentTree);
33 Application.Run;
34end.
35
Note: See TracBrowser for help on using the repository browser.