-
Notifications
You must be signed in to change notification settings - Fork 0
/
unitformnewtask.lfm
84 lines (84 loc) · 1.76 KB
/
unitformnewtask.lfm
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
object FormNewTask: TFormNewTask
Left = 448
Height = 239
Top = 213
Width = 392
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'New Download Task'
ClientHeight = 239
ClientWidth = 392
LCLVersion = '3.99.0.0'
object PageControl1: TPageControl
Left = 0
Height = 200
Top = 0
Width = 392
ActivePage = TabSheet1
TabIndex = 0
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'URL'
ClientHeight = 170
ClientWidth = 384
object edtDownloadURL: TLabeledEdit
Left = 8
Height = 25
Top = 32
Width = 368
EditLabel.Height = 17
EditLabel.Width = 368
EditLabel.Caption = 'Download URL'
TabOrder = 0
end
end
object TabSheet2: TTabSheet
Caption = 'Torrent'
ClientHeight = 170
ClientWidth = 384
object edtTorrentPath: TLabeledEdit
Left = 8
Height = 25
Top = 28
Width = 368
EditLabel.Height = 17
EditLabel.Width = 368
EditLabel.Caption = 'Torrent file'
TabOrder = 0
end
object btnBrowseTorrent: TButton
Left = 296
Height = 25
Top = 64
Width = 75
Caption = 'Browse'
TabOrder = 1
OnClick = btnBrowseTorrentClick
end
end
end
object btnStart: TButton
Left = 312
Height = 25
Top = 208
Width = 75
Caption = 'Start'
TabOrder = 1
OnClick = btnStartClick
end
object btnCancel: TButton
Left = 232
Height = 25
Top = 208
Width = 75
Caption = 'Cancel'
TabOrder = 2
OnClick = btnCancelClick
end
object OpenDialog1: TOpenDialog
Title = 'Open a torrent'
Filter = 'Torrent File|*.torrent'
Left = 24
Top = 96
end
end