forked from ref-xx/basinc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHexEdit.dfm
More file actions
175 lines (175 loc) · 4.01 KB
/
HexEdit.dfm
File metadata and controls
175 lines (175 loc) · 4.01 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
object HexWindow: THexWindow
Tag = 1
Left = 59
Top = 723
Width = 436
Height = 265
BorderIcons = [biSystemMenu]
Caption = 'HexWindow'
Color = clBtnFace
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnCreate = FormCreate
OnResize = FormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 14
object MPHexEditor1: TMPHexEditor
Left = 4
Top = 32
Width = 419
Height = 172
Cursor = crIBeam
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Courier New'
Font.Pitch = fpFixed
Font.Style = []
ScrollBars = ssVertical
TabOrder = 3
OnKeyDown = MPHexEditor1KeyDown
Anchors = [akLeft, akTop, akRight, akBottom]
BytesPerRow = 16
BytesPerColumn = 1
Translation = tkAsIs
OffsetFormat = '1%5!0a:|'
Colors.Background = clWindow
Colors.ChangedBackground = clMenu
Colors.ChangedText = clMaroon
Colors.CursorFrame = clNavy
Colors.Offset = clBlack
Colors.OddColumn = clBlack
Colors.EvenColumn = clNavy
Colors.CurrentOffsetBackground = clBtnShadow
Colors.OffsetBackGround = clBtnFace
Colors.CurrentOffset = clBtnHighlight
Colors.Grid = clBtnFace
FocusFrame = False
AllowInsertMode = False
DrawGridLines = False
HideSelection = True
GutterWidth = 42
MaxUndo = 1024
OnTopLeftChanged = MPHexEditor1TopLeftChanged
OnChange = MPHexEditor1Change
end
object Button1: TButton
Left = 374
Top = 208
Width = 49
Height = 21
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Close'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 6
OnClick = Button1Click
end
object Button2: TButton
Left = 322
Top = 208
Width = 49
Height = 21
Anchors = [akRight, akBottom]
Caption = 'Okay'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 5
OnClick = Button2Click
end
object Panel1: TPanel
Left = 4
Top = 209
Width = 314
Height = 25
Anchors = [akLeft, akRight, akBottom]
BevelOuter = bvLowered
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 4
object Label1: TLabel
Left = 8
Top = 4
Width = 31
Height = 13
Caption = 'Label1'
end
end
object Button3: TButton
Left = 153
Top = 4
Width = 32
Height = 21
Caption = 'Go'
Default = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
OnClick = Button3Click
end
object ComboBox1: TComboBox
Left = 4
Top = 4
Width = 145
Height = 22
ItemHeight = 14
TabOrder = 0
OnChange = ComboBox1Change
OnDropDown = ComboBox1Click
OnKeyDown = Edit1KeyDown
end
object Button4: TButton
Left = 188
Top = 4
Width = 45
Height = 21
Caption = 'Find'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 2
OnClick = Button4Click
end
object Button5: TButton
Left = 373
Top = 4
Width = 45
Height = 21
Anchors = [akTop, akRight]
Caption = 'Help'
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Default'
Font.Style = []
ParentFont = False
TabOrder = 7
OnClick = Button5Click
end
end