forked from doublecmd/doublecmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfchecksumcalc.lfm
102 lines (102 loc) · 2.68 KB
/
fchecksumcalc.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
inherited frmCheckSumCalc: TfrmCheckSumCalc
Left = 321
Height = 400
Top = 59
Width = 400
AutoSize = True
BorderIcons = [biSystemMenu]
Caption = 'Calculate checksum...'
ClientHeight = 400
ClientWidth = 400
Constraints.MinHeight = 400
Constraints.MinWidth = 400
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
SessionProperties = 'cbOpenAfterJobIsComplete.Checked;cbSeparateFile.Checked;lbHashAlgorithm.ItemIndex'
inherited pnlContent: TPanel
Height = 346
Width = 384
ClientHeight = 346
ClientWidth = 384
ParentColor = True
object lblSaveTo: TLabel[0]
Left = 0
Height = 15
Top = 0
Width = 130
Caption = '&Save checksum file(s) to:'
FocusControl = edtSaveTo
ParentColor = False
end
object edtSaveTo: TEdit[1]
AnchorSideLeft.Control = pnlContent
AnchorSideTop.Control = lblSaveTo
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = pnlContent
AnchorSideRight.Side = asrBottom
Left = 0
Height = 23
Top = 21
Width = 384
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 6
TabOrder = 0
end
object cbSeparateFile: TCheckBox[2]
AnchorSideLeft.Control = edtSaveTo
AnchorSideTop.Control = edtSaveTo
AnchorSideTop.Side = asrBottom
Left = 0
Height = 19
Top = 50
Width = 242
BorderSpacing.Top = 6
Caption = 'C&reate separate checksum file for each file'
OnChange = cbSeparateFileChange
TabOrder = 1
end
object lbHashAlgorithm: TListBox[3]
AnchorSideLeft.Control = edtSaveTo
AnchorSideTop.Control = cbOpenAfterJobIsComplete
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtSaveTo
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Side = asrBottom
Left = 0
Height = 244
Top = 100
Width = 384
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 6
ItemHeight = 0
OnSelectionChange = lbHashAlgorithmSelectionChange
ScrollWidth = 150
TabOrder = 3
end
object cbOpenAfterJobIsComplete: TCheckBox[4]
AnchorSideLeft.Control = edtSaveTo
AnchorSideTop.Control = cbSeparateFile
AnchorSideTop.Side = asrBottom
Left = 0
Height = 19
Top = 75
Width = 243
BorderSpacing.Top = 6
Caption = 'Open checksum file after job is completed'
OnChange = cbSeparateFileChange
TabOrder = 2
end
end
inherited pnlButtons: TPanel
Top = 358
Width = 384
ClientWidth = 384
inherited btnCancel: TBitBtn
Left = 202
end
inherited btnOK: TBitBtn
Left = 296
end
end
end