-
-
Notifications
You must be signed in to change notification settings - Fork 317
/
Copy pathWrapDelphiVCL.pas
48 lines (42 loc) · 1.49 KB
/
WrapDelphiVCL.pas
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(* This unit is part of the Python for Delphi (P4D) library *)
(* Project home: https://github.com/pyscripter/python4delphi *)
(* *)
(* Project Maintainer: PyScripter (pyscripter@gmail.com) *)
(* Original Authors: Dr. Dietmar Budelsky (dbudelsky@web.de) *)
(* Morgan Martinet (https://github.com/mmm-experts) *)
(* Core developer: Lucas Belo (lucas.belo@live.com) *)
(* Contributors: See contributors.md at project home *)
(* *)
(* LICENCE and Copyright: MIT (see project home) *)
(**************************************************************************)
unit WrapDelphiVCL;
{
Helper unit that will register all the wrappers for the VCL.
Instead of including WrapDelphiClasses, WrapDelphiControls... into your uses
clause, simply add WrapDelphiVCL.
}
interface
implementation
uses
WrapDelphiTypes,
WrapDelphiClasses,
WrapDelphiWindows,
WrapDelphiDataBind,
WrapActions,
WrapVclImgList,
WrapVclControls,
WrapVclGraphics,
WrapVclForms,
WrapVclActnList,
WrapVclMenus,
WrapVclStdCtrls,
WrapVclComCtrls,
WrapVclExtCtrls,
WrapVclButtons,
WrapVclGrids,
WrapVclSamplesSpin,
WrapVclWinXCtrls,
WrapVclThemes,
WrapVclDialogs,
WrapVclMedia;
end.