-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnitFormCreateSecret.dfm
More file actions
136 lines (136 loc) · 3.26 KB
/
UnitFormCreateSecret.dfm
File metadata and controls
136 lines (136 loc) · 3.26 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
object FormCreateSecret: TFormCreateSecret
Left = 75
Top = 68
Width = 882
Height = 587
Caption = 'Create Secret (C) 2009 Rich'#232'l Bilderbeek'
Color = clBlack
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
OldCreateOrder = False
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 14
object ImageMessage: TImage
Left = 48
Top = 152
Width = 32
Height = 32
Center = True
Picture.Data = {
07544269746D61703A000000424D3A0000000000000036000000280000000100
0000010000000100180000000000040000000000000000000000000000000000
0000FFFFFF00}
Stretch = True
Visible = False
end
object ImageOriginal: TImage
Left = 8
Top = 152
Width = 33
Height = 33
Center = True
Picture.Data = {
07544269746D61703A000000424D3A0000000000000036000000280000000100
0000010000000100180000000000040000000000000000000000000000000000
0000FFFFFF00}
Stretch = True
Visible = False
end
object ImageResult: TImage
Left = 88
Top = 152
Width = 33
Height = 33
Center = True
Picture.Data = {
07544269746D61703A000000424D3A0000000000000036000000280000000100
0000010000000100180000000000040000000000000000000000000000000000
0000FFFFFF00}
Stretch = True
Visible = False
end
object PanelCreateSecret: TPanel
Left = 0
Top = 0
Width = 874
Height = 49
Align = alTop
BevelOuter = bvNone
Color = clBlack
TabOrder = 0
object PanelLoadOriginal: TPanel
Left = 0
Top = 0
Width = 313
Height = 49
Align = alLeft
BevelOuter = bvNone
Caption = ' (X) Load original '
Color = clBlack
Font.Charset = ANSI_CHARSET
Font.Color = clSilver
Font.Height = -29
Font.Name = 'Courier New'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
OnMouseDown = PanelLoadOriginalMouseDown
end
object PanelLoadMessage: TPanel
Left = 313
Top = 0
Width = 289
Height = 49
Align = alLeft
BevelOuter = bvNone
Caption = ' (X) Load message '
Color = clBlack
Font.Charset = ANSI_CHARSET
Font.Color = clSilver
Font.Height = -29
Font.Name = 'Courier New'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
Visible = False
OnMouseDown = PanelLoadMessageMouseDown
end
object PanelSave: TPanel
Left = 602
Top = 0
Width = 272
Height = 49
Align = alClient
BevelOuter = bvNone
Caption = ' (X) Save result '
Color = clBlack
Font.Charset = ANSI_CHARSET
Font.Color = clSilver
Font.Height = -29
Font.Name = 'Courier New'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 2
Visible = False
OnMouseDown = PanelSaveMouseDown
end
end
object OpenDialog: TOpenPictureDialog
DefaultExt = 'bmp'
Filter = '24-bit bitmap (*.bmp)|*.bmp'
Title = 'Select a 24-bit bitmap to extract its secret'
Left = 128
Top = 152
end
object SaveDialog: TSavePictureDialog
DefaultExt = 'bmp'
Filter = '24-bit bitmap (*.bmp)|*.bmp'
Title = 'Save your secret message'
Left = 168
Top = 152
end
end