-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrgDlg.dfm
106 lines (106 loc) · 2.23 KB
/
PrgDlg.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
object FPrgDlg: TFPrgDlg
Left = 221
Top = 627
AlphaBlend = True
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsDialog
Caption = 'Progress Dialog'
ClientHeight = 178
ClientWidth = 521
Color = clBtnFace
UseDockManager = True
DockSite = True
DragMode = dmAutomatic
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
ScreenSnap = True
PixelsPerInch = 96
TextHeight = 20
object GaugeCurr: TGauge
Left = 8
Top = 48
Width = 505
Height = 33
Progress = 0
end
object GaugeTotal: TGauge
Left = 8
Top = 136
Width = 505
Height = 33
Progress = 0
end
object Label1: TLabel
Left = 216
Top = 8
Width = 81
Height = 25
Alignment = taCenter
AutoSize = False
Caption = 'Current: '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object Label2: TLabel
Left = 224
Top = 96
Width = 73
Height = 25
Alignment = taCenter
AutoSize = False
Caption = 'Total: '
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -19
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
end
object btnPause: TButton
Left = 440
Top = 8
Width = 75
Height = 33
Caption = 'Pause'
Default = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnClick = btnPauseClick
end
object btnCancel: TButton
Left = 440
Top = 88
Width = 75
Height = 41
Cancel = True
Caption = 'Cancel'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'MS Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
end
object Timer1: TTimer
Enabled = False
Interval = 250
OnTimer = Timer1Timer
Left = 8
Top = 8
end
end