1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
unit ceLegendDlg;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, ButtonPanel,
ExtCtrls, Buttons, ComCtrls,
TAGraph, TALegend,
ceLegendFrame;
type
{ TChartLegendEditor }
TChartLegendEditor = class(TForm)
ButtonPanel: TButtonPanel;
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
procedure FormShow(Sender: TObject);
procedure OKButtonClick(Sender: TObject);
private
FLegend: TChartLegend;
FLegendFrame: TChartLegendFrame;
FSavedLegend: TChartLegend;
FOKClicked: Boolean;
protected
function GetChart: TChart;
public
procedure Prepare(ALegend: TChartLegend; ACaption: String = '');
end;
var
LegendEditor: TChartLegendEditor;
implementation
{$R *.lfm}
procedure TChartLegendEditor.FormCloseQuery(Sender: TObject; var CanClose: boolean);
begin
if not CanClose then exit;
if not FOKClicked then begin
FLegend.Assign(FSavedLegend);
GetChart.Invalidate;
end;
end;
procedure TChartLegendEditor.FormCreate(Sender: TObject);
begin
FLegendFrame := TChartLegendFrame.Create(self);
FLegendFrame.Parent := self;
FLegendFrame.Name := '';
FLegendFrame.Align := alClient;
FLegendFrame.BorderSpacing.Around := 8;
FLegendFrame.AutoSize := true;
AutoSize := true;
end;
procedure TChartLegendEditor.FormDestroy(Sender: TObject);
begin
FSavedLegend.Free;
end;
procedure TChartLegendEditor.FormShow(Sender: TObject);
begin
FOKClicked := false;
end;
function TChartLegendEditor.GetChart: TChart;
begin
Result := FLegend.GetOwner as TChart;
end;
procedure TChartLegendEditor.OKButtonClick(Sender: TObject);
begin
FOKClicked := true;
end;
procedure TChartLegendEditor.Prepare(ALegend: TChartLegend;
ACaption: String = '');
begin
FLegend := ALegend;
if FSavedLegend = nil then
FSavedLegend := TChartLegend.Create(nil);
FSavedLegend.Assign(ALegend);
if ACaption <> '' then
Caption := ACaption;
FLegendFrame.Prepare(ALegend);
end;
end.
|