-
Notifications
You must be signed in to change notification settings - Fork 20
/
Explorer.dfm
217 lines (217 loc) · 5.1 KB
/
Explorer.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
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
object FExplorer: TFExplorer
Left = 422
Top = 205
BorderStyle = bsToolWindow
Caption = 'Explorer'
ClientHeight = 527
ClientWidth = 655
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -10
Font.Name = 'MS Sans Serif'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object pc1: TPageControl
Left = 0
Top = 0
Width = 655
Height = 527
ActivePage = tsCode
Align = alClient
PopupMenu = pm1
TabOrder = 0
object tsCode: TTabSheet
Caption = 'Code'
object lbCode: TListBox
Left = 0
Top = 0
Width = 647
Height = 458
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ItemHeight = 16
ParentFont = False
PopupMenu = pm1
TabOrder = 0
end
object Panel3: TPanel
Left = 0
Top = 458
Width = 647
Height = 41
Align = alBottom
TabOrder = 1
object btnDefCode: TButton
Left = 223
Top = 9
Width = 89
Height = 24
Cursor = crHandPoint
Caption = 'Define'
TabOrder = 0
OnClick = btnDefCodeClick
end
object btnUndefCode: TButton
Left = 344
Top = 9
Width = 87
Height = 24
Cursor = crHandPoint
Caption = 'Undefine'
TabOrder = 1
OnClick = btnUndefCodeClick
end
end
end
object tsData: TTabSheet
Caption = 'Data'
ImageIndex = 1
object lbData: TListBox
Left = 0
Top = 41
Width = 647
Height = 458
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ItemHeight = 16
ParentFont = False
PopupMenu = pm1
TabOrder = 0
end
object Panel2: TPanel
Left = 0
Top = 0
Width = 647
Height = 41
Align = alTop
TabOrder = 1
object rgDataViewStyle: TRadioGroup
Left = 1
Top = 1
Width = 645
Height = 39
Align = alClient
Columns = 6
ItemIndex = 0
Items.Strings = (
'Hex'
'Single (32bit)'
'Double (64)'
'Extended (80)'
'Real (32)'
'Comp (64)')
TabOrder = 0
OnClick = rgDataViewStyleClick
end
end
end
object tsString: TTabSheet
Caption = 'String'
ImageIndex = 2
object rgStringViewStyle: TRadioGroup
Left = 0
Top = 358
Width = 647
Height = 100
Align = alClient
Caption = ' String Styles '
Columns = 2
ItemIndex = 0
Items.Strings = (
'PAnsiChar'
'PWideChar'
'ShortString'
'AnsiString'
'WideString')
TabOrder = 0
OnClick = rgStringViewStyleClick
end
object lbString: TMemo
Left = 0
Top = 0
Width = 647
Height = 358
Align = alTop
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ParentFont = False
TabOrder = 1
end
object Panel1: TPanel
Left = 0
Top = 458
Width = 647
Height = 41
Align = alBottom
TabOrder = 2
object btnDefString: TButton
Left = 223
Top = 9
Width = 89
Height = 24
Cursor = crHandPoint
Caption = 'Define'
Enabled = False
TabOrder = 0
OnClick = btnDefStringClick
end
object btnUndefString: TButton
Left = 344
Top = 9
Width = 87
Height = 24
Cursor = crHandPoint
Caption = 'Undefine'
Enabled = False
TabOrder = 1
end
end
end
object tsText: TTabSheet
Caption = 'Text'
ImageIndex = 4
object lbText: TListBox
Left = 0
Top = 0
Width = 647
Height = 499
Align = alClient
Font.Charset = RUSSIAN_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Fixedsys'
Font.Style = []
ItemHeight = 16
ParentFont = False
PopupMenu = pm1
TabOrder = 0
end
end
end
object pm1: TPopupMenu
Left = 576
Top = 336
object miCopy2Clipboard: TMenuItem
Caption = 'Copy to Clipboard'
OnClick = miCopy2ClipboardClick
end
end
end