summaryrefslogtreecommitdiff
path: root/examples/gui/gauges
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-12-03 09:46:23 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-12-03 09:46:23 +0000
commit01601bb83634f1c734422215ac1317c2713bccd1 (patch)
treeba4e2a8a6fc2ae6236402580f525c9b6661fc870 /examples/gui/gauges
parent4ebc4cdebd8f866c38e19fc36edb95c28c8440c4 (diff)
downloadfpGUI-01601bb83634f1c734422215ac1317c2713bccd1.tar.xz
* Minor painting fixed to Gauge and ProgressBar frame painting.
* Minor fix to VerticalBar gauge painting where it oversheets the outer frame. * Implemented anti-aliased line drawing in Needle Gauge and Dial Gauge, but it's only experimental.
Diffstat (limited to 'examples/gui/gauges')
-rw-r--r--examples/gui/gauges/gaugetest.lpi11
-rw-r--r--examples/gui/gauges/gaugetest.lpr3
2 files changed, 5 insertions, 9 deletions
diff --git a/examples/gui/gauges/gaugetest.lpi b/examples/gui/gauges/gaugetest.lpi
index ffc0b224..7c26a800 100644
--- a/examples/gui/gauges/gaugetest.lpi
+++ b/examples/gui/gauges/gaugetest.lpi
@@ -1,15 +1,15 @@
<?xml version="1.0"?>
<CONFIG>
<ProjectOptions>
- <PathDelim Value="\"/>
- <Version Value="5"/>
+ <PathDelim Value="/"/>
+ <Version Value="6"/>
<General>
<Flags>
<SaveOnlyProjectUnits Value="True"/>
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
- <IconPath Value=".\"/>
+ <IconPath Value="./"/>
<TargetFileExt Value=".exe"/>
</General>
<VersionInfo>
@@ -17,15 +17,13 @@
</VersionInfo>
<PublishOptions>
<Version Value="2"/>
- <DestinationDirectory Value="$(TestDir)\publishedproject\"/>
- <IgnoreBinaries Value="False"/>
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
<ExcludeFileFilter Value="*.(bak|ppu|ppw|o|so);*~;backup"/>
</PublishOptions>
<RunParams>
<local>
<FormatVersion Value="1"/>
- <LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
+ <LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
</local>
</RunParams>
<RequiredPackages Count="1">
@@ -42,7 +40,6 @@
</ProjectOptions>
<CompilerOptions>
<Version Value="5"/>
- <PathDelim Value="\"/>
<Parsing>
<SyntaxOptions>
<AllowLabel Value="False"/>
diff --git a/examples/gui/gauges/gaugetest.lpr b/examples/gui/gauges/gaugetest.lpr
index 1ab55c21..837dd414 100644
--- a/examples/gui/gauges/gaugetest.lpr
+++ b/examples/gui/gauges/gaugetest.lpr
@@ -16,7 +16,6 @@ uses
gui_trackbar,
gui_label,
gfx_imgfmt_bmp,
- fpgui_package,
gui_edit,
gui_bevel,
gui_gauge;
@@ -82,7 +81,7 @@ begin
with Gauge do
begin
Name := 'Gauge';
- SetPosition(124, 104, 151, 25);
+ SetPosition(124, 104, 150, 25);
Kind := gkHorizontalBar;
end;