diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2013-03-27 16:36:08 +0000 |
---|---|---|
committer | David Laurence Emerson <dle3ab@angelbase.com> | 2013-05-28 00:42:50 -0700 |
commit | 854b606a1c74dddb410c718ddeb296a3841a51a3 (patch) | |
tree | bb81c803e42bada3229ca98c6b0497283df99e39 /examples | |
parent | d20115127b9aaa5930377f22cd386cba18e24129 (diff) | |
download | fpGUI-854b606a1c74dddb410c718ddeb296a3841a51a3.tar.xz |
Includes Reporting images as part of "standard images" list.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gui/stdimages/stdimglist.lpi | 18 | ||||
-rw-r--r-- | examples/gui/stdimages/stdimglist.lpr | 4 |
2 files changed, 15 insertions, 7 deletions
diff --git a/examples/gui/stdimages/stdimglist.lpi b/examples/gui/stdimages/stdimglist.lpi index 94af915b..f519fc99 100644 --- a/examples/gui/stdimages/stdimglist.lpi +++ b/examples/gui/stdimages/stdimglist.lpi @@ -1,7 +1,7 @@ <?xml version="1.0"?> <CONFIG> <ProjectOptions> - <Version Value="7"/> + <Version Value="9"/> <General> <Flags> <SaveOnlyProjectUnits Value="True"/> @@ -9,11 +9,13 @@ </Flags> <SessionStorage Value="InProjectDir"/> <MainUnit Value="0"/> - <TargetFileExt Value=""/> </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"/> <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/> @@ -38,10 +40,14 @@ </Units> </ProjectOptions> <CompilerOptions> - <Version Value="8"/> + <Version Value="11"/> + <Parsing> + <SyntaxOptions> + <UseAnsiStrings Value="False"/> + </SyntaxOptions> + </Parsing> <Other> - <CustomOptions Value="-FUunits -"/> + <CustomOptions Value="-FUunits"/> <CompilerPath Value="$(CompPath)"/> </Other> </CompilerOptions> diff --git a/examples/gui/stdimages/stdimglist.lpr b/examples/gui/stdimages/stdimglist.lpr index 09e57990..2d4ba9d9 100644 --- a/examples/gui/stdimages/stdimglist.lpr +++ b/examples/gui/stdimages/stdimglist.lpr @@ -4,7 +4,7 @@ program stdimglist; uses Classes, SysUtils, - fpg_base, fpg_main, fpg_form, fpg_imgfmt_bmp, fpg_button; + fpg_base, fpg_main, fpg_form, fpg_imgfmt_bmp, fpg_button, u_reportimages; type @@ -28,6 +28,8 @@ begin MinWidth := 200; MinHeight := 100; + CreateReportImages; + btnClose := CreateButton(self, Width-90, Height-35, 75, 'Quit', @btnCloseClick); btnClose.ImageName := 'stdimg.quit'; btnClose.Anchors := [anRight, anBottom]; |