mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 06:57:54 +02:00
TAChart: Add wmf demo
git-svn-id: trunk@30240 -
This commit is contained in:
parent
1aaadaf5c9
commit
1c6efec231
4
.gitattributes
vendored
4
.gitattributes
vendored
@ -2420,6 +2420,10 @@ components/tachart/demo/tools/main.lfm svneol=native#text/plain
|
||||
components/tachart/demo/tools/main.pas svneol=native#text/pascal
|
||||
components/tachart/demo/tools/toolsdemo.lpi svneol=native#text/plain
|
||||
components/tachart/demo/tools/toolsdemo.lpr svneol=native#text/pascal
|
||||
components/tachart/demo/wmf/main.lfm svneol=native#text/plain
|
||||
components/tachart/demo/wmf/main.pas svneol=native#text/pascal
|
||||
components/tachart/demo/wmf/wmfdemo.lpi svneol=native#text/plain
|
||||
components/tachart/demo/wmf/wmfdemo.lpr svneol=native#text/pascal
|
||||
components/tachart/fpdoc/descr.lst svneol=native#text/plain
|
||||
components/tachart/fpdoc/input.lst svneol=native#text/plain
|
||||
components/tachart/fpdoc/tachartaxis.xml svneol=native#text/plain
|
||||
|
5
.gitignore
vendored
5
.gitignore
vendored
@ -180,6 +180,11 @@ components/tachart/demo/save/*.lps
|
||||
components/tachart/demo/save/lib
|
||||
components/tachart/demo/tools/*.lps
|
||||
components/tachart/demo/tools/lib
|
||||
components/tachart/demo/wmf/*.exe
|
||||
components/tachart/demo/wmf/*.lps
|
||||
components/tachart/demo/wmf/*.res
|
||||
components/tachart/demo/wmf/*.wmf
|
||||
components/tachart/demo/wmf/lib
|
||||
components/tachart/fpdoc/html/*
|
||||
components/tachart/lib
|
||||
components/tachart/test/*.lps
|
||||
|
74
components/tachart/demo/wmf/main.lfm
Normal file
74
components/tachart/demo/wmf/main.lfm
Normal file
@ -0,0 +1,74 @@
|
||||
object Form1: TForm1
|
||||
Left = 1317
|
||||
Height = 330
|
||||
Top = 168
|
||||
Width = 403
|
||||
Caption = 'Form1'
|
||||
ClientHeight = 330
|
||||
ClientWidth = 403
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '0.9.31'
|
||||
object Chart1: TChart
|
||||
Left = 0
|
||||
Height = 292
|
||||
Top = 0
|
||||
Width = 403
|
||||
AxisList = <
|
||||
item
|
||||
Title.LabelFont.Orientation = 900
|
||||
end
|
||||
item
|
||||
Alignment = calBottom
|
||||
end>
|
||||
Depth = 30
|
||||
Foot.Brush.Color = clBtnFace
|
||||
Foot.Font.Color = clBlue
|
||||
Title.Brush.Color = clBtnFace
|
||||
Title.Font.Color = clBlue
|
||||
Title.Text.Strings = (
|
||||
'TAChart'
|
||||
)
|
||||
Align = alClient
|
||||
ParentColor = False
|
||||
object Chart1BarSeries1: TBarSeries
|
||||
BarBrush.Color = clRed
|
||||
Depth = 10
|
||||
Source = RandomChartSource1
|
||||
end
|
||||
object Chart1LineSeries1: TLineSeries
|
||||
ZPosition = 20
|
||||
Depth = 10
|
||||
LinePen.Color = clGreen
|
||||
Source = RandomChartSource1
|
||||
end
|
||||
end
|
||||
object Panel1: TPanel
|
||||
Left = 0
|
||||
Height = 38
|
||||
Top = 292
|
||||
Width = 403
|
||||
Align = alBottom
|
||||
ClientHeight = 38
|
||||
ClientWidth = 403
|
||||
TabOrder = 1
|
||||
object btnSaveToMetafile: TButton
|
||||
Left = 8
|
||||
Height = 25
|
||||
Top = 8
|
||||
Width = 88
|
||||
Caption = 'Save To WMF'
|
||||
OnClick = btnSaveToMetafileClick
|
||||
TabOrder = 0
|
||||
end
|
||||
end
|
||||
object RandomChartSource1: TRandomChartSource
|
||||
PointsNumber = 20
|
||||
RandSeed = 1527537926
|
||||
XMax = 12
|
||||
XMin = 0
|
||||
YMax = 3
|
||||
YMin = -3
|
||||
left = 140
|
||||
top = 148
|
||||
end
|
||||
end
|
44
components/tachart/demo/wmf/main.pas
Normal file
44
components/tachart/demo/wmf/main.pas
Normal file
@ -0,0 +1,44 @@
|
||||
unit Main;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
Classes, ExtCtrls, StdCtrls, SysUtils, FileUtil, Forms, Controls, Graphics,
|
||||
Dialogs, TAGraph, TASeries, TASources;
|
||||
|
||||
type
|
||||
|
||||
{ TForm1 }
|
||||
|
||||
TForm1 = class(TForm)
|
||||
btnSaveToMetafile: TButton;
|
||||
Chart1: TChart;
|
||||
Chart1BarSeries1: TBarSeries;
|
||||
Chart1LineSeries1: TLineSeries;
|
||||
Panel1: TPanel;
|
||||
RandomChartSource1: TRandomChartSource;
|
||||
procedure btnSaveToMetafileClick(Sender: TObject);
|
||||
end;
|
||||
|
||||
var
|
||||
Form1: TForm1;
|
||||
|
||||
implementation
|
||||
|
||||
{$R *.lfm}
|
||||
|
||||
uses
|
||||
TADrawerWMF;
|
||||
|
||||
{ TForm1 }
|
||||
|
||||
procedure TForm1.btnSaveToMetafileClick(Sender: TObject);
|
||||
begin
|
||||
with Chart1 do
|
||||
Draw(TWindowsMetafileDrawer.Create('test.wmf'), Rect(0, 0, Width, Height));
|
||||
end;
|
||||
|
||||
end.
|
||||
|
99
components/tachart/demo/wmf/wmfdemo.lpi
Normal file
99
components/tachart/demo/wmf/wmfdemo.lpi
Normal file
@ -0,0 +1,99 @@
|
||||
<?xml version="1.0"?>
|
||||
<CONFIG>
|
||||
<ProjectOptions>
|
||||
<Version Value="9"/>
|
||||
<PathDelim Value="\"/>
|
||||
<General>
|
||||
<SessionStorage Value="InProjectDir"/>
|
||||
<MainUnit Value="0"/>
|
||||
<ResourceType Value="res"/>
|
||||
<UseXPManifest Value="True"/>
|
||||
</General>
|
||||
<i18n>
|
||||
<EnableI18N LFM="False"/>
|
||||
</i18n>
|
||||
<VersionInfo>
|
||||
<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)"/>
|
||||
<ExcludeFileFilter Value="*.(bak|ppu|o|so);*~;backup"/>
|
||||
</PublishOptions>
|
||||
<RunParams>
|
||||
<local>
|
||||
<FormatVersion Value="1"/>
|
||||
</local>
|
||||
</RunParams>
|
||||
<RequiredPackages Count="4">
|
||||
<Item1>
|
||||
<PackageName Value="LCLBase"/>
|
||||
<MinVersion Major="1" Release="1" Valid="True"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<PackageName Value="LCL"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<PackageName Value="TAChartLazarusPkg"/>
|
||||
<MinVersion Major="1" Valid="True"/>
|
||||
</Item3>
|
||||
<Item4>
|
||||
<PackageName Value="TAChartWMF"/>
|
||||
</Item4>
|
||||
</RequiredPackages>
|
||||
<Units Count="2">
|
||||
<Unit0>
|
||||
<Filename Value="wmfdemo.lpr"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<UnitName Value="wmfdemo"/>
|
||||
</Unit0>
|
||||
<Unit1>
|
||||
<Filename Value="main.pas"/>
|
||||
<IsPartOfProject Value="True"/>
|
||||
<ComponentName Value="Form1"/>
|
||||
<ResourceBaseClass Value="Form"/>
|
||||
<UnitName Value="Main"/>
|
||||
</Unit1>
|
||||
</Units>
|
||||
</ProjectOptions>
|
||||
<CompilerOptions>
|
||||
<Version Value="10"/>
|
||||
<PathDelim Value="\"/>
|
||||
<Target>
|
||||
<Filename Value="wmfdemo"/>
|
||||
</Target>
|
||||
<SearchPaths>
|
||||
<IncludeFiles Value="$(ProjOutDir)"/>
|
||||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/>
|
||||
</SearchPaths>
|
||||
<Linking>
|
||||
<Options>
|
||||
<Win32>
|
||||
<GraphicApplication Value="True"/>
|
||||
</Win32>
|
||||
</Options>
|
||||
</Linking>
|
||||
<Other>
|
||||
<CompilerMessages>
|
||||
<UseMsgFile Value="True"/>
|
||||
</CompilerMessages>
|
||||
<CompilerPath Value="$(CompPath)"/>
|
||||
</Other>
|
||||
</CompilerOptions>
|
||||
<Debugging>
|
||||
<Exceptions Count="3">
|
||||
<Item1>
|
||||
<Name Value="EAbort"/>
|
||||
</Item1>
|
||||
<Item2>
|
||||
<Name Value="ECodetoolError"/>
|
||||
</Item2>
|
||||
<Item3>
|
||||
<Name Value="EFOpenError"/>
|
||||
</Item3>
|
||||
</Exceptions>
|
||||
</Debugging>
|
||||
</CONFIG>
|
21
components/tachart/demo/wmf/wmfdemo.lpr
Normal file
21
components/tachart/demo/wmf/wmfdemo.lpr
Normal file
@ -0,0 +1,21 @@
|
||||
program wmfdemo;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, Main, tachartlazaruspkg, tachartwmf
|
||||
{ you can add units after this };
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
RequireDerivedFormResource := True;
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user