Difference between revisions of "ATBinHex"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "= About = '''ATBinHex''' is a control that implements the quick file (stream) viewer. Only visible part of file (or stream) is loaded into viewer, so it's suitable to show fi...")
 
Line 18: Line 18:
  
 
Author: Alexey Torgashin
 
Author: Alexey Torgashin
Homepage:
+
 
 +
= Homepage =
 +
 
 +
* Homepage of Delphi original, with all functions including printing, searching, support for many codepages: https://github.com/Alexey-T/ATViewer
 +
* Homepage of Lazarus port with less functions: https://github.com/Alexey-T/ATBinHex-Lazarus

Revision as of 14:40, 20 July 2015

About

ATBinHex is a control that implements the quick file (stream) viewer. Only visible part of file (or stream) is loaded into viewer, so it's suitable to show files of unlimited size.

Features:

  • Support for huge file sizes (of type Int64)
  • Support for Unicode file names
  • Support for multiple codepages: ANSI, OEM, EBCDIC, KOI8, ISO, Mac etc.

There are 5 view modes available:

  • Text: file is shown in text form
  • Binary: file is shown in binary form (with fixed line length)
  • Hex: file is shown in hex dump
  • Unicode: Unicode contents of file is shown
  • Unicode/Hex: combined Hex and Unicode modes

Author: Alexey Torgashin

Homepage