Skip to content

Commit 1c1d0a6

Browse files
committed
Minor Change
1 parent de57109 commit 1c1d0a6

8 files changed

+214
-0
lines changed

Diverses/FPC/Prj_TestUpDown.ico

134 KB
Binary file not shown.

Diverses/FPC/Prj_TestUpDown.lpi

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<CONFIG>
3+
<ProjectOptions>
4+
<Version Value="9"/>
5+
<PathDelim Value="\"/>
6+
<General>
7+
<SessionStorage Value="InProjectDir"/>
8+
<MainUnit Value="0"/>
9+
<Title Value="Prj_TestUpDown"/>
10+
<ResourceType Value="res"/>
11+
<UseXPManifest Value="True"/>
12+
<Icon Value="0"/>
13+
</General>
14+
<VersionInfo>
15+
<StringTable ProductVersion=""/>
16+
</VersionInfo>
17+
<BuildModes Count="1">
18+
<Item1 Name="Default" Default="True"/>
19+
</BuildModes>
20+
<PublishOptions>
21+
<Version Value="2"/>
22+
</PublishOptions>
23+
<RunParams>
24+
<local>
25+
<FormatVersion Value="1"/>
26+
</local>
27+
</RunParams>
28+
<RequiredPackages Count="2">
29+
<Item1>
30+
<PackageName Value="lazdbexport"/>
31+
</Item1>
32+
<Item2>
33+
<PackageName Value="LCL"/>
34+
</Item2>
35+
</RequiredPackages>
36+
<Units Count="2">
37+
<Unit0>
38+
<Filename Value="Prj_TestUpDown.lpr"/>
39+
<IsPartOfProject Value="True"/>
40+
</Unit0>
41+
<Unit1>
42+
<Filename Value="..\Source\frm_testupdownmain.pas"/>
43+
<IsPartOfProject Value="True"/>
44+
<ComponentName Value="Form1"/>
45+
<ResourceBaseClass Value="Form"/>
46+
<UnitName Value="Frm_TestUpDownMain"/>
47+
</Unit1>
48+
</Units>
49+
</ProjectOptions>
50+
<CompilerOptions>
51+
<Version Value="11"/>
52+
<PathDelim Value="\"/>
53+
<Target>
54+
<Filename Value="..\..\bin\$(TargetCPU)-$(TargetOS)\$NameOnly($Project(InfoFile))"/>
55+
</Target>
56+
<SearchPaths>
57+
<IncludeFiles Value="$(ProjOutDir)"/>
58+
<OtherUnitFiles Value="..\Source"/>
59+
<UnitOutputDirectory Value="..\..\bin\$(TargetCPU)-$(TargetOS)\units"/>
60+
</SearchPaths>
61+
<Linking>
62+
<Options>
63+
<Win32>
64+
<GraphicApplication Value="True"/>
65+
</Win32>
66+
</Options>
67+
</Linking>
68+
</CompilerOptions>
69+
<Debugging>
70+
<Exceptions Count="3">
71+
<Item1>
72+
<Name Value="EAbort"/>
73+
</Item1>
74+
<Item2>
75+
<Name Value="ECodetoolError"/>
76+
</Item2>
77+
<Item3>
78+
<Name Value="EFOpenError"/>
79+
</Item3>
80+
</Exceptions>
81+
</Debugging>
82+
</CONFIG>

Diverses/FPC/Prj_TestUpDown.lpr

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
program Prj_TestUpDown;
2+
3+
{$mode objfpc}{$H+}
4+
5+
uses
6+
{$IFDEF UNIX}{$IFDEF UseCThreads}
7+
cthreads,
8+
{$ENDIF}{$ENDIF}
9+
Interfaces, // this includes the LCL widgetset
10+
Forms, Frm_TestUpDownMain, lazdbexport
11+
{ you can add units after this };
12+
13+
{$R *.res}
14+
15+
begin
16+
RequireDerivedFormResource:=True;
17+
Application.Initialize;
18+
Application.CreateForm(TForm1, Form1);
19+
Application.Run;
20+
end.
21+

Diverses/FPC/Prj_TestUpDown.res

136 KB
Binary file not shown.
134 KB
Binary file not shown.
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<CONFIG>
3+
<ProjectOptions>
4+
<Version Value="10"/>
5+
<PathDelim Value="\"/>
6+
<General>
7+
<SessionStorage Value="InProjectDir"/>
8+
<MainUnit Value="0"/>
9+
<Title Value="prj_TestMouseScrollEvent"/>
10+
<ResourceType Value="res"/>
11+
<UseXPManifest Value="True"/>
12+
<Icon Value="0"/>
13+
</General>
14+
<i18n>
15+
<EnableI18N LFM="False"/>
16+
</i18n>
17+
<VersionInfo>
18+
<StringTable ProductVersion=""/>
19+
</VersionInfo>
20+
<BuildModes Count="1">
21+
<Item1 Name="Default" Default="True"/>
22+
</BuildModes>
23+
<PublishOptions>
24+
<Version Value="2"/>
25+
</PublishOptions>
26+
<RunParams>
27+
<local>
28+
<FormatVersion Value="1"/>
29+
</local>
30+
</RunParams>
31+
<RequiredPackages Count="1">
32+
<Item1>
33+
<PackageName Value="LCL"/>
34+
</Item1>
35+
</RequiredPackages>
36+
<Units Count="4">
37+
<Unit0>
38+
<Filename Value="prj_TestMouseScrollEvent.lpr"/>
39+
<IsPartOfProject Value="True"/>
40+
</Unit0>
41+
<Unit1>
42+
<Filename Value="..\Source\TestMouseScrollEvent\frm_testmousescrollmain.pas"/>
43+
<IsPartOfProject Value="True"/>
44+
<ComponentName Value="Form1"/>
45+
<HasResources Value="True"/>
46+
<ResourceBaseClass Value="Form"/>
47+
<UnitName Value="frm_TestMouseScrollMain"/>
48+
</Unit1>
49+
<Unit2>
50+
<Filename Value="..\Source\TestMouseScrollEvent\fra_mousewheeltest.pas"/>
51+
<IsPartOfProject Value="True"/>
52+
<ComponentName Value="Frame1"/>
53+
<ResourceBaseClass Value="Frame"/>
54+
<UnitName Value="fra_MouseWheelTest"/>
55+
</Unit2>
56+
<Unit3>
57+
<Filename Value="..\Source\TestMouseScrollEvent\fra_middleframe.pas"/>
58+
<IsPartOfProject Value="True"/>
59+
<ComponentName Value="Frame2"/>
60+
<ResourceBaseClass Value="Frame"/>
61+
<UnitName Value="fra_MiddleFrame"/>
62+
</Unit3>
63+
</Units>
64+
</ProjectOptions>
65+
<CompilerOptions>
66+
<Version Value="11"/>
67+
<PathDelim Value="\"/>
68+
<Target>
69+
<Filename Value="..\..\bin\$(TargetCPU)-$(TargetOS)\prj_TestMouseScrollEvent"/>
70+
</Target>
71+
<SearchPaths>
72+
<IncludeFiles Value="$(ProjOutDir)"/>
73+
<OtherUnitFiles Value="..\Source\TestMouseScrollEvent"/>
74+
<UnitOutputDirectory Value="..\..\bin\$(TargetCPU)-$(TargetOS)\units"/>
75+
</SearchPaths>
76+
</CompilerOptions>
77+
<Debugging>
78+
<Exceptions Count="3">
79+
<Item1>
80+
<Name Value="EAbort"/>
81+
</Item1>
82+
<Item2>
83+
<Name Value="ECodetoolError"/>
84+
</Item2>
85+
<Item3>
86+
<Name Value="EFOpenError"/>
87+
</Item3>
88+
</Exceptions>
89+
</Debugging>
90+
</CONFIG>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
program prj_TestMouseScrollEvent;
2+
3+
{$mode objfpc}{$H+}
4+
5+
uses
6+
{$IFDEF UNIX}{$IFDEF UseCThreads}
7+
cthreads,
8+
{$ENDIF}{$ENDIF}
9+
Interfaces, // this includes the LCL widgetset
10+
Forms, frm_TestMouseScrollMain, fra_MouseWheelTest, fra_MiddleFrame
11+
{ you can add units after this };
12+
13+
{$R *.res}
14+
15+
begin
16+
RequireDerivedFormResource:=True;
17+
Application.Initialize;
18+
Application.CreateForm(TForm1, Form1);
19+
Application.Run;
20+
end.
21+
136 KB
Binary file not shown.

0 commit comments

Comments
 (0)