FastReport_2022_VCL/LibD28/frxMapLayerForm.pas

107 lines
2.3 KiB
ObjectPascal
Raw Permalink Normal View History

2024-01-01 16:13:08 +01:00
unit frxMapLayerForm;
interface
{$I frx.inc}
uses
{$IFNDEF FPC}
Windows, Messages,
{$ELSE}
LCLType, LCLIntf, LCLProc, LazHelper, ColorBox,
{$ENDIF}
SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, frxCtrls, frxMapHelpers, frxBaseForm
{$IFDEF FPC}
,EditBtn
{$ENDIF};
type
TfrxMapLayerForm = class(TfrxBaseForm)
btnOk: TButton;
btnCancel: TButton;
rbMapFile: TRadioButton;
edMapFile: TfrxComboEdit;
cbEmbed: TCheckBox;
rbAppData: TRadioButton;
lblSelect: TLabel;
OpenDialog: TOpenDialog;
rbInteractive: TRadioButton;
rbGeodata: TRadioButton;
procedure edMapFileButtonClick(Sender: TObject);
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
private
{ Private declarations }
public
function IsEmbed: Boolean;
function LayerType: TLayerType;
function MapFile: string;
procedure EnableInteractive(Value: boolean);
procedure UpdateResouces; override;
end;
implementation
{$IFNDEF FPC}
{$R *.dfm}
{$ELSE}
{$R *.lfm}
{$ENDIF}
uses
frxUtils;
{ TfrxMapLayerForm }
procedure TfrxMapLayerForm.edMapFileButtonClick(Sender: TObject);
begin
if OpenDialog.Execute then
edMapFile.Text := OpenDialog.FileName;
end;
procedure TfrxMapLayerForm.EnableInteractive(Value: boolean);
begin
rbInteractive.Enabled := Value;
end;
procedure TfrxMapLayerForm.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
begin
if (ModalResult = mrOk) and rbMapFile.Checked and not FileExists(edMapFile.Text) then
begin
frxErrorMsg('Please specify correct file name');
CanClose := False;
end;
end;
function TfrxMapLayerForm.IsEmbed: Boolean;
begin
Result := cbEmbed.Checked or (LayerType in [ltApplication, ltInteractive, ltGeodata]);
end;
function TfrxMapLayerForm.LayerType: TLayerType;
begin
if rbAppData.Checked then
Result := ltApplication
else if rbInteractive.Checked then
Result := ltInteractive
else if rbMapFile.Checked then
Result := ltMapFile
else if Self.rbGeodata.Checked then
Result := ltGeodata
else
raise Exception.Create('Unknown Layer Type');
end;
function TfrxMapLayerForm.MapFile: string;
begin
Result := edMapFile.Text;
end;
procedure TfrxMapLayerForm.UpdateResouces;
begin
inherited;
Translate(Self); // TODO : Move to base class
end;
end.