-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.lfm
More file actions
179 lines (179 loc) · 3.58 KB
/
Copy pathMain.lfm
File metadata and controls
179 lines (179 loc) · 3.58 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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
object MainForm: TMainForm
Left = 243
Height = 314
Top = 372
Width = 479
BorderStyle = bsSingle
Caption = 'Snap MD5'
ClientHeight = 294
ClientWidth = 479
DragMode = dmAutomatic
Font.Height = -12
KeyPreview = True
Menu = MainMenu1
OnActivate = ActivateForm
OnCreate = FillFields
OnDropFiles = DropFiles
OnKeyPress = FormKeyPress
Position = poScreenCenter
LCLVersion = '0.9.30'
object MatchStatus: TLabel
Left = 0
Height = 1
Top = 270
Width = 479
Align = alBottom
Alignment = taCenter
Font.Color = clWhite
Font.Height = -19
Font.Quality = fqAntialiased
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object GroupBox1: TGroupBox
Left = 8
Height = 48
Top = 8
Width = 465
Caption = 'Filename'
ClientHeight = 30
ClientWidth = 461
Color = clBtnFace
ParentColor = False
ParentFont = False
TabOrder = 0
object FileField: TEdit
Left = 6
Height = 23
Top = 1
Width = 366
OnMouseDown = SelectField
ParentFont = False
TabOrder = 0
end
object BrowseBtn: TButton
Left = 380
Height = 23
Top = 0
Width = 75
Caption = '&Browse'
OnClick = BrowseBtnClick
TabOrder = 1
end
end
object GroupBox2: TGroupBox
Left = 8
Height = 49
Top = 63
Width = 465
Caption = 'MD5 Sum'
ClientHeight = 31
ClientWidth = 461
ParentFont = False
TabOrder = 2
object md5sum: TEdit
Left = 6
Height = 23
Top = 0
Width = 450
CharCase = ecUppercase
Color = clBtnFace
OnMouseDown = SelectField
ParentFont = False
ReadOnly = True
TabStop = False
TabOrder = 0
end
end
object GroupBox3: TGroupBox
Left = 8
Height = 49
Top = 175
Width = 465
Caption = 'Clipboard'
ClientHeight = 31
ClientWidth = 461
ParentFont = False
TabOrder = 1
object Clipfield: TEdit
Left = 5
Height = 23
Top = 1
Width = 450
CharCase = ecUppercase
OnChange = ClipfieldChange
OnMouseDown = SelectField
ParentFont = False
TabOrder = 0
end
end
object GroupBox4: TGroupBox
Left = 8
Height = 49
Top = 119
Width = 465
Caption = 'SHA-1'
ClientHeight = 31
ClientWidth = 461
ParentFont = False
TabOrder = 3
object sha1: TEdit
Left = 6
Height = 23
Top = 0
Width = 450
CharCase = ecUppercase
Color = clBtnFace
OnMouseDown = SelectField
ParentFont = False
ReadOnly = True
TabStop = False
TabOrder = 0
end
end
object StatusBar1: TStatusBar
Left = 0
Height = 23
Top = 271
Width = 479
Panels = <>
ParentShowHint = False
SizeGrip = False
end
object MainMenu1: TMainMenu
left = 432
top = 232
object MenuFile: TMenuItem
Caption = '&File'
object MenuOpen: TMenuItem
Caption = '&Open'
ShortCut = 16463
OnClick = BrowseBtnClick
end
object MenuHash: TMenuItem
Caption = '&Hash'
ShortCut = 16456
OnClick = CalcHashes
end
object MenuReset: TMenuItem
Caption = '&Reset'
ShortCut = 16466
OnClick = ResetFields
end
object MenuExit: TMenuItem
Caption = 'E&xit'
ShortCut = 32856
OnClick = CloseApp
end
end
object MenuHelp: TMenuItem
Caption = '&Help'
object MenuAbout: TMenuItem
Caption = '&About'
ShortCut = 112
OnClick = ShowAbout
end
end
end
end