-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit1.lfm
261 lines (261 loc) · 4.06 KB
/
unit1.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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
object Form1: TForm1
Left = 312
Height = 639
Top = 139
Width = 897
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsDialog
Caption = 'Four Square'
ClientHeight = 639
ClientWidth = 897
OnCreate = FormCreate
LCLVersion = '1.4.4.0'
object Memo1: TMemo
Left = 16
Height = 90
Top = 48
Width = 336
Lines.Strings = (
'Memo1'
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
)
OnChange = Memo1Change
ScrollBars = ssVertical
TabOrder = 0
end
object Memo2: TMemo
Left = 16
Height = 90
Top = 248
Width = 336
Lines.Strings = (
'Memo2'
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
)
ScrollBars = ssVertical
TabOrder = 1
end
object Memo3: TMemo
Left = 16
Height = 90
Top = 400
Width = 150
Lines.Strings = (
'Memo3'
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
''
)
MaxLength = 25
OnChange = Memo3Change
TabOrder = 2
end
object Memo4: TMemo
Left = 202
Height = 90
Top = 400
Width = 150
Lines.Strings = (
'Memo4'
''
''
''
''
''
''
''
''
''
''
''
''
''
''
)
MaxLength = 25
OnChange = Memo4Change
TabOrder = 3
end
object StringGrid1: TStringGrid
Left = 376
Height = 500
Top = 16
Width = 500
ColCount = 11
DefaultColWidth = 45
DefaultRowHeight = 45
FixedCols = 0
FixedRows = 0
Font.Height = -13
Font.Name = 'Lucida Grande'
ParentFont = False
RowCount = 11
TabOrder = 4
TitleFont.Height = -13
TitleFont.Name = 'Lucida Grande'
OnDrawCell = StringGrid1DrawCell
end
object RadioButton1: TRadioButton
Left = 16
Height = 18
Top = 152
Width = 67
Caption = 'Encrypt'
Checked = True
OnChange = RadioButton1Change
TabOrder = 6
TabStop = True
end
object RadioButton2: TRadioButton
Left = 136
Height = 18
Top = 152
Width = 69
Caption = 'Decrypt'
OnChange = RadioButton2Change
TabOrder = 5
end
object Label1: TLabel
Left = 16
Height = 20
Top = 368
Width = 38
Caption = 'Keys'
Font.Height = -17
ParentColor = False
ParentFont = False
end
object Label2: TLabel
Left = 16
Height = 20
Top = 16
Width = 186
Caption = 'Text to En- or Decrypt'
Font.Height = -17
ParentColor = False
ParentFont = False
end
object Label3: TLabel
Left = 16
Height = 20
Top = 216
Width = 184
Caption = 'En- or Decrypted Text'
Font.Height = -17
ParentColor = False
ParentFont = False
end
object Button1: TButton
Left = 256
Height = 18
Top = 152
Width = 75
Caption = '^'
Font.Height = -30
OnClick = Button1Click
ParentFont = False
TabOrder = 7
end
object CheckBox1: TCheckBox
Left = 16
Height = 18
Top = 184
Width = 126
Caption = 'Auto En-/Decrypt'
Checked = True
OnChange = CheckBox1Change
State = cbChecked
TabOrder = 8
end
object Button2: TButton
Left = 184
Height = 18
Top = 184
Width = 147
Caption = 'En-/Decrypt'
Font.Height = -30
OnClick = Button2Click
ParentFont = False
TabOrder = 9
Visible = False
end
object Memo5: TMemo
Left = 16
Height = 68
Top = 500
Width = 336
Lines.Strings = (
'Memo5'
''
''
''
''
''
)
OnChange = Memo5Change
TabOrder = 10
end
object Button3: TButton
Left = 16
Height = 25
Top = 576
Width = 336
Caption = 'Key Generator'
OnClick = Button3Click
TabOrder = 11
end
object ProgressBar1: TProgressBar
Left = 16
Height = 20
Top = 608
Width = 336
Max = 50
TabOrder = 12
end
end