mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
70 lines
1.6 KiB
ObjectPascal
70 lines
1.6 KiB
ObjectPascal
unit fPrintSetup;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, ButtonPanel,
|
|
SpinEx, uOSForms;
|
|
|
|
type
|
|
|
|
{ TfrmPrintSetup }
|
|
|
|
TfrmPrintSetup = class(TModalForm)
|
|
ButtonPanel: TButtonPanel;
|
|
gbMargins: TGroupBox;
|
|
lblLeft: TLabel;
|
|
lblRight: TLabel;
|
|
lblTop: TLabel;
|
|
lblBottom: TLabel;
|
|
seeLeft: TFloatSpinEditEx;
|
|
seeRight: TFloatSpinEditEx;
|
|
seeTop: TFloatSpinEditEx;
|
|
seeBottom: TFloatSpinEditEx;
|
|
procedure FormCloseQuery(Sender: TObject; var CanClose: boolean);
|
|
procedure FormCreate(Sender: TObject);
|
|
procedure FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
|
private
|
|
|
|
public
|
|
|
|
end;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
uses
|
|
LCLType, uGlobs;
|
|
|
|
{ TfrmPrintSetup }
|
|
|
|
procedure TfrmPrintSetup.FormCloseQuery(Sender: TObject; var CanClose: boolean);
|
|
begin
|
|
if ModalResult = mrOK then
|
|
begin
|
|
gPrintMargins.Left:= Round(seeLeft.Value * 10);
|
|
gPrintMargins.Top:= Round(seeTop.Value * 10);
|
|
gPrintMargins.Right:= Round(seeRight.Value * 10);
|
|
gPrintMargins.Bottom:= Round(seeBottom.Value * 10);
|
|
end;
|
|
end;
|
|
|
|
procedure TfrmPrintSetup.FormCreate(Sender: TObject);
|
|
begin
|
|
seeLeft.Value:= gPrintMargins.Left / 10;
|
|
seeTop.Value:= gPrintMargins.Top / 10;
|
|
seeRight.Value:= gPrintMargins.Right / 10;
|
|
seeBottom.Value:= gPrintMargins.Bottom / 10;
|
|
end;
|
|
|
|
procedure TfrmPrintSetup.FormKeyDown(Sender: TObject; var Key: Word;
|
|
Shift: TShiftState);
|
|
begin
|
|
if Key = VK_ESCAPE then ModalResult:= mrCancel;
|
|
end;
|
|
|
|
end.
|
|
|