mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-23 11:23:43 +02:00
31 lines
392 B
ObjectPascal
31 lines
392 B
ObjectPascal
unit custompreview;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, LR_View;
|
|
|
|
type
|
|
|
|
{ TfrmCustomPreview }
|
|
|
|
TfrmCustomPreview = class(TForm)
|
|
frPreview1: TfrPreview;
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
frmCustomPreview: TfrmCustomPreview;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
end.
|
|
|