mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-07 13:20:53 +01:00
examples: convert 2 examples to FPC resources
git-svn-id: trunk@43032 -
This commit is contained in:
parent
ae83bc857a
commit
4cc4f74921
9
.gitattributes
vendored
9
.gitattributes
vendored
@ -4338,9 +4338,10 @@ examples/dockmanager/docs/fdockbook.xml svneol=LF#text/xml eol=lf
|
||||
examples/dockmanager/docs/ffloatingsite.xml svneol=LF#text/xml eol=lf
|
||||
examples/dockmanager/docs/fminiide2.xml svneol=LF#text/xml eol=lf
|
||||
examples/dockmanager/docs/umakesite.xml svneol=LF#text/xml eol=lf
|
||||
examples/dockmanager/easyedit/easyeditor.ico -text
|
||||
examples/dockmanager/easyedit/easyeditor.lpi svneol=native#text/plain
|
||||
examples/dockmanager/easyedit/easyeditor.lpr svneol=native#text/plain
|
||||
examples/dockmanager/easyedit/easyeditor.lrs svneol=native#text/plain
|
||||
examples/dockmanager/easyedit/easyeditor.res -text
|
||||
examples/dockmanager/easyedit/editmain.lfm svneol=native#text/plain
|
||||
examples/dockmanager/easyedit/editmain.pas svneol=native#text/pascal
|
||||
examples/dockmanager/easyedit/feditbook.lfm svneol=native#text/plain
|
||||
@ -4357,12 +4358,14 @@ examples/dockmanager/easytree/fmain.lfm svneol=native#text/plain
|
||||
examples/dockmanager/easytree/fmain.pas svneol=native#text/plain
|
||||
examples/dockmanager/easytree/ftree.lfm svneol=native#text/plain
|
||||
examples/dockmanager/easytree/ftree.pas svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/MakeSite.ico -text
|
||||
examples/dockmanager/elasticsite/MakeSite.lpi svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/MakeSite.lpr svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/MakeSite.lrs svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/MakeSite.res -text
|
||||
examples/dockmanager/elasticsite/SiteTest.ico -text
|
||||
examples/dockmanager/elasticsite/SiteTest.lpi svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/SiteTest.lpr svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/SiteTest.lrs svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/SiteTest.res -text
|
||||
examples/dockmanager/elasticsite/fclientform.lfm svneol=native#text/plain
|
||||
examples/dockmanager/elasticsite/fclientform.pas svneol=native#text/pascal
|
||||
examples/dockmanager/elasticsite/fdockclient.lfm svneol=native#text/plain
|
||||
|
||||
BIN
examples/dockmanager/easyedit/easyeditor.ico
Normal file
BIN
examples/dockmanager/easyedit/easyeditor.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 134 KiB |
@ -1,18 +1,22 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Version Value="7"/>
|
||||
<General>
|
||||
<SessionStorage Value="InIDEConfig"/>
|
||||
<MainUnit Value="0"/>
|
||||
<TargetFileExt Value=".exe"/>
|
||||
<Title Value="easyeditor"/>
|
||||
<ResourceType Value="res"/>
|
||||
<UseXPManifest Value="True"/>
|
||||
<Icon Value="0"/>
|
||||
</General>
|
||||
<VersionInfo>
|
||||
<StringTable Comments="" CompanyName="" FileDescription="" FileVersion="0.0.0.0" InternalName="" LegalCopyright="" LegalTrademarks="" OriginalFilename="" ProductName="" ProductVersion=""/>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
@ -46,6 +50,7 @@
|
||||
<Filename Value="editmain.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="MainForm"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="EditMain"/>
|
||||
</Unit1>
|
||||
@ -67,11 +72,16 @@
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$(ProjOutDir)\"/>
|
||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<UseAnsiStrings Value="False"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Linking>
|
||||
<Options>
|
||||
<Win32>
|
||||
|
||||
@ -9,6 +9,8 @@ uses
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, EditMain, EasyDockMgr, fEditForm, fEditBook;
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TMainForm, MainForm);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
BIN
examples/dockmanager/easyedit/easyeditor.res
Normal file
BIN
examples/dockmanager/easyedit/easyeditor.res
Normal file
Binary file not shown.
BIN
examples/dockmanager/elasticsite/MakeSite.ico
Normal file
BIN
examples/dockmanager/elasticsite/MakeSite.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 134 KiB |
@ -1,20 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Version Value="7"/>
|
||||
<General>
|
||||
<Flags>
|
||||
<MainUnitHasUsesSectionForAllUnits Value="False"/>
|
||||
</Flags>
|
||||
<SessionStorage Value="InIDEConfig"/>
|
||||
<MainUnit Value="0"/>
|
||||
<TargetFileExt Value=".exe"/>
|
||||
<ResourceType Value="res"/>
|
||||
<UseXPManifest Value="True"/>
|
||||
<Icon Value="0"/>
|
||||
</General>
|
||||
<VersionInfo>
|
||||
<StringTable Comments="" CompanyName="" FileDescription="" FileVersion="0.0.0.0" InternalName="" LegalCopyright="" LegalTrademarks="" OriginalFilename="" ProductName="" ProductVersion=""/>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
@ -48,21 +52,27 @@
|
||||
<Filename Value="fmastersite.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="MasterSite"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="fMasterSite"/>
|
||||
</Unit1>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Target>
|
||||
<Filename Value="MakeSite"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$(ProjOutDir)\"/>
|
||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<UseAnsiStrings Value="False"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
<UseMsgFile Value="True"/>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
BIN
examples/dockmanager/elasticsite/MakeSite.res
Normal file
BIN
examples/dockmanager/elasticsite/MakeSite.res
Normal file
Binary file not shown.
BIN
examples/dockmanager/elasticsite/SiteTest.ico
Normal file
BIN
examples/dockmanager/elasticsite/SiteTest.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 134 KiB |
@ -1,18 +1,22 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Version Value="7"/>
|
||||
<General>
|
||||
<SessionStorage Value="InIDEConfig"/>
|
||||
<MainUnit Value="0"/>
|
||||
<TargetFileExt Value=".exe"/>
|
||||
<Title Value="SiteTest"/>
|
||||
<ResourceType Value="res"/>
|
||||
<UseXPManifest Value="True"/>
|
||||
<Icon Value="0"/>
|
||||
</General>
|
||||
<VersionInfo>
|
||||
<StringTable Comments="" CompanyName="" FileDescription="" FileVersion="0.0.0.0" InternalName="" LegalCopyright="" LegalTrademarks="" OriginalFilename="" ProductName="" ProductVersion=""/>
|
||||
<StringTable ProductVersion=""/>
|
||||
</VersionInfo>
|
||||
<BuildModes Count="1">
|
||||
<Item1 Name="default" Default="True"/>
|
||||
</BuildModes>
|
||||
<PublishOptions>
|
||||
<Version Value="2"/>
|
||||
<IgnoreBinaries Value="False"/>
|
||||
@ -46,6 +50,7 @@
|
||||
<Filename Value="feditorsite.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="EditorSite"/>
|
||||
<HasResources Value="True"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="fEditorSite"/>
|
||||
</Unit1>
|
||||
@ -67,12 +72,17 @@
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="8"/>
|
||||
<Version Value="11"/>
|
||||
<PathDelim Value="\"/>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$(ProjOutDir)\"/>
|
||||
<OtherUnitFiles Value="..\easyedit\"/>
|
||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||
<OtherUnitFiles Value="..\easyedit"/>
|
||||
</SearchPaths>
|
||||
<Parsing>
|
||||
<SyntaxOptions>
|
||||
<UseAnsiStrings Value="False"/>
|
||||
</SyntaxOptions>
|
||||
</Parsing>
|
||||
<Other>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
|
||||
@ -9,6 +9,8 @@ uses
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, EasyDockMgr, fEditorSite, fEditBook, fClientForm;
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TEditorSite, EditorSite);
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
BIN
examples/dockmanager/elasticsite/SiteTest.res
Normal file
BIN
examples/dockmanager/elasticsite/SiteTest.res
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user