-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNetworkFormUnit.pas
More file actions
95 lines (74 loc) · 1.79 KB
/
NetworkFormUnit.pas
File metadata and controls
95 lines (74 loc) · 1.79 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
unit NetworkFormUnit;
interface
uses
Winapi.Windows,
Winapi.Messages,
System.SysUtils,
System.Variants,
System.Classes,
Vcl.Graphics,
BTCNetworkUnit,
ISubjectUnit,
Vcl.Controls,
Vcl.Forms,
cryptonetworktreeviewunit,
Vcl.Dialogs,
BTCPeerNodeUnit,
VirtualTrees;
type
TNetworkForm = class(TForm, INetworkObserver)
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
ftree: tcryptonetworktreeview;
fNetwork: TBTCNetwork;
procedure SetNetwork(const Value: TBTCNetwork);
public
{ Public declarations }
constructor Create(Owner: Tcomponent); override;
procedure NewBTCAgentAdded(aBTCAgent: TBTCPeerNode);
procedure NodeConnected(aBTCAgent: TBTCPeerNode);
property Network: TBTCNetwork read fNetwork write SetNetwork;
end;
implementation
{$R *.dfm}
{ TNetworkForm }
constructor TNetworkForm.Create(Owner: Tcomponent);
var
acolumn: TVirtualTreeColumn;
begin
inherited;
ftree := tcryptonetworktreeview.Create(self);
ftree.BeginUpdate;
ftree.parent := self;
ftree.Align := alclient;
ftree.AsTree := false;
with ftree.Header do
begin
Columns.clear;
acolumn := Columns.Add;
acolumn.Width := 150;
acolumn.Text := 'Server';
acolumn := Columns.Add;
acolumn.Width := 150;
acolumn.Text := 'Agent';
Options := Options + [hovisible];
end;
ftree.EndUpdate;
end;
procedure TNetworkForm.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := caFree;
end;
procedure TNetworkForm.NewBTCAgentAdded(aBTCAgent: TBTCPeerNode);
begin
end;
procedure TNetworkForm.NodeConnected(aBTCAgent: TBTCPeerNode);
begin
end;
procedure TNetworkForm.SetNetwork(const Value: TBTCNetwork);
begin
fNetwork := Value;
// Value.RegisterObserver(self);
ftree.CryptoNetwork := Value;
end;
end.