-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathESoft.UI.Downloader.dfm
155 lines (155 loc) · 3.49 KB
/
ESoft.UI.Downloader.dfm
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
object FormDownloader: TFormDownloader
Left = 0
Top = 0
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = 'Download Manager'
ClientHeight = 151
ClientWidth = 394
Color = 14871789
Constraints.MaxHeight = 180
Constraints.MaxWidth = 400
Constraints.MinHeight = 180
Constraints.MinWidth = 400
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
DesignSize = (
394
151)
PixelsPerInch = 96
TextHeight = 13
object lblTitle: TLabel
AlignWithMargins = True
Left = 15
Top = 15
Width = 376
Height = 15
Margins.Left = 15
Margins.Top = 15
Align = alTop
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Times New Roman'
Font.Style = [fsBold]
ParentFont = False
Layout = tlCenter
ExplicitWidth = 3
end
object lblText: TLabel
AlignWithMargins = True
Left = 15
Top = 36
Width = 376
Height = 15
Cursor = crHandPoint
Hint = 'Copy to clipboard'
Margins.Left = 15
Align = alTop
Font.Charset = ANSI_CHARSET
Font.Color = clBlue
Font.Height = -12
Font.Name = 'Times New Roman'
Font.Style = [fsUnderline]
ParentFont = False
ParentShowHint = False
ShowHint = True
Layout = tlCenter
OnClick = lblTextClick
ExplicitWidth = 3
end
object lblPercentDone: TLabel
Left = 15
Top = 116
Width = 81
Height = 15
Anchors = [akLeft, akBottom]
Caption = '0% Percent done'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Times New Roman'
Font.Style = []
ParentFont = False
Layout = tlCenter
end
object lblFileIndex: TLabel
Left = 15
Top = 94
Width = 110
Height = 14
Anchors = [akLeft, akBottom]
Caption = 'Downloading file 1 of 5'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Times New Roman'
Font.Style = [fsItalic]
ParentFont = False
Layout = tlCenter
end
object btnCancel: TButton
Left = 304
Top = 110
Width = 75
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Cancel'
TabOrder = 0
OnClick = btnCancelClick
end
object Panel1: TPanel
AlignWithMargins = True
Left = 15
Top = 69
Width = 364
Height = 23
Margins.Left = 15
Margins.Top = 15
Margins.Right = 15
Align = alTop
BevelOuter = bvNone
Caption = 'Panel1'
ShowCaption = False
TabOrder = 1
ExplicitTop = 63
object pbAll: TProgressBar
AlignWithMargins = True
Left = 0
Top = 3
Width = 120
Height = 17
Margins.Left = 0
Align = alLeft
Smooth = True
SmoothReverse = True
TabOrder = 0
end
object pbMain: TProgressBar
AlignWithMargins = True
Left = 126
Top = 3
Width = 238
Height = 17
Margins.Right = 0
Align = alClient
Smooth = True
SmoothReverse = True
TabOrder = 1
end
end
object bkGndWorker: TBackgroundWorker
OnWork = bkGndWorkerWork
OnWorkComplete = bkGndWorkerWorkComplete
OnWorkProgress = bkGndWorkerWorkProgress
Left = 264
Top = 120
end
end