├── Source
├── dclshlctrls.dcr
├── RootEdit.dfm
└── RootEdit.pas
├── Images
├── SupportingDelphi.jpg
├── ShellControlsDemoMini.jpg
└── ShellControlsDemoDesktop.jpg
├── Packages
├── XE6
│ ├── dclshlctrls.res
│ ├── vclshlctrls.res
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ └── dclshlctrls.dproj
├── XE8
│ ├── dclshlctrls.res
│ ├── vclshlctrls.res
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ └── dclshlctrls.dproj
├── D10_4
│ ├── dclshlctrls.res
│ ├── vclshlctrls.res
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── dclshlctrls.dproj
│ └── vclshlctrls.dproj
├── XE10
│ ├── dclshlctrls.res
│ ├── vclshlctrls.res
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ └── Vcl.Shell.Controls.groupproj
├── D11
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── dclshlctrls.dproj
│ └── vclshlctrls.dproj
├── D12
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── vclshlctrls.dproj
│ └── dclshlctrls.dproj
├── D13
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── vclshlctrls.dproj
│ └── dclshlctrls.dproj
├── D10_1
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── dclshlctrls.dproj
│ └── vclshlctrls.dproj
├── D10_2
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── dclshlctrls.dproj
│ └── vclshlctrls.dproj
├── D10_3
│ ├── vclshlctrls.dpk
│ ├── dclshlctrls.dpk
│ ├── Vcl.Shell.Controls.groupproj
│ ├── dclshlctrls.dproj
│ └── vclshlctrls.dproj
└── ShellReg.pas
├── Demo
└── ShellControlsDemo
│ ├── ShellControlsDemo.ico
│ ├── ShellControlsDemo.dpr
│ ├── ShellControlsDemo.dproj
│ └── MainUnit.pas
├── .gitignore
├── README.md
└── ReadMe.htm
/Source/dclshlctrls.dcr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Source/dclshlctrls.dcr
--------------------------------------------------------------------------------
/Images/SupportingDelphi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Images/SupportingDelphi.jpg
--------------------------------------------------------------------------------
/Packages/XE6/dclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE6/dclshlctrls.res
--------------------------------------------------------------------------------
/Packages/XE6/vclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE6/vclshlctrls.res
--------------------------------------------------------------------------------
/Packages/XE8/dclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE8/dclshlctrls.res
--------------------------------------------------------------------------------
/Packages/XE8/vclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE8/vclshlctrls.res
--------------------------------------------------------------------------------
/Packages/D10_4/dclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/D10_4/dclshlctrls.res
--------------------------------------------------------------------------------
/Packages/D10_4/vclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/D10_4/vclshlctrls.res
--------------------------------------------------------------------------------
/Packages/XE10/dclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE10/dclshlctrls.res
--------------------------------------------------------------------------------
/Packages/XE10/vclshlctrls.res:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Packages/XE10/vclshlctrls.res
--------------------------------------------------------------------------------
/Images/ShellControlsDemoMini.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Images/ShellControlsDemoMini.jpg
--------------------------------------------------------------------------------
/Images/ShellControlsDemoDesktop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Images/ShellControlsDemoDesktop.jpg
--------------------------------------------------------------------------------
/Demo/ShellControlsDemo/ShellControlsDemo.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/EtheaDev/DelphiShellControlsPackages/HEAD/Demo/ShellControlsDemo/ShellControlsDemo.ico
--------------------------------------------------------------------------------
/Demo/ShellControlsDemo/ShellControlsDemo.dpr:
--------------------------------------------------------------------------------
1 | program ShellControlsDemo;
2 |
3 | uses
4 | Vcl.Forms,
5 | MainUnit in 'MainUnit.pas' {MainForm},
6 | Vcl.Themes,
7 | Vcl.Styles,
8 | Vcl.Shell.Utils in '..\..\Source\Vcl.Shell.Utils.pas';
9 |
10 | {$R *.res}
11 |
12 | begin
13 | Application.Initialize;
14 | Application.MainFormOnTaskBar := True;
15 | Application.ActionUpdateDelay := 50;
16 | Application.Title := 'VCL Shell Controls Demo';
17 | Application.CreateForm(TMainForm, MainForm);
18 | Application.Run;
19 | end.
20 |
--------------------------------------------------------------------------------
/Packages/D10_4/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX AUTO}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D11/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX AUTO}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D12/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX AUTO}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D13/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX AUTO}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/XE10/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '230'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/XE6/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '200'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/XE8/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '220'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D10_1/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '240'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D10_2/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '250'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D10_3/vclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package vclshlctrls;
13 |
14 | {$R *.res}
15 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
16 | {$ALIGN 8}
17 | {$ASSERTIONS ON}
18 | {$BOOLEVAL OFF}
19 | {$DEBUGINFO OFF}
20 | {$EXTENDEDSYNTAX ON}
21 | {$IMPORTEDDATA ON}
22 | {$IOCHECKS ON}
23 | {$LOCALSYMBOLS OFF}
24 | {$LONGSTRINGS ON}
25 | {$OPENSTRINGS ON}
26 | {$OPTIMIZATION OFF}
27 | {$OVERFLOWCHECKS OFF}
28 | {$RANGECHECKS OFF}
29 | {$REFERENCEINFO OFF}
30 | {$SAFEDIVIDE OFF}
31 | {$STACKFRAMES OFF}
32 | {$TYPEDADDRESS OFF}
33 | {$VARSTRINGCHECKS ON}
34 | {$WRITEABLECONST OFF}
35 | {$MINENUMSIZE 1}
36 | {$IMAGEBASE $400000}
37 | {$DEFINE RELEASE}
38 | {$ENDIF IMPLICITBUILDING}
39 | {$DESCRIPTION 'VCL Shell Controls'}
40 | {$LIBSUFFIX '260'}
41 | {$RUNONLY}
42 | {$IMPLICITBUILD OFF}
43 |
44 | requires
45 | rtl,
46 | Vcl;
47 |
48 | contains
49 | Vcl.Shell.ShellCtrls in 'Vcl.Shell.ShellCtrls.pas',
50 | Vcl.Shell.ShellConsts in 'Vcl.Shell.ShellConsts.pas';
51 |
52 | end.
53 |
--------------------------------------------------------------------------------
/Packages/D10_1/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '240'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D10_2/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '250'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D10_3/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '260'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D10_4/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX AUTO}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D11/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX AUTO}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D12/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX AUTO}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/D13/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX AUTO}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | designide,
47 | vclshlctrls;
48 |
49 | contains
50 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
51 | ShellReg in '..\ShellReg.pas';
52 |
53 | end.
54 |
--------------------------------------------------------------------------------
/Packages/XE10/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '230'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | rtl,
47 | Vcl,
48 | designide,
49 | Vclx,
50 | vclshlctrls;
51 |
52 | contains
53 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
54 | ShellReg in '..\ShellReg.pas';
55 |
56 | end.
57 |
--------------------------------------------------------------------------------
/Packages/XE6/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '200'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | rtl,
47 | Vcl,
48 | designide,
49 | Vclx,
50 | vclshlctrls;
51 |
52 | contains
53 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
54 | ShellReg in '..\ShellReg.pas';
55 |
56 | end.
57 |
--------------------------------------------------------------------------------
/Packages/XE8/dclshlctrls.dpk:
--------------------------------------------------------------------------------
1 |
2 | //---------------------------------------------------------------------------
3 |
4 | // This software is Copyright (c) 2011 Embarcadero Technologies, Inc.
5 | // You may only use this software if you are an authorized licensee
6 | // of Delphi, C++Builder or RAD Studio (Embarcadero Products).
7 | // This software is considered a Redistributable as defined under
8 | // the software license agreement that comes with the Embarcadero Products
9 | // and is subject to that software license agreement.
10 |
11 | //---------------------------------------------------------------------------
12 | package dclshlctrls;
13 |
14 | {$R *.res}
15 | {$R '..\..\Source\dclshlctrls.dcr'}
16 | {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
17 | {$ALIGN 8}
18 | {$ASSERTIONS ON}
19 | {$BOOLEVAL OFF}
20 | {$DEBUGINFO OFF}
21 | {$EXTENDEDSYNTAX ON}
22 | {$IMPORTEDDATA ON}
23 | {$IOCHECKS ON}
24 | {$LOCALSYMBOLS OFF}
25 | {$LONGSTRINGS ON}
26 | {$OPENSTRINGS ON}
27 | {$OPTIMIZATION OFF}
28 | {$OVERFLOWCHECKS OFF}
29 | {$RANGECHECKS OFF}
30 | {$REFERENCEINFO OFF}
31 | {$SAFEDIVIDE OFF}
32 | {$STACKFRAMES OFF}
33 | {$TYPEDADDRESS OFF}
34 | {$VARSTRINGCHECKS ON}
35 | {$WRITEABLECONST OFF}
36 | {$MINENUMSIZE 1}
37 | {$IMAGEBASE $400000}
38 | {$DEFINE RELEASE}
39 | {$ENDIF IMPLICITBUILDING}
40 | {$DESCRIPTION 'Shell Control Property and Component Editors'}
41 | {$LIBSUFFIX '220'}
42 | {$DESIGNONLY}
43 | {$IMPLICITBUILD OFF}
44 |
45 | requires
46 | rtl,
47 | Vcl,
48 | designide,
49 | Vclx,
50 | vclshlctrls;
51 |
52 | contains
53 | RootEdit in '..\..\Source\RootEdit.pas' {RootPathEditDlg},
54 | ShellReg in '..\ShellReg.pas';
55 |
56 | end.
57 |
--------------------------------------------------------------------------------
/Packages/D11/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {2FEBAC3C-AA6F-425D-8C6D-8FC6001CA2BE}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D12/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {53BD3831-05AB-41EA-840C-83A606DE76E4}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D13/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {24838E71-DF15-4E4D-B43F-1548A01C2B4E}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/XE10/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/XE6/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/XE8/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D10_1/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D10_2/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {1DA1F5D8-040A-429A-B841-588AB88C0AE5}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D10_3/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/Packages/D10_4/Vcl.Shell.Controls.groupproj:
--------------------------------------------------------------------------------
1 |
2 |
3 | {941C9A68-996D-430B-A0C2-758BD97F8CD7}
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Default.Personality.12
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Uncomment these types if you want even more clean repository. But be careful.
2 | # It can make harm to an existing project source. Read explanations below.
3 | #
4 | # Resource files are binaries containing manifest, project icon and version info.
5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6 | #*.res
7 | #
8 | # Type library file (binary). In old Delphi versions it should be stored.
9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10 | #*.tlb
11 | #
12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13 | # Uncomment this if you are not using diagrams or use newer Delphi version.
14 | #*.ddp
15 | #
16 | # Visual LiveBindings file. Added in Delphi XE2.
17 | # Uncomment this if you are not using LiveBindings Designer.
18 | #*.vlb
19 | #
20 | # Deployment Manager configuration file for your project. Added in Delphi XE2.
21 | # Uncomment this if it is not mobile development and you do not use remote debug feature.
22 | #*.deployproj
23 | #
24 | # C++ object files produced when C/C++ Output file generation is configured.
25 | # Uncomment this if you are not using external objects (zlib library for example).
26 | #*.obj
27 | #
28 |
29 | # Delphi compiler-generated binaries (safe to delete)
30 | *.exe
31 | *.dll
32 | *.bpl
33 | *.bpi
34 | *.dcp
35 | *.so
36 | *.apk
37 | *.drc
38 | *.map
39 | *.dres
40 | *.rsm
41 | *.tds
42 | *.dcu
43 | *.lib
44 | *.a
45 | *.o
46 | *.ocx
47 |
48 | # Delphi autogenerated files (duplicated info)
49 | *.cfg
50 | *.hpp
51 | *Resource.rc
52 |
53 | # Delphi local files (user-specific info)
54 | *.local
55 | *.identcache
56 | *.projdata
57 | *.tvsconfig
58 | *.dsk
59 |
60 | # Delphi history and backups
61 | __history/
62 | __recovery/
63 | *.~*
64 |
65 | # Castalia statistics file (since XE7 Castalia is distributed with Delphi)
66 | *.stat
67 |
68 | # Boss dependency manager vendor folder https://github.com/HashLoad/boss
69 | modules/
70 |
--------------------------------------------------------------------------------
/Packages/ShellReg.pas:
--------------------------------------------------------------------------------
1 | {***************************************************************************}
2 | { }
3 | { Delphi Visual Component Library }
4 | { }
5 | { Copyright (c) 1995-2010 Embarcadero Technologies, Inc. }
6 | { }
7 | { You may only use this software if you are an authorized licensee }
8 | { of Delphi, C++Builder or RAD Studio (Embarcadero Products). }
9 | { This software is considered a Redistributable as defined under }
10 | { the software license agreement that comes with the Embarcadero Products }
11 | { and is subject to that software license agreement. }
12 | { }
13 | {***************************************************************************}
14 | unit ShellReg;
15 |
16 | interface
17 |
18 | procedure Register;
19 |
20 | implementation
21 |
22 | uses Classes, TypInfo, Controls, DesignIntf, ShellCtrls, ShellConsts, RootEdit;
23 |
24 | procedure Register;
25 | begin
26 | GroupDescendentsWith(TShellChangeNotifier, Controls.TControl);
27 | RegisterComponents(SPalletePage, [TShellTreeView, TShellComboBox, TShellListView,
28 | TShellChangeNotifier]);
29 | RegisterPropertyEditor(TypeInfo(TRoot), TShellTreeView, SPropertyName, TRootProperty);
30 | RegisterPropertyEditor(TypeInfo(TRoot), TShellComboBox, SPropertyName, TRootProperty);
31 | RegisterPropertyEditor(TypeInfo(TRoot), TShellListView, SPropertyName, TRootProperty);
32 | RegisterPropertyEditor(TypeInfo(TRoot), TShellChangeNotifier, SPropertyName, TRootProperty);
33 | RegisterComponentEditor(TShellTreeView, TRootEditor);
34 | RegisterComponentEditor(TShellListView, TRootEditor);
35 | RegisterComponentEditor(TShellComboBox, TRootEditor);
36 | RegisterComponentEditor(TShellChangeNotifier, TRootEditor);
37 | end;
38 |
39 | end.
40 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Shell Controls Packages and Utils [](https://opensource.org/licenses/Apache-2.0)
2 |
3 | **Latest Version 1.1.3 - 29 Aug 2025**
4 |
5 | ** Packages, demo and Utility of Delphi ShellControl Components (missing by Embarcadero)
6 |
7 | Delphi version supported: XE6, XE8, XE10, D10.1, D10.2, D10.3, D10.4, D11, D12 and D13.
8 |
9 | For other versions, please add a request in the [Issue section](https://github.com/EtheaDev/DelphiShellControlsPackages/issues) of the project.
10 |
11 | 
12 |
13 | ## Components
14 | Vcl.Shell.ShellCtrls.pas and Vcl.Shell.ShellConsts.pas are not distributed here, because they are distributed by Embarcadero inside Delphi!
15 |
16 | ## Installation Notes
17 |
18 | - Open the Vcl.Shell.Controls.groupproj file from Packages\[DelphiVersion] folder.
19 | - Build: vclshlctrls.dpk
20 | - Build and Install: dclshlctrls.dpk
21 |
22 | Then you can use those visual components at Desing-time:
23 |
24 | - **TShellComboBox**
25 | - **TShellListView**
26 | - **TShellTreeView**
27 |
28 | and the component **TShellChangeNotifier** to intercept changes to folders and files.
29 |
30 | A simple demo that explain the use of those components is located under:
31 | - Demo\ShellControlsDemo\ShellControlsDemo.dproj
32 |
33 | ### Preview of the Demo included:
34 |
35 | 
36 |
37 |
38 | ## Release Notes
39 | 29 Aug 2025: ver. 1.1.3
40 | - Fixed Demo
41 | - Added support for Delphi 13
42 |
43 | 22 Sep 2024: ver. 1.1.2
44 | - Fixed option list for ListView in Demo
45 |
46 | 08 Jun 2024: ver. 1.1.1
47 | - Updated packages of ShellControls for Delphi 12.1
48 |
49 | 27 Oct 2023: ver. 1.1.0
50 | - Added packages of ShellControls for Delphi 12
51 |
52 | 26 May 2023: ver. 1.0.0
53 | - Added packages of ShellControls for many Delphi versions
54 | - Fixed ShellEdit.pas to show the propery editor according to IDE style
55 | - Added a simple Demo and a simple unit with some useful utilities
56 |
57 | ## License
58 |
59 | Licensed under the [Apache License, Version 2.0] (the "License");
60 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
61 |
62 | Original Copyright (c) 1995-2010 Embarcadero Technologies, Inc.
63 | You may only use this software if you are an authorized licensee of Delphi, C++Builder or RAD Studio (Embarcadero Products).
64 | This software is considered a Redistributable as defined under the software license agreement that comes with the Embarcadero Products and is subject to that software license agreement.
65 |
--------------------------------------------------------------------------------
/Source/RootEdit.dfm:
--------------------------------------------------------------------------------
1 | object RootPathEditDlg: TRootPathEditDlg
2 | Left = 446
3 | Top = 190
4 | Caption = 'Select Root Path'
5 | ClientHeight = 217
6 | ClientWidth = 424
7 | Color = clBtnFace
8 | Font.Charset = DEFAULT_CHARSET
9 | Font.Color = clWindowText
10 | Font.Height = -13
11 | Font.Name = 'Segoe UI'
12 | Font.Style = []
13 | OldCreateOrder = True
14 | OnClose = FormClose
15 | OnCreate = FormCreate
16 | DesignSize = (
17 | 424
18 | 217)
19 | PixelsPerInch = 96
20 | TextHeight = 17
21 | object StandardGroupBox: TGroupBox
22 | Left = 8
23 | Top = 8
24 | Width = 404
25 | Height = 80
26 | Anchors = [akLeft, akTop, akRight]
27 | TabOrder = 0
28 | DesignSize = (
29 | 404
30 | 80)
31 | object cbFolderType: TComboBox
32 | Left = 20
33 | Top = 30
34 | Width = 364
35 | Height = 25
36 | Anchors = [akLeft, akTop, akRight]
37 | TabOrder = 0
38 | end
39 | object rbUseFolder: TRadioButton
40 | Left = 20
41 | Top = 4
42 | Width = 155
43 | Height = 21
44 | Caption = 'Use Standard &Folder'
45 | TabOrder = 1
46 | OnClick = rbUseFolderClick
47 | end
48 | end
49 | object PathGroupBox: TGroupBox
50 | Left = 8
51 | Top = 94
52 | Width = 404
53 | Height = 70
54 | Anchors = [akLeft, akTop, akRight]
55 | TabOrder = 1
56 | DesignSize = (
57 | 404
58 | 70)
59 | object ePath: TEdit
60 | Left = 17
61 | Top = 31
62 | Width = 327
63 | Height = 25
64 | Anchors = [akLeft, akTop, akRight]
65 | TabOrder = 0
66 | Text = 'C:\'
67 | end
68 | object btnBrowse: TButton
69 | Left = 350
70 | Top = 30
71 | Width = 34
72 | Height = 30
73 | Anchors = [akTop, akRight]
74 | Caption = '...'
75 | TabOrder = 1
76 | OnClick = btnBrowseClick
77 | end
78 | object rbUsePath: TRadioButton
79 | Left = 20
80 | Top = 4
81 | Width = 90
82 | Height = 21
83 | Caption = 'Use &Path'
84 | TabOrder = 2
85 | OnClick = rbUsePathClick
86 | end
87 | end
88 | object BottomPanel: TPanel
89 | Left = 0
90 | Top = 176
91 | Width = 424
92 | Height = 41
93 | Align = alBottom
94 | TabOrder = 2
95 | DesignSize = (
96 | 424
97 | 41)
98 | object OKButton: TButton
99 | Left = 222
100 | Top = 5
101 | Width = 92
102 | Height = 31
103 | Anchors = [akTop, akRight]
104 | Caption = '&OK'
105 | Default = True
106 | ModalResult = 1
107 | TabOrder = 0
108 | OnClick = OKButtonClick
109 | end
110 | object CancelButton: TButton
111 | Left = 320
112 | Top = 5
113 | Width = 92
114 | Height = 31
115 | Anchors = [akTop, akRight]
116 | Cancel = True
117 | Caption = '&Cancel'
118 | TabOrder = 1
119 | OnClick = CancelButtonClick
120 | end
121 | end
122 | end
123 |
--------------------------------------------------------------------------------
/ReadMe.htm:
--------------------------------------------------------------------------------
1 |
32 |
Shell Controls Packages and Utils
33 |
Latest Version 1.1.3 - 29 Aug 2025
34 |
** Packages, demo and Utility of Delphi ShellControl Components (missing by Embarcadero)
35 |
Delphi version supported: XE6, XE8, XE10, D10.1, D10.2, D10.3, D10.4, D11, D12 and D13.
36 |
For other versions, please add a request in the Issue section of the project.
37 |
38 |
Components
39 |
Vcl.Shell.ShellCtrls.pas and Vcl.Shell.ShellConsts.pas are not distributed here, because they are distributed by Embarcadero inside Delphi!
40 |
Installation Notes
41 |
42 |
Open the Vcl.Shell.Controls.groupproj file from Packages[DelphiVersion] folder.
43 |
Build: vclshlctrls.dpk
44 |
Build and Install: dclshlctrls.dpk
45 |
46 |
Then you can use those visual components at Desing-time:
47 |
48 |
TShellComboBox
49 |
TShellListView
50 |
TShellTreeView
51 |
52 |
and the component TShellChangeNotifier to intercept changes to folders and files.
53 |
A simple demo that explain the use of those components is located under:
54 |
55 |
Demo\ShellControlsDemo\ShellControlsDemo.dproj
56 |
57 |
Preview of the Demo included:
58 |
59 |
Release Notes
60 |
29 Aug 2025: ver. 1.1.3
61 |
62 |
Fixed Demo
63 |
Added support for Delphi 13
64 |
65 |
22 Sep 2024: ver. 1.1.2
66 |
67 |
Fixed option list for ListView in Demo
68 |
69 |
08 Jun 2024: ver. 1.1.1
70 |
71 |
Updated packages of ShellControls for Delphi 12.1
72 |
73 |
27 Oct 2023: ver. 1.1.0
74 |
75 |
Added packages of ShellControls for Delphi 12
76 |
77 |
26 May 2023: ver. 1.0.0
78 |
79 |
Added packages of ShellControls for many Delphi versions
80 |
Fixed ShellEdit.pas to show the propery editor according to IDE style
81 |
Added a simple Demo and a simple unit with some useful utilities
82 |
83 |
License
84 |
Licensed under the Apache License, Version 2.0;
85 | Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
86 |
Original Copyright (c) 1995-2010 Embarcadero Technologies, Inc.
87 | You may only use this software if you are an authorized licensee of Delphi, C++Builder or RAD Studio (Embarcadero Products).
88 | This software is considered a Redistributable as defined under the software license agreement that comes with the Embarcadero Products and is subject to that software license agreement.