forked from Arvur/DelphiSettingManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDelphiSettingManager.dpr
More file actions
33 lines (29 loc) · 1.22 KB
/
DelphiSettingManager.dpr
File metadata and controls
33 lines (29 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
program DelphiSettingManager;
{$R *.dres}
uses
Forms,
dmGlyphs in 'Source\dmGlyphs.pas' {dm_Glyphs: TDataModule},
fMain in 'Source\fMain.pas' {frmMain},
ShellUtilities in 'Source\ShellUtilities.pas',
SettingCollection in 'Source\SettingCollection.pas',
frmSetting in 'Source\frmSetting.pas' {frmSettingList: TFrame},
fNewSetting in 'Source\fNewSetting.pas' {frmNewSetting},
fRenameSetting in 'Source\fRenameSetting.pas' {frmRenameSetting},
LoadSaveCustomSetting in 'Source\LoadSaveCustomSetting.pas',
fAbout in 'Source\fAbout.pas' {frmAbout},
DelphiSettingRegistry in 'Source\DelphiSettingRegistry.pas',
TreeViewController in 'Source\TreeViewController.pas',
fEditSetting in 'Source\fEditSetting.pas' {frmEditSetting},
ValueNamesProvider in 'Source\ValueNamesProvider.pas',
IntfObserver in 'Design Patterns\IntfObserver.pas',
Subject in 'Design Patterns\Subject.pas',
SettingPersistent in 'Source\SettingPersistent.pas',
SettingTemplate in 'Source\SettingTemplate.pas';
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Delphi Setting Manager';
Application.CreateForm(Tdm_Glyphs, dm_Glyphs);
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.