-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCanvasSize.pas
50 lines (40 loc) · 886 Bytes
/
CanvasSize.pas
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
unit CanvasSize;
{$MODE Delphi}
interface
uses
LCLIntf, LCLType, LMessages, Messages, SysUtils, Classes, Graphics,
Controls, Forms, Dialogs,
StdCtrls, ComCtrls, Spin;
type
TfrmCanvasSize = class(TForm)
Label1: TLabel;
Label2: TLabel;
btnOk: TButton;
btnCancel: TButton;
txtWidth: TSpinEdit;
txtHeight: TSpinEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmCanvasSize: TfrmCanvasSize;
function GetNewCanvasSize(var AWidth, AHeight: Integer): Boolean;
implementation
{$R *.lfm}
function GetNewCanvasSize(var AWidth, AHeight: Integer): Boolean;
begin
with frmCanvasSize do
begin
txtWidth.Value := AWidth;
txtHeight.Value := AHeight;
Result := ShowModal = mrOk;
if Result then
begin
AWidth := txtWidth.Value;
AHeight := txtHeight.Value;
end;
end;
end;
end.