| 1 |
object Form13: TForm13 |
| 2 |
Left = 0 |
| 3 |
Top = 0 |
| 4 |
Width = 650 |
| 5 |
Height = 667 |
| 6 |
BorderIcons = [biSystemMenu, biMaximize] |
| 7 |
Caption = 'Binary .raw-Editor' |
| 8 |
Color = clBtnFace |
| 9 |
Font.Charset = DEFAULT_CHARSET |
| 10 |
Font.Color = clWindowText |
| 11 |
Font.Height = -11 |
| 12 |
Font.Name = 'Tahoma' |
| 13 |
Font.Style = [] |
| 14 |
FormStyle = fsMDIChild |
| 15 |
OldCreateOrder = False |
| 16 |
Visible = True |
| 17 |
WindowState = wsMaximized |
| 18 |
OnActivate = FormActivate |
| 19 |
OnClose = FormClose |
| 20 |
OnCloseQuery = FormCloseQuery |
| 21 |
OnCreate = FormCreate |
| 22 |
OnResize = FormResize |
| 23 |
PixelsPerInch = 96 |
| 24 |
TextHeight = 13 |
| 25 |
object Splitter1: TSplitter |
| 26 |
Left = 150 |
| 27 |
Top = 0 |
| 28 |
Width = 9 |
| 29 |
Height = 640 |
| 30 |
AutoSnap = False |
| 31 |
Beveled = True |
| 32 |
MinSize = 150 |
| 33 |
end |
| 34 |
object panel_data: TPanel |
| 35 |
Left = 159 |
| 36 |
Top = 0 |
| 37 |
Width = 483 |
| 38 |
Height = 640 |
| 39 |
Align = alClient |
| 40 |
BevelOuter = bvNone |
| 41 |
TabOrder = 0 |
| 42 |
OnResize = panel_dataResize |
| 43 |
object Splitter2: TSplitter |
| 44 |
Left = 0 |
| 45 |
Top = 209 |
| 46 |
Width = 483 |
| 47 |
Height = 9 |
| 48 |
Cursor = crVSplit |
| 49 |
Align = alTop |
| 50 |
AutoSnap = False |
| 51 |
Beveled = True |
| 52 |
MinSize = 40 |
| 53 |
end |
| 54 |
object Splitter3: TSplitter |
| 55 |
Left = 0 |
| 56 |
Top = 592 |
| 57 |
Width = 483 |
| 58 |
Height = 8 |
| 59 |
Cursor = crVSplit |
| 60 |
Align = alBottom |
| 61 |
AutoSnap = False |
| 62 |
Beveled = True |
| 63 |
MinSize = 40 |
| 64 |
end |
| 65 |
object hex: TMPHexEditor |
| 66 |
Left = 0 |
| 67 |
Top = 0 |
| 68 |
Width = 483 |
| 69 |
Height = 209 |
| 70 |
Cursor = crIBeam |
| 71 |
Align = alTop |
| 72 |
Font.Charset = DEFAULT_CHARSET |
| 73 |
Font.Color = clWindowText |
| 74 |
Font.Height = -16 |
| 75 |
Font.Name = 'Courier' |
| 76 |
Font.Style = [] |
| 77 |
ParentFont = False |
| 78 |
TabOrder = 0 |
| 79 |
BytesPerRow = 16 |
| 80 |
Translation = tkASCII |
| 81 |
OffsetFormat = '6!10:0x|' |
| 82 |
Colors.Background = clWindow |
| 83 |
Colors.ChangedBackground = clWindow |
| 84 |
Colors.ChangedText = clRed |
| 85 |
Colors.CursorFrame = clNavy |
| 86 |
Colors.Offset = clBlack |
| 87 |
Colors.OddColumn = clBlue |
| 88 |
Colors.EvenColumn = clNavy |
| 89 |
Colors.CurrentOffsetBackground = clBtnShadow |
| 90 |
Colors.OffsetBackGround = clBtnFace |
| 91 |
Colors.CurrentOffset = clBtnHighlight |
| 92 |
Colors.Grid = clBtnFace |
| 93 |
Colors.NonFocusCursorFrame = clAqua |
| 94 |
Colors.ActiveFieldBackground = clWindow |
| 95 |
FocusFrame = True |
| 96 |
NoSizeChange = True |
| 97 |
AllowInsertMode = False |
| 98 |
DrawGridLines = False |
| 99 |
Version = 'May 23, 2005; '#169' markus stephany, vcl[at]mirkes[dot]de' |
| 100 |
OnChange = hexChange |
| 101 |
ShowPositionIfNotFocused = True |
| 102 |
OnSelectionChanged = hexSelectionChanged |
| 103 |
end |
| 104 |
object structs: TWrapGrid |
| 105 |
Left = 0 |
| 106 |
Top = 600 |
| 107 |
Width = 483 |
| 108 |
Height = 40 |
| 109 |
Align = alBottom |
| 110 |
DefaultColWidth = 80 |
| 111 |
DefaultRowHeight = 18 |
| 112 |
Enabled = False |
| 113 |
FixedCols = 0 |
| 114 |
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing] |
| 115 |
TabOrder = 1 |
| 116 |
OnClick = structsClick |
| 117 |
OnDblClick = structsDblClick |
| 118 |
end |
| 119 |
object value_viewer: TWrapGrid |
| 120 |
Left = 0 |
| 121 |
Top = 218 |
| 122 |
Width = 483 |
| 123 |
Height = 374 |
| 124 |
Align = alClient |
| 125 |
DefaultColWidth = 80 |
| 126 |
DefaultRowHeight = 18 |
| 127 |
FixedCols = 0 |
| 128 |
RowCount = 8 |
| 129 |
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing] |
| 130 |
PopupMenu = value_viewer_context |
| 131 |
TabOrder = 2 |
| 132 |
OnDblClick = value_viewerDblClick |
| 133 |
OnMouseDown = value_viewerMouseDown |
| 134 |
end |
| 135 |
end |
| 136 |
object panel_files: TPanel |
| 137 |
Left = 0 |
| 138 |
Top = 0 |
| 139 |
Width = 150 |
| 140 |
Height = 640 |
| 141 |
Align = alLeft |
| 142 |
BevelOuter = bvNone |
| 143 |
TabOrder = 1 |
| 144 |
object Splitter4: TSplitter |
| 145 |
Left = 0 |
| 146 |
Top = 442 |
| 147 |
Width = 150 |
| 148 |
Height = 9 |
| 149 |
Cursor = crVSplit |
| 150 |
Align = alBottom |
| 151 |
AutoSnap = False |
| 152 |
Beveled = True |
| 153 |
MinSize = 150 |
| 154 |
end |
| 155 |
object panel_imexport: TPanel |
| 156 |
Left = 0 |
| 157 |
Top = 580 |
| 158 |
Width = 150 |
| 159 |
Height = 60 |
| 160 |
Align = alBottom |
| 161 |
BevelOuter = bvNone |
| 162 |
TabOrder = 0 |
| 163 |
OnResize = panel_imexportResize |
| 164 |
object btn_export: TButton |
| 165 |
Left = 4 |
| 166 |
Top = 4 |
| 167 |
Width = 142 |
| 168 |
Height = 25 |
| 169 |
Caption = 'Export to file...' |
| 170 |
TabOrder = 0 |
| 171 |
OnClick = btn_exportClick |
| 172 |
end |
| 173 |
object btn_import: TButton |
| 174 |
Left = 4 |
| 175 |
Top = 32 |
| 176 |
Width = 142 |
| 177 |
Height = 25 |
| 178 |
Caption = 'Import from file...' |
| 179 |
TabOrder = 1 |
| 180 |
OnClick = btn_importClick |
| 181 |
end |
| 182 |
end |
| 183 |
object group_file: TGroupBox |
| 184 |
Left = 0 |
| 185 |
Top = 0 |
| 186 |
Width = 150 |
| 187 |
Height = 442 |
| 188 |
Align = alClient |
| 189 |
Caption = '1. Select file' |
| 190 |
TabOrder = 1 |
| 191 |
object list: TListBox |
| 192 |
Left = 2 |
| 193 |
Top = 15 |
| 194 |
Width = 146 |
| 195 |
Height = 322 |
| 196 |
Align = alClient |
| 197 |
ItemHeight = 13 |
| 198 |
TabOrder = 0 |
| 199 |
OnClick = listClick |
| 200 |
end |
| 201 |
object panel_extension: TPanel |
| 202 |
Left = 2 |
| 203 |
Top = 337 |
| 204 |
Width = 146 |
| 205 |
Height = 103 |
| 206 |
Align = alBottom |
| 207 |
BevelOuter = bvNone |
| 208 |
TabOrder = 1 |
| 209 |
OnResize = panel_extensionResize |
| 210 |
object lbl_filter: TLabel |
| 211 |
Left = 2 |
| 212 |
Top = 62 |
| 213 |
Width = 100 |
| 214 |
Height = 17 |
| 215 |
AutoSize = False |
| 216 |
Caption = 'Filter by &extension:' |
| 217 |
FocusControl = combo_extension |
| 218 |
end |
| 219 |
object combo_extension: TComboBox |
| 220 |
Left = 2 |
| 221 |
Top = 76 |
| 222 |
Width = 145 |
| 223 |
Height = 21 |
| 224 |
Style = csDropDownList |
| 225 |
DropDownCount = 12 |
| 226 |
Font.Charset = DEFAULT_CHARSET |
| 227 |
Font.Color = clWindowText |
| 228 |
Font.Height = -11 |
| 229 |
Font.Name = 'Tahoma' |
| 230 |
Font.Style = [] |
| 231 |
ItemHeight = 13 |
| 232 |
ParentFont = False |
| 233 |
Sorted = True |
| 234 |
TabOrder = 3 |
| 235 |
OnClick = combo_extensionClick |
| 236 |
end |
| 237 |
object check_zerobyte: TCheckBox |
| 238 |
Left = 2 |
| 239 |
Top = 44 |
| 240 |
Width = 130 |
| 241 |
Height = 13 |
| 242 |
Caption = 'Show &zero-byte files' |
| 243 |
TabOrder = 2 |
| 244 |
OnClick = check_zerobyteClick |
| 245 |
end |
| 246 |
object edit_filtername: TEdit |
| 247 |
Left = 2 |
| 248 |
Top = 20 |
| 249 |
Width = 145 |
| 250 |
Height = 18 |
| 251 |
AutoSize = False |
| 252 |
TabOrder = 1 |
| 253 |
end |
| 254 |
object check_filtername: TCheckBox |
| 255 |
Left = 2 |
| 256 |
Top = 5 |
| 257 |
Width = 130 |
| 258 |
Height = 15 |
| 259 |
Caption = 'Filter by file&name:' |
| 260 |
TabOrder = 0 |
| 261 |
OnClick = check_filternameClick |
| 262 |
end |
| 263 |
end |
| 264 |
end |
| 265 |
object GroupBox1: TGroupBox |
| 266 |
Left = 0 |
| 267 |
Top = 451 |
| 268 |
Width = 150 |
| 269 |
Height = 129 |
| 270 |
Align = alBottom |
| 271 |
Caption = '2. Select .dat-link-offset' |
| 272 |
TabOrder = 2 |
| 273 |
object list_offset: TListBox |
| 274 |
Left = 2 |
| 275 |
Top = 15 |
| 276 |
Width = 146 |
| 277 |
Height = 112 |
| 278 |
Align = alClient |
| 279 |
ItemHeight = 13 |
| 280 |
TabOrder = 0 |
| 281 |
OnClick = list_offsetClick |
| 282 |
end |
| 283 |
end |
| 284 |
end |
| 285 |
object value_viewer_context: TPopupMenu |
| 286 |
AutoHotkeys = maManual |
| 287 |
OnPopup = value_viewer_contextPopup |
| 288 |
Left = 368 |
| 289 |
Top = 264 |
| 290 |
object value_viewer_context_copy: TMenuItem |
| 291 |
Caption = 'Copy to &clipboard' |
| 292 |
OnClick = value_viewer_context_copyClick |
| 293 |
end |
| 294 |
object value_viewer_context_copyasdec: TMenuItem |
| 295 |
Caption = 'Copy to clipboard (as &dec)' |
| 296 |
OnClick = value_viewer_context_copyClick |
| 297 |
end |
| 298 |
object value_viewer_context_copyasfloat: TMenuItem |
| 299 |
Caption = 'Copy to clipboard (as &float)' |
| 300 |
OnClick = value_viewer_context_copyClick |
| 301 |
end |
| 302 |
object value_viewer_context_copyasbitset: TMenuItem |
| 303 |
Caption = 'Copy to clipboard (as &bitset)' |
| 304 |
OnClick = value_viewer_context_copyClick |
| 305 |
end |
| 306 |
object value_viewer_context_copyasstring: TMenuItem |
| 307 |
Caption = 'Copy to clipboard (as &string)' |
| 308 |
OnClick = value_viewer_context_copyClick |
| 309 |
end |
| 310 |
object value_viewer_context_copyashex: TMenuItem |
| 311 |
Caption = 'Copy to clipboard (as &hex)' |
| 312 |
OnClick = value_viewer_context_copyClick |
| 313 |
end |
| 314 |
end |
| 315 |
object opend: TOpenDialog |
| 316 |
Options = [ofPathMustExist, ofFileMustExist, ofEnableSizing] |
| 317 |
Left = 120 |
| 318 |
Top = 584 |
| 319 |
end |
| 320 |
object saved: TSaveDialog |
| 321 |
Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing] |
| 322 |
Left = 120 |
| 323 |
Top = 608 |
| 324 |
end |
| 325 |
end |