Difference between revisions of "ATBinHex"

From Free Pascal wiki
Jump to navigationJump to search
(Limitation)
 
(6 intermediate revisions by 3 users not shown)
Line 9: Line 9:
 
= Limitations of Lazarus port =
 
= Limitations of Lazarus port =
  
*    Some features disabled via ATBinHexOptions.inc (searching of text, printing, regex hiliting of URLs).
+
*    Some features were disabled via ATBinHexOptions.inc file (searching of text, printing, RegEx highlighting of URLs).
*    Removed method OpenFile, it used Win API, now use OpenStream.
+
*    Removed method OpenFile, because it used Win32 API; use OpenStream instead.
*    Removed codepages support (1-byte pages)
 
  
= Modes =
+
= View modes =
  
 
There are 5 view modes available:
 
There are 5 view modes available:
  
*    Text: file is shown in text form
+
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
 
  
Screenshots:
+
[[File:atbinhex_ModeText.gif]]
  
* Text: [https://github.com/Alexey-T/ATViewer/blob/master/Help/ATBinHex/ModeText.gif]
+
Binary: file is shown in binary form (with fixed line length)
* Binary: [https://github.com/Alexey-T/ATViewer/blob/master/Help/ATBinHex/ModeBinary.gif]
 
* Hex: [https://github.com/Alexey-T/ATViewer/blob/master/Help/ATBinHex/ModeHex.gif]
 
* Unicode: [https://github.com/Alexey-T/ATViewer/blob/master/Help/ATBinHex/ModeUnicode.gif]
 
* Unicode/Hex: [https://github.com/Alexey-T/ATViewer/blob/master/Help/ATBinHex/ModeUHex.gif]
 
  
= Homepage =
+
[[File:atbinhex_ModeBinary.gif]]
  
* Homepage of Delphi original, with all functions including printing, searching, support for many codepages: https://github.com/Alexey-T/ATViewer
+
Hex: file is shown in hex dump
* Homepage of Lazarus port with less functions: https://github.com/Alexey-T/ATBinHex-Lazarus
+
 
 +
[[File:atbinhex_ModeHex.gif]]
 +
 
 +
Unicode: Unicode contents of file is shown
 +
 
 +
[[File:atbinhex_ModeUnicode.gif]]
 +
 
 +
Unicode/Hex: combined Hex and Unicode modes
  
= Requirements =
+
[[File:atbinhex_ModeUHex.gif]]
  
Lazarus: 1.4.0.
+
= Download =
  
Tested on: Windows 7, QT (Win7), Linux GTK2 (Ubuntu 14.04), MacOS X 10.8.
+
* Homepage of Lazarus port: https://github.com/Alexey-T/ATBinHex-Lazarus
 +
* Homepage of Delphi original, with all functions including printing, searching, support for many codepages: https://github.com/Alexey-T/ATViewer
  
 
[[Category:Components]]
 
[[Category:Components]]

Latest revision as of 10:39, 21 January 2022

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.

Original Delphi code is used for a long time inside "Universal Viewer" application.

Author: Alexey Torgashin

Limitations of Lazarus port

  • Some features were disabled via ATBinHexOptions.inc file (searching of text, printing, RegEx highlighting of URLs).
  • Removed method OpenFile, because it used Win32 API; use OpenStream instead.

View modes

There are 5 view modes available:

Text: file is shown in text form

atbinhex ModeText.gif

Binary: file is shown in binary form (with fixed line length)

atbinhex ModeBinary.gif

Hex: file is shown in hex dump

atbinhex ModeHex.gif

Unicode: Unicode contents of file is shown

atbinhex ModeUnicode.gif

Unicode/Hex: combined Hex and Unicode modes

atbinhex ModeUHex.gif

Download