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 100 101 102
|
{*****************************************}
{ }
{ FastReport v2.3 }
{ Progress dialog }
{ }
{ Copyright (c) 1998-99 by Tzyganenko A. }
{ }
{*****************************************}
unit LR_progr;
interface
{$I LR_Vers.inc}
uses
Classes, SysUtils, LResources, LMessages,
Forms, Controls, Graphics, Dialogs,
Buttons, StdCtrls,LCLIntf,
LCLProc,
LR_Const, LR_Class, ExtCtrls;
const
CM_BeforeModal = WM_USER + 1;
type
{ TfrProgressForm }
TfrProgressForm = class(TForm)
Button1: TButton;
Label1: TLabel;
Timer1: TTimer;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure Timer1Timer(Sender: TObject);
private
{ Private declarations }
fDoc: TfrReport;
fOnBeforeModal: TNotifyEvent;
procedure DoBeforeModal({%H-}Data: ptrint);
public
{ Public declarations }
FirstCaption: String;
function Show_Modal(Doc: TfrReport): Word;
procedure ModalDone(AModalResult: TModalResult);
property OnBeforeModal: TNotifyEvent read FOnBeforeModal write FOnBeforeModal;
end;
var
frProgressForm: TfrProgressForm;
implementation
{$R *.lfm}
function TfrProgressForm.Show_Modal(Doc: TfrReport): Word;
begin
FDoc := Doc;
Application.QueueAsyncCall(@DoBeforeModal, 0);
//PostMessage(Handle, CM_BeforeModal, 0, 0);
Visible:=False;
Enabled:=True;
ModalResult:=mrNone;
InitializeWnd;
Result:=ShowModal;
end;
procedure TfrProgressForm.ModalDone(AModalResult: TModalResult);
begin
ModalResult := AModalResult;
Timer1.Enabled:=true;
end;
procedure TfrProgressForm.Button1Click(Sender: TObject);
begin
fDoc.Terminated := True;
ModalResult := mrCancel;
end;
procedure TfrProgressForm.DoBeforeModal(Data: Ptrint);
begin
if Assigned(fOnBeforeModal) then
fOnBeforeModal(Self);
end;
procedure TfrProgressForm.FormCreate(Sender: TObject);
begin
Button1.Caption:=sCancel;
end;
procedure TfrProgressForm.Timer1Timer(Sender: TObject);
begin
Timer1.Enabled:=false;
end;
end.
|