Skip to content

Commit 538e6a8

Browse files
committed
add
1 parent de31de6 commit 538e6a8

File tree

368 files changed

+75963
-40
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

368 files changed

+75963
-40
lines changed

.gitignore

Lines changed: 11 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,6 @@
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-
25-
# Delphi compiler-generated binaries (safe to delete)
1+
*.zip
2+
*.dbg
3+
*.ico
264
*.exe
275
*.dll
286
*.bpl
@@ -36,19 +14,12 @@
3614
*.rsm
3715
*.tds
3816
*.dcu
17+
*.dof
18+
*.deb
19+
*.zip
20+
*.ppu
21+
*.bak
3922
*.lib
40-
41-
# Delphi autogenerated files (duplicated info)
42-
*.cfg
43-
*Resource.rc
44-
45-
# Delphi local files (user-specific info)
46-
*.local
47-
*.identcache
48-
*.projdata
49-
*.tvsconfig
50-
*.dsk
51-
52-
# Delphi history and backups
53-
__history/
54-
*.~*
23+
*.mes
24+
*.o
25+
*.or

Changes.txt

Lines changed: 1249 additions & 0 deletions
Large diffs are not rendered by default.

Components/PythonVCL_2010.dpk

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
2+
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
3+
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
4+
package PythonVCL_2010;
5+
6+
{$R *.res}
7+
{$R 'Sources\VCL\PythonDatabase.dcr'}
8+
{$ALIGN 8}
9+
{$ASSERTIONS ON}
10+
{$BOOLEVAL OFF}
11+
{$DEBUGINFO ON}
12+
{$EXTENDEDSYNTAX ON}
13+
{$IMPORTEDDATA ON}
14+
{$IOCHECKS ON}
15+
{$LOCALSYMBOLS ON}
16+
{$LONGSTRINGS ON}
17+
{$OPENSTRINGS ON}
18+
{$OPTIMIZATION ON}
19+
{$OVERFLOWCHECKS OFF}
20+
{$RANGECHECKS OFF}
21+
{$REFERENCEINFO ON}
22+
{$SAFEDIVIDE OFF}
23+
{$STACKFRAMES OFF}
24+
{$TYPEDADDRESS OFF}
25+
{$VARSTRINGCHECKS ON}
26+
{$WRITEABLECONST OFF}
27+
{$MINENUMSIZE 1}
28+
{$IMAGEBASE $400000}
29+
{$DESCRIPTION 'VCL Components for Python'}
30+
{$IMPLICITBUILD OFF}
31+
32+
requires
33+
rtl,
34+
vcl,
35+
dbrtl,
36+
bdertl,
37+
Python_2010;
38+
39+
contains
40+
PythonDatabase in 'Sources\VCL\PythonDatabase.pas',
41+
pyDB in 'Sources\VCL\pyDB.pas',
42+
pyDBTables in 'Sources\VCL\pyDBTables.pas';
43+
44+
end.

Components/PythonVCL_2010.dproj

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{3F30352C-4354-4995-BB1C-5965F73896A0}</ProjectGuid>
4+
<MainSource>PythonVCL_2010.dpk</MainSource>
5+
<Config Condition="'$(Config)'==''">Debug</Config>
6+
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
7+
<ProjectVersion>12.0</ProjectVersion>
8+
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
10+
<Base>true</Base>
11+
</PropertyGroup>
12+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
13+
<Cfg_1>true</Cfg_1>
14+
<CfgParent>Base</CfgParent>
15+
<Base>true</Base>
16+
</PropertyGroup>
17+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
18+
<Cfg_2>true</Cfg_2>
19+
<CfgParent>Base</CfgParent>
20+
<Base>true</Base>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Base)'!=''">
23+
<DCC_DependencyCheckOutputName>C:\Users\Public\Documents\RAD Studio\7.0\Bpl\PythonVCL_2010.bpl</DCC_DependencyCheckOutputName>
24+
<DCC_ImageBase>00400000</DCC_ImageBase>
25+
<GenPackage>true</GenPackage>
26+
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias>
27+
<DCC_Platform>x86</DCC_Platform>
28+
<DCC_Description>VCL Components for Python</DCC_Description>
29+
<DCC_E>false</DCC_E>
30+
<DCC_S>false</DCC_S>
31+
<DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps>
32+
<GenDll>true</GenDll>
33+
<DCC_F>false</DCC_F>
34+
<DCC_K>false</DCC_K>
35+
<DCC_N>true</DCC_N>
36+
</PropertyGroup>
37+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
38+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
39+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
40+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
41+
<DCC_DebugInformation>false</DCC_DebugInformation>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
44+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
45+
</PropertyGroup>
46+
<ItemGroup>
47+
<DelphiCompile Include="PythonVCL_2010.dpk">
48+
<MainSource>MainSource</MainSource>
49+
</DelphiCompile>
50+
<DCCReference Include="Sources\VCL\PythonDatabase.dcr"/>
51+
<DCCReference Include="rtl.dcp"/>
52+
<DCCReference Include="vcl.dcp"/>
53+
<DCCReference Include="dbrtl.dcp"/>
54+
<DCCReference Include="bdertl.dcp"/>
55+
<DCCReference Include="Python_2010.dcp"/>
56+
<DCCReference Include="Sources\VCL\PythonDatabase.pas"/>
57+
<DCCReference Include="Sources\VCL\pyDB.pas"/>
58+
<DCCReference Include="Sources\VCL\pyDBTables.pas"/>
59+
<BuildConfiguration Include="Base">
60+
<Key>Base</Key>
61+
</BuildConfiguration>
62+
<BuildConfiguration Include="Debug">
63+
<Key>Cfg_2</Key>
64+
<CfgParent>Base</CfgParent>
65+
</BuildConfiguration>
66+
<BuildConfiguration Include="Release">
67+
<Key>Cfg_1</Key>
68+
<CfgParent>Base</CfgParent>
69+
</BuildConfiguration>
70+
</ItemGroup>
71+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
72+
<ProjectExtensions>
73+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
74+
<Borland.ProjectType>Package</Borland.ProjectType>
75+
<BorlandProject>
76+
<Delphi.Personality>
77+
<Source>
78+
<Source Name="MainSource">PythonVCL_2010.dpk</Source>
79+
</Source>
80+
<Parameters>
81+
<Parameters Name="UseLauncher">False</Parameters>
82+
<Parameters Name="LoadAllSymbols">True</Parameters>
83+
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
84+
</Parameters>
85+
<VersionInfo>
86+
<VersionInfo Name="IncludeVerInfo">True</VersionInfo>
87+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
88+
<VersionInfo Name="MajorVer">1</VersionInfo>
89+
<VersionInfo Name="MinorVer">0</VersionInfo>
90+
<VersionInfo Name="Release">0</VersionInfo>
91+
<VersionInfo Name="Build">0</VersionInfo>
92+
<VersionInfo Name="Debug">False</VersionInfo>
93+
<VersionInfo Name="PreRelease">False</VersionInfo>
94+
<VersionInfo Name="Special">False</VersionInfo>
95+
<VersionInfo Name="Private">False</VersionInfo>
96+
<VersionInfo Name="DLL">False</VersionInfo>
97+
<VersionInfo Name="Locale">4105</VersionInfo>
98+
<VersionInfo Name="CodePage">1252</VersionInfo>
99+
</VersionInfo>
100+
<VersionInfoKeys>
101+
<VersionInfoKeys Name="CompanyName"/>
102+
<VersionInfoKeys Name="FileDescription"/>
103+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
104+
<VersionInfoKeys Name="InternalName"/>
105+
<VersionInfoKeys Name="LegalCopyright"/>
106+
<VersionInfoKeys Name="LegalTrademarks"/>
107+
<VersionInfoKeys Name="OriginalFilename"/>
108+
<VersionInfoKeys Name="ProductName"/>
109+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
110+
<VersionInfoKeys Name="Comments"/>
111+
</VersionInfoKeys>
112+
</Delphi.Personality>
113+
</BorlandProject>
114+
<ProjectFileVersion>12</ProjectFileVersion>
115+
</ProjectExtensions>
116+
</Project>

Components/PythonVCL_2010.res

1.47 KB
Binary file not shown.

Components/PythonVCL_XE2.dpk

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
package PythonVCL_XE2;
2+
3+
{$R *.res}
4+
{$R 'Sources\VCL\PythonDatabase.dcr'}
5+
{$ALIGN 8}
6+
{$ASSERTIONS ON}
7+
{$BOOLEVAL OFF}
8+
{$DEBUGINFO ON}
9+
{$EXTENDEDSYNTAX ON}
10+
{$IMPORTEDDATA ON}
11+
{$IOCHECKS ON}
12+
{$LOCALSYMBOLS ON}
13+
{$LONGSTRINGS ON}
14+
{$OPENSTRINGS ON}
15+
{$OPTIMIZATION ON}
16+
{$OVERFLOWCHECKS OFF}
17+
{$RANGECHECKS OFF}
18+
{$REFERENCEINFO ON}
19+
{$SAFEDIVIDE OFF}
20+
{$STACKFRAMES OFF}
21+
{$TYPEDADDRESS OFF}
22+
{$VARSTRINGCHECKS ON}
23+
{$WRITEABLECONST OFF}
24+
{$MINENUMSIZE 1}
25+
{$IMAGEBASE $400000}
26+
{$DESCRIPTION 'VCL Components for Python'}
27+
{$IMPLICITBUILD OFF}
28+
29+
requires
30+
rtl,
31+
vcl,
32+
dbrtl,
33+
bdertl,
34+
Python_XE2;
35+
36+
contains
37+
PythonDatabase in 'Sources\VCL\PythonDatabase.pas',
38+
pyDB in 'Sources\VCL\pyDB.pas',
39+
pyDBTables in 'Sources\VCL\pyDBTables.pas';
40+
41+
end.

0 commit comments

Comments
 (0)