-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDAW.View.DeviceEdit.pas
83 lines (71 loc) · 1.49 KB
/
DAW.View.DeviceEdit.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
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
unit DAW.View.DeviceEdit;
interface
uses
DAW.Model.Device.New,
System.SysUtils,
System.Types,
System.UITypes,
System.Classes,
System.Variants,
FMX.Types,
FMX.Controls,
FMX.Forms,
FMX.Graphics,
FMX.Dialogs,
FMX.StdCtrls,
FMX.Edit,
FMX.Layouts,
FMX.Controls.Presentation;
type
TViewDeviceEdit = class(TForm)
lblName: TLabel;
lytName: TLayout;
edtName: TEdit;
lytIP: TLayout;
lblIP: TLabel;
edtIP: TEdit;
lytDialogActions: TLayout;
btnOk: TButton;
btnCancel: TButton;
private
{ Private declarations }
procedure FillUI(ADevice: TdawDevice);
procedure UItoModel(var ADevice: TdawDevice);
public
{ Public declarations }
class function Edit(var ADevice: TdawDevice): Boolean;
end;
var
ViewDeviceEdit: TViewDeviceEdit;
implementation
{$R *.fmx}
{ TViewDeviceEdit }
class function TViewDeviceEdit.Edit(var ADevice: TdawDevice): Boolean;
var
LForm: TViewDeviceEdit;
LModalResult: TModalResult;
begin
LForm := TViewDeviceEdit.Create(nil);
try
LForm.FillUI(ADevice);
LModalResult := LForm.ShowModal;
Result := IsPositiveResult(LModalResult);
if Result then
begin
LForm.UItoModel(ADevice);
end;
finally
LForm.Free;
end;
end;
procedure TViewDeviceEdit.FillUI(ADevice: TdawDevice);
begin
edtName.Text := ADevice.Name;
edtIP.Text := ADevice.IP;
end;
procedure TViewDeviceEdit.UItoModel(var ADevice: TdawDevice);
begin
ADevice.Name := edtName.Text;
ADevice.IP := edtIP.Text;
end;
end.