mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-10 14:02:36 +02:00
44 lines
689 B
ObjectPascal
44 lines
689 B
ObjectPascal
unit udlgpagesetup;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
|
|
framepagesetup, ExtCtrls, StdCtrls;
|
|
|
|
type
|
|
|
|
{ TdlgPageSetup }
|
|
|
|
TdlgPageSetup = class(TForm)
|
|
btnCancel1: TButton;
|
|
btnPrinter: TButton;
|
|
btnOk: TButton;
|
|
frmPageSetup: TframePageSetup;
|
|
Panel1: TPanel;
|
|
procedure FormCreate(Sender: TObject);
|
|
private
|
|
{ private declarations }
|
|
public
|
|
{ public declarations }
|
|
end;
|
|
|
|
var
|
|
dlgPageSetup: TdlgPageSetup;
|
|
|
|
implementation
|
|
|
|
{$R udlgpagesetup.lfm}
|
|
|
|
{ TdlgPageSetup }
|
|
|
|
procedure TdlgPageSetup.FormCreate(Sender: TObject);
|
|
begin
|
|
frmPageSetup.Initialize(psmFull);
|
|
end;
|
|
|
|
end.
|
|
|