/bin/dbxoodbc/Source/Demos/DbExplor/Optional.Libs/HexEdit/mpHexEditor.pas
http://github.com/sanelson/dbdesigner-fork · Pascal · 8853 lines · 6740 code · 836 blank · 1277 comment · 732 complexity · e8dbdc67a837e897f7e36da3b4ef897b MD5 · raw file
Large files are truncated click here to view the full file
- (*
-
- TMPHexEditor v 02-06-2006<br>
-
- @author((C) markus stephany, vcl[at]mirkes[dot]de, all rights reserved.)
- @abstract(TMPHexEditor displays and edits binary files in hexadecimal notation)
- @lastmod(02-06-2006)
-
- credits to :<br><br>
- - John Hamm, http://users.snapjax.com/john/<br><br>
-
- - Christophe Le Corfec for introducing the EBCDIC format and the nice idea about
- half byte insert/delete<br><br>
-
- - Philippe Chessa for his suggestions about AsText, AsHex and better support for
- the french keyboard layout<br><br>
-
- - Daniel Jensen for octal offset display and the INS-key recognition stuff<br><br>
-
- - Shmuel Zeigerman for introducing more flexible offset display formats<br><br>
-
- - Vaf, http://carradio.al.ru for reporting missing delver.inc and suggesting OnChange<br><br>
-
- - Eugene Tarasov for reporting that setting the BytesPerColumn value to 4 at design
- time didn't work<br><br>
-
- - FuseBurner for BytesPerUnit/RulerBytesPerUnit related suggestions<br><br>
-
- - Motzi for SyncView/ShowPositionIfNotFocused related suggestions<br><br>
-
- - Martin Hsiao for bcb compatibility and reporting some bugs when moving cursor beyond eof<br><br>
-
- - Miyu for delphi 7 defines<br><br>
-
- - Nils Hoyer for bcb testing and his help on creating a BCB6 package<br><br>
-
- - Skamnitsly S.V for reporting a bug when doubleclicking the ruler bar<br><br>
-
- - Pete Fraser for reporting problems with array properties under BCB<br><br>
-
- - Andrew Novikov for bug reports and suggestions<br><br>
-
- - Al for bug reports<br><br>
-
- - Dieter Köhler for reporting the delphi vcl related CanFocus bug<br><br>
-
- - Piotr Likus for reporting a cardinal<->integer related bug in the Undo method<br><br>
-
- - Marc Girod for bug reports<br><br>
-
- - Gerd Schwartz for reporting a bug with printing headers/footers that contain long texts
- (MPHexEditorEx only)<br><br>
-
- - Bogdan Ureche for reporting an integer overflow when moving the cursor over a large selection<br><br>
-
- <h3>history:</h3>
- <p><ul>
- <li>v 02-06-2006: february 06, 2006<br><br>
- - changed key handling (VK_INSERT, no action if a control key is pressed)<br>
- - fixed an access violation in CursorOverSelection when moving the cursor over
- a large selection<br>
- - added conditional defines for delphi 8 and delphi 2005 in MPDELVER.INC</br>
- - removed FastPointer property, use the GetFastPointer function instead (it checks boundaries)<br><br></li>
-
- <li>v 05-23-2005: may 23, 2005<br><br>
- - fixed an access violation in the undo storage code when reallocating
- memory during storing of undo data<br>
- - the secondary focus frame on the hex pane now is painted around the
- whole actual data value (4 digits if unicode, 2 digits otherwise)<br>
- - added procedure @link(CenterCursorPosition)<br>
- - in @link(InsertBuffer) and @link(Replace) now the position parameter
- is checked<br><br></li>
-
- <li>v 12-29-2004: december 29, 2004<br><br>
- - initialized Result to '' in some string functions/methods to avoid
- non empty Result vars at function startup due to compiler
- optimizations (particularly on d4), e.g. printing did not work
- correctly under d4<br>
- - updated some of the sample projects (fixed the broken bcb6 sample,
- added printing to the hex viewer and the bcb6 editor sample) <br><br></li>
-
- <li>v 12-28-2004: december 28, 2004<br><br>
- - changed the progress event calling part in @link(Find) and
- @link(FindWithWildcard) to avoid a division by zero error when working
- on files < 500 bytes<br><br></li>
-
- <li>v 12-21-2004: december 21, 2004<br><br>
- - changed @link(PrepareFindReplaceData) to avoid an exception when
- the string parameter is empty<br><br></li>
-
- <li>v 11-12-2004: november 12, 2004<br><br>
- - changed mouse selection in insert mode, now it's more text
- editor-like<br>
- - @link(Undo) and @link(Redo) disabled when @link(ReadonlyView)
- is True<br>
- - some small other modifications<br>
- <br><br></li>
-
- <li>v 10-26-2004: october 26, 2004<br><br>
- - fixed a typecasting bug in the Undo method (integer overflow)<br>
- - added some utility functions for unsigned int64 arithmetics (@link(AddU64), @link(TryAddU64),
- @link(SubtractU64), @link(TrySubtractU64), @link(MultiplyU64), @link(TryMultiplyU64),
- @link(DivideU64), @link(TryDivideU64), @link(ModuloU64), @link(TryModuloU64))
- <br><br></li>
-
- <li>v 08-29-2004: august 29, 2004<br><br>
- - Added @link(ActiveFieldBackground) color property<br><br></li>
-
- <li>v 08-14-2004: august 14, 2004<br><br>
- - the caret was not set properly when switching from
- hex to char pane if no data was in the editor <br>
- - Added @link(MaskedChars) property<br><br></li>
-
- <li>v 06-15-2004: june 15, 2004<br><br>
- - Added @link(DrawDataPosition) and @link(IsDrawDataSelected) properties <br>
- - changes in drawing/invalidating to avoid unnecessary painting <br>
- - OnMouseDown is now called also if offset pane or ruler are clicked <br>
- - if @link(BytesPerUnit) is changed, the selection is reset
- if (SelCount mod BytesPerUnit) <> 0 <br>
- - if @link(CaretKind) is ckAuto, the caret is a bottom line if
- @link(ReadOnlyView) is True<br><br></li>
-
- <li>v 06-10-2004: june 10, 2004<br><br>
- - added @link(RulerNumberBase) property <br>
- - overwritten CanFocus method due to vcl bug (see
- <a href="http://info.borland.com/devsupport/delphi/fixes/delphi4/vcl.html">
- http://info.borland.com/devsupport/delphi/fixes/delphi4/vcl.html</a>,
- ref 279<br><br></li>
-
- <li>v 06-07-2004: june 07, 2004<br><br>
- - fixed a crash ("Grid index out of range") when switching from
- unicode <br>
- - @link(SyncView) modified to be able to synchronize the view
- of editors with different data sizes/layouts, also with offset <br>
- - on changing TopRow/LeftCol the caret is repositionned <br>
- - overwritten mouse wheel handling to allow page scrolling <br>
- - manual handling of MaskChar property streaming due to bug reports
- ("Invalid Property Value")<br><br></li>
-
- <li>v 05-30-2004: may 30, 2004<br><br>
- - fixed broken CanOpenFile routine (files were always marked read-only)<br><br></li>
-
- <li>v 05-27-2004: may 27, 2004<br><br>
- - added @link(IsMaxOffset) property <br>
- - the control gets focused when the mouse is clicked even when
- the mouse is over the selection<br><br></li>
-
- <li>v 05-13-2004: may 13, 2004<br><br>
- - @link(OnDrawCell) is now also called for the top left cell<br>
- - setting @link(UnicodeChars) to False now correctly sets
- @link(BytesPerUnit) to 1 <br><br></li>
-
- <li>v 04-18-2004: april 18, 2004<br><br>
- - parameters aBuffer and bBuffer were interchanged in the
- CopyMemory call in @link(TranslateBufferFromAnsi)<br>
- - @link(GetOffsetString) can now be called in @link(OnGetOffsetText)
- without crashing (infinite recursion = stack overflow) <br><br></li>
-
- <li>v 01-08-2004: january 08, 2004<br><br>
- - added some explicit pointer typecasts for {$T+} compatibility<br>
- - removed FindTable and FindTableI properties under BCB (doesn't
- compile) <br><br></li>
-
- <li>v 12-16-2003: december 16, 2003<br><br>
- - Setting the @link(DataSize) property is now undoable<br>
- - Added the public @link(SetDataSizeFillByte) property to be able to control
- what byte is used to enlarge the data<br>
- - Now checking @link(NoSizeChange) before allowing to set @link(DataSize)<br>
- - CreateUndo is no longer a function, but a procedure. Now an
- exception is raised when no undo record can be created <br><br></li>
-
- <li>v 12-10-2003: december 10, 2003<br><br>
- - Renamed OnLoadSaveProgress to @link(OnProgress)<br>
- - Added property @link(FindProgress)<br>
- - Added custom find methods (@link(OnFind), @link(OnWildcardFind)<br>
- - @link(Find) and @link(FindWithWildcard) speeded up by using
- precompiled character tables<br>
- - @link(Find) and @link(FindWithWildcard) now also fire the @link(OnProgress) event
- if @link(FindProgress) is set to true<br>
- - fixed a bug in mouse handling (weird selection or line offsets when
- doublecklicking ruler bar/offset panel) <br>
- - modified selectioncode to better support double byte selection (unicode) <br><br></li>
-
- <li>v 09-24-2003: september 24, 2003<br><br>
- - modified the BCB6 package<br><br></li>
-
- <li>v 09-09-2003: september 09, 2003<br><br>
- - changed some constants, classes and types from MPTH... to MPH...<br>
- - changed MPHCustTransFieldFrom/To to @link(MPHCustomCharConv)<br>
- - @link(BytesPerBlock) and @link(SeparateBlocksInCharField) properties added<br>
- - @link(DataSize) property is writeable now<br>
- - Page down key now also reaches the last row<br>
- - added @link(OnGetOffsetText) property<br>
- - added @link(AddSelectionUndo) procedure<br>
- - added defines for delphi7, renamed delver.inc to mpdelver.inc<br>
- - added wildcard search (@link(FindWithWildcard))<br>
- - added @link(SeekToEOF)<br>
- - changed keyboard handling, so OnKeyDown should work better<br>
- - added @link(GotoBookmark) method to set cursor to a bookmarked position<br>
- - added @link(OnBookmarkChanged) property<br>
- - support for unsigned int64 radix conversions<br>
- - @link(Replace) method added<br><br></li>
-
- <li>v 07-05-2003: july 05, 2003<br><br>
- - better handling of odd sized files when BytesPerUnit <> 1<br>
- - added support for pasting clipboard data in fixed filesize mode in @link(TMPHexEditorEx)<br>
- - added RegEdit_HexData clipboard support in @link(TMPHexEditorEx)<br><br></li>
-
- <li>v 05-25-2003-b: may 25, 2003<br><br>
- - fixed a bug (moving the cursor beyond eof)<br><br></li>
-
- <li>v 05-25-2003: may 25, 2003<br><br>
- - added some kind of ownerdraw (see @link(OnDrawCell))<br><br></li>
-
- <li>v 05-20-2003: may 20, 2003<br><br>
- - renamed, added and changed some methods, classes and properties<br>
- - fixed some bugs in the ruler display (e.g. when BytesPerRow is
- changed)<br>
- - fixed some bugs when BytesPerUnit <> 1<br>
- - added some unicode support (@link(UnicodeChars) and
- @link(UnicodeBigEndian))<br>
- - fixed some half byte (nibble) related bugs<br><br></li>
-
- <li>v 05-17-2003: may 17, 2003<br><br>
- - added @link(DisplayStart) and @link(DisplayEnd) functions to retrieve
- the data bounds currently displayed<br>
- - added @link(BytesPerUnit) and @link(RulerBytesPerUnit) properties to
- treat words/dwords/qwords as a unit<br>
- - added @link(SyncView) procedure and @link(OnSelectionChanged)
- property to synchronize position and selection with another
- editor<br>
- - added @link(ShowPositionIfNotFocused) property to show the current
- position if the editor is not focused<br><br></li>
-
- <li>v 10-25-2002: october 25, 2002<br><br>
- - corrected the BytesPerColumn default value<br><br></li>
-
- <li>v 08-18-2002: august 18, 2002<br><br>
- - modified painting and selection<br>
- - implemented an additional ruler bar at the top<br>
- - new properties: @link(ShowRuler), @link(DrawGutter3D)<br><br></li>
-
- <li>v 08-12-2002: august 12, 2002<br><br>
- - modified Changed calls to get correct Modified property in
- OnChange handler<br><br></li>
-
- <li>v 08-09-2002: august 09, 2002<br><br>
- - included missing include file delver.inc<br>
- - added OnChange event<br><br></li>
-
- <li>v 07-21-2002: july 21, 2002<br><br>
- too many changes to mention here (completely rewritten, basic and advanced versions
- TMPHexEditor and TMPHexEditorEx), plz read the documentation included with this
- package for more information</li>
- </ul></p>
-
- *)
-
- unit MPHexEditor;
- {$R *.res}
- {.$DEFINE TINYHEXER}// don't define this!
- {$DEFINE FASTACCESS} // if this is defined, direct access to the stream memory is given
-
- (* define this if you want to have the old savetostream behaviour
- (clear target stream before copying data).
- if it is undef'd, do not clear the target stream
- (just copy the editor data to the stream) *)
- {.$DEFINE OLD_STREAM_OUT}
-
- {$I MPDELVER.INC}
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
-
- Grids;
-
- type
- // @exclude
- TGridCoord = Grids.TGridCoord;
-
- // character conversion type
- TMPHCharConvType = (cctFromAnsi, cctToAnsi);
- // character conversion table
- TMPHCharConvTable = array[0..255] of Char;
- // character conversion data storage
- TMPHCharConv = array[TMPHCharConvType] of TMPHCharConvTable;
-
- const
- // block size in file i/o
- MPH_FILEIO_BLOCKSIZE = $F000;
-
- // this message is posted to the hex editor when it should update the caret position
- CM_INTUPDATECARET = CM_BASE + $100;
-
- // this message is posted when an OnSelectionChange event is to be fired
- CM_SELECTIONCHANGED = CM_BASE + $101;
-
- (* translation tables from/to ms windows ansi (~ MS Latin-1) *)
-
- // macintosh..ms ansi conversion
- MPH_CCONV_MAC: TMPHCharConv = (
- //ansi to mac
- (#$00, #$01, #$02, #$03, #$04, #$05, #$06, #$07, #$08, #$09, #$0A, #$0B,
- #$0C, #$0D, #$0E, #$0F,
- #$10, #$11, #$12, #$13, #$14, #$15, #$16, #$17, #$18, #$19, #$1A, #$1B,
- #$1C, #$1D, #$1E, #$1F,
- #$20, #$21, #$22, #$23, #$24, #$25, #$26, #$27, #$28, #$29, #$2A, #$2B,
- #$2C, #$2D, #$2E, #$2F,
- #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$3A, #$3B,
- #$3C, #$3D, #$3E, #$3F,
- #$40, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$4A, #$4B,
- #$4C, #$4D, #$4E, #$4F,
- #$50, #$51, #$52, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$5B,
- #$5C, #$5D, #$5E, #$5F,
- #$60, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$6A, #$6B,
- #$6C, #$6D, #$6E, #$6F,
- #$70, #$71, #$72, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$7B,
- #$7C, #$7D, #$7E, #$7F,
- #$C4, #$C5, #$AB, #$C9, #$D1, #$F7, #$DC, #$E1, #$E0, #$E2, #$E4, #$E3,
- #$AC, #$B0, #$AA, #$F8,
- #$D5, #$CE, #$C3, #$CF, #$D3, #$D4, #$D2, #$DB, #$DA, #$DD, #$F6, #$F5,
- #$FA, #$F9, #$FB, #$FC,
- #$A0, #$C1, #$A2, #$A3, #$DF, #$B4, #$B6, #$A4, #$C6, #$A9, #$BB, #$C7,
- #$C2, #$AD, #$A8, #$FF,
- #$A1, #$B1, #$B2, #$B3, #$A5, #$B5, #$A6, #$B7, #$B8, #$B9, #$BC, #$C8,
- #$BA, #$BD, #$CA, #$C0,
- #$CB, #$E7, #$E5, #$CC, #$80, #$81, #$AE, #$82, #$E9, #$83, #$E6, #$E8,
- #$ED, #$EA, #$EB, #$EC,
- #$D0, #$84, #$F1, #$EE, #$EF, #$CD, #$85, #$D7, #$AF, #$F4, #$F2, #$F3,
- #$86, #$D9, #$DE, #$A7,
- #$88, #$87, #$89, #$8B, #$8A, #$8C, #$BE, #$8D, #$8F, #$8E, #$90, #$91,
- #$93, #$92, #$94, #$95,
- #$F0, #$96, #$98, #$97, #$99, #$9B, #$9A, #$D6, #$BF, #$9D, #$9C, #$9E,
- #$9F, #$FD, #$FE, #$D8
- ),
- // mac to ansi
- (#$00, #$01, #$02, #$03, #$04, #$05, #$06, #$07, #$08, #$09, #$0A, #$0B,
- #$0C, #$0D, #$0E, #$0F,
- #$10, #$11, #$12, #$13, #$14, #$15, #$16, #$17, #$18, #$19, #$1A, #$1B,
- #$1C, #$1D, #$1E, #$1F,
- #$20, #$21, #$22, #$23, #$24, #$25, #$26, #$27, #$28, #$29, #$2A, #$2B,
- #$2C, #$2D, #$2E, #$2F,
- #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$3A, #$3B,
- #$3C, #$3D, #$3E, #$3F,
- #$40, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$4A, #$4B,
- #$4C, #$4D, #$4E, #$4F,
- #$50, #$51, #$52, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$5B,
- #$5C, #$5D, #$5E, #$5F,
- #$60, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$6A, #$6B,
- #$6C, #$6D, #$6E, #$6F,
- #$70, #$71, #$72, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$7B,
- #$7C, #$7D, #$7E, #$7F,
- #$C4, #$C5, #$C7, #$C9, #$D1, #$D6, #$DC, #$E1, #$E0, #$E2, #$E4, #$E3,
- #$E5, #$E7, #$E9, #$E8,
- #$EA, #$EB, #$ED, #$EC, #$EE, #$EF, #$F1, #$F3, #$F2, #$F4, #$F6, #$F5,
- #$FA, #$F9, #$FB, #$FC,
- #$A0, #$B0, #$A2, #$A3, #$A7, #$B4, #$B6, #$DF, #$AE, #$A9, #$8E, #$82,
- #$8C, #$AD, #$C6, #$D8,
- #$8D, #$B1, #$B2, #$B3, #$A5, #$B5, #$A6, #$B7, #$B8, #$B9, #$BC, #$AA,
- #$BA, #$BD, #$E6, #$F8,
- #$BF, #$A1, #$AC, #$92, #$80, #$81, #$A8, #$AB, #$BB, #$83, #$BE, #$C0,
- #$C3, #$D5, #$91, #$93,
- #$D0, #$84, #$96, #$94, #$95, #$90, #$F7, #$D7, #$FF, #$DD, #$98, #$97,
- #$86, #$99, #$DE, #$A4,
- #$88, #$87, #$89, #$8B, #$8A, #$C2, #$CA, #$C1, #$CB, #$C8, #$CD, #$CE,
- #$CF, #$CC, #$D3, #$D4,
- #$F0, #$D2, #$DA, #$DB, #$D9, #$9B, #$9A, #$85, #$8F, #$9D, #$9C, #$9E,
- #$9F, #$FD, #$FE, #$AF
- )
- );
-
- // ebcdic cp38..ms ansi conversion
- MPH_CCONV_BCD38: TMPHCharConv = (
- //ansi to bcd (taken from recode 3.5)
- (#$00, #$01, #$02, #$03, #$37, #$2D, #$2E, #$2F, #$16, #$05, #$25, #$0B,
- #$0C, #$0D, #$0E, #$0F,
- #$10, #$11, #$12, #$13, #$3C, #$3D, #$32, #$26, #$18, #$19, #$3F, #$27,
- #$1C, #$1D, #$1E, #$1F,
- #$40, #$4F, #$7F, #$7B, #$5B, #$6C, #$50, #$7D, #$4D, #$5D, #$5C, #$4E,
- #$6B, #$60, #$4B, #$61,
- #$F0, #$F1, #$F2, #$F3, #$F4, #$F5, #$F6, #$F7, #$F8, #$F9, #$7A, #$5E,
- #$4C, #$7E, #$6E, #$6F,
- #$7C, #$C1, #$C2, #$C3, #$C4, #$C5, #$C6, #$C7, #$C8, #$C9, #$D1, #$D2,
- #$D3, #$D4, #$D5, #$D6,
- #$D7, #$D8, #$D9, #$E2, #$E3, #$E4, #$E5, #$E6, #$E7, #$E8, #$E9, #$4A,
- #$E0, #$5A, #$5F, #$6D,
- #$79, #$81, #$82, #$83, #$84, #$85, #$86, #$87, #$88, #$89, #$91, #$92,
- #$93, #$94, #$95, #$96,
- #$97, #$98, #$99, #$A2, #$A3, #$A4, #$A5, #$A6, #$A7, #$A8, #$A9, #$C0,
- #$20, #$D0, #$A1, #$07,
- #$80, #$22, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$8A, #$8B,
- #$8C, #$8D, #$8E, #$8F,
- #$90, #$77, #$2C, #$0A, #$3B, #$3E, #$1A, #$70, #$71, #$72, #$9A, #$9B,
- #$9C, #$9D, #$9E, #$9F,
- #$A0, #$15, #$73, #$74, #$75, #$76, #$6A, #$78, #$09, #$3A, #$AA, #$AB,
- #$AC, #$AD, #$AE, #$AF,
- #$B0, #$B1, #$B2, #$B3, #$B4, #$B5, #$B6, #$B7, #$B8, #$B9, #$BA, #$BB,
- #$BC, #$BD, #$BE, #$BF,
- #$23, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$CA, #$CB,
- #$CC, #$CD, #$CE, #$CF,
- #$1B, #$24, #$06, #$14, #$28, #$2B, #$21, #$17, #$51, #$52, #$DA, #$DB,
- #$DC, #$DD, #$DE, #$DF,
- #$2A, #$E1, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$29, #$EA, #$EB,
- #$EC, #$ED, #$EE, #$EF,
- #$30, #$31, #$08, #$33, #$34, #$35, #$36, #$04, #$38, #$39, #$FA, #$FB,
- #$FC, #$FD, #$FE, #$FF
- ),
- // bcd to ansi (taken from recode 3.5)
- (#$00, #$01, #$02, #$03, #$F7, #$09, #$D2, #$7F, #$F2, #$A8, #$93, #$0B,
- #$0C, #$0D, #$0E, #$0F,
- #$10, #$11, #$12, #$13, #$D3, #$A1, #$08, #$D7, #$18, #$19, #$96, #$D0,
- #$1C, #$1D, #$1E, #$1F,
- #$7C, #$D6, #$81, #$C0, #$D1, #$0A, #$17, #$1B, #$D4, #$E9, #$E0, #$D5,
- #$92, #$05, #$06, #$07,
- #$F0, #$F1, #$16, #$F3, #$F4, #$F5, #$F6, #$04, #$F8, #$F9, #$A9, #$94,
- #$14, #$15, #$95, #$1A,
- #$20, #$C1, #$C2, #$C3, #$C4, #$C5, #$C6, #$C7, #$C8, #$C9, #$5B, #$2E,
- #$3C, #$28, #$2B, #$21,
- #$26, #$D8, #$D9, #$E2, #$E3, #$E4, #$E5, #$E6, #$E7, #$E8, #$5D, #$24,
- #$2A, #$29, #$3B, #$5E,
- #$2D, #$2F, #$82, #$83, #$84, #$85, #$86, #$87, #$88, #$89, #$A6, #$2C,
- #$25, #$5F, #$3E, #$3F,
- #$97, #$98, #$99, #$A2, #$A3, #$A4, #$A5, #$91, #$A7, #$60, #$3A, #$23,
- #$40, #$27, #$3D, #$22,
- #$80, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$8A, #$8B,
- #$8C, #$8D, #$8E, #$8F,
- #$90, #$6A, #$6B, #$6C, #$6D, #$6E, #$6F, #$70, #$71, #$72, #$9A, #$9B,
- #$9C, #$9D, #$9E, #$9F,
- #$A0, #$7E, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$AA, #$AB,
- #$AC, #$AD, #$AE, #$AF,
- #$B0, #$B1, #$B2, #$B3, #$B4, #$B5, #$B6, #$B7, #$B8, #$B9, #$BA, #$BB,
- #$BC, #$BD, #$BE, #$BF,
- #$7B, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$CA, #$CB,
- #$CC, #$CD, #$CE, #$CF,
- #$7D, #$4A, #$4B, #$4C, #$4D, #$4E, #$4F, #$50, #$51, #$52, #$DA, #$DB,
- #$DC, #$DD, #$DE, #$DF,
- #$5C, #$E1, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$EA, #$EB,
- #$EC, #$ED, #$EE, #$EF,
- #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$FA, #$FB,
- #$FC, #$FD, #$FE, #$FF
- )
- );
-
- type
- // custom Exception class
- EMPHexEditor = class(Exception);
-
- (* bookmark record:<br>
- defined by pressing SHIFT+CTRL+[0..9], goto bookmark by pressing CTRL+[0..9]<br><br>
-
- - mPosition: file position<br>
- - mInCharField: cursor in character pane (True) or hex number pane
- *)
- TMPHBookmark = record
- mPosition: integer;
- mInCharField: boolean;
- end;
-
- // array of bookmarks, representing keys 0..9
- TMPHBookmarks = array[0..9] of TMPHBookmark;
-
- (* look of the editor's caret:<br>
- - ckFull: full block<br>
- - ckLeft: left line<br>
- - ckBottom: bottom line<br>
- - ckAuto: left line if @link(InsertMode), full block if overwrite,
- bottom line if ReadOnlyView
- *)
- TMPHCaretKind = (ckFull,
- ckLeft,
- ckBottom,
- ckAuto
- );
-
- (* how to show a file's content in the character pane of the editor:<br>
- - tkAsIs: leave as is (current windows code page)<br>
- - tkDos8: current dos codepage<br>
- - tkASCII: 7 bit ascii<br>
- - tkMac: macintosh charset (translation always from/to ms cp 1252 (ms latin1)!!<br>
- - tkBCD: ibm ebcdic codepage 38 (translation always from/to ms cp 1252 (ms latin1)!!<br>
- - tkCustom: custom codepage stored in @link(MPHCustomCharConv)
- *)
- TMPHTranslationKind = (tkAsIs,
- tkDos8,
- tkASCII,
- tkMac,
- tkBCD
-
- , tkCustom
-
- );
-
- (* action indicator used in @link(OnProgress) event handler:<br>
- - pkLoad: loading data<br>
- - pkSave: saving data<br>
- - pkFind: finding
- *)
- TMPHProgressKind = (pkLoad,
- pkSave, pkFind
- );
-
- (* progress event handler, used in @link(OnProgress)<br><br>
-
- - ProgressType: am i loading or saving? (see @link(TMPHProgressKind))<br>
- - aName: name of file to be load from/saved to<br>
- - Percent: current progress (0..100)<br>
- - Cancel: if set to true, the load/save procedure will abort (no meaning in Find* methods) <br>
- *)
- TMPHProgressEvent = procedure(Sender: TObject;
- const ProgressType: TMPHProgressKind;
- const aName: TFileName;
- const Percent: byte;
- var Cancel: boolean) of object;
-
- (* retrieve the "line number" to display by the application<br><br>
-
- - Number: the number to convert to text
- - OffsetText: the resulting text output
- *)
- TMPHGetOffsetTextEvent = procedure(Sender: TObject;
- const Number: int64;
- var OffsetText: string) of object;
-
- (* handler for custom search routines<br><br>
-
- - Pattern: the data to find
- - PatLength: length of the data to find
- - SearchFrom: first search position
- - SearchUntil: last search position
- - IgnoreCase: case sensitive?
- - Wilcard: Wildcard character (only used by FindWithWildcard)
- - FoundPos: result, set to -1 if data was not found
- *)
- TMPHFindEvent = procedure(Sender: TObject;
- const Pattern: PChar; const PatLength: integer;
- const SearchFrom, SearchUntil: integer;
- const IgnoreCase: boolean;
- const Wildcard: Char;
- var FoundPos: Integer) of object;
-
- // precompiled converted character table types for faster data search
- PMPHFindTable = ^TMPHFindTable;
- TMPHFindTable = array[#0..#255] of Char;
-
- //@exclude
- // flags internally used in the undo storage
- TMPHUndoFlag = (
- // kind of undo storage
- ufKindBytesChanged,
- ufKindByteRemoved,
- ufKindInsertBuffer,
- ufKindReplace,
- ufKindAppendBuffer,
- ufKindNibbleInsert,
- ufKindNibbleDelete,
- ufKindConvert,
- ufKindSelection, // store a selection
- ufKindCombined,
- ufKindAllData, // store current data and size for complete undo
- // additional information
- ufFlagByte1Changed,
- ufFlagByte2Changed,
- ufFlagModified,
- ufFlag2ndByteCol,
- ufFlagInCharField,
- ufFlagHasSelection,
- ufFlagInsertMode,
- ufFlagIsUnicode,
- ufFlagIsUnicodeBigEndian,
- ufFlagHasDescription
- );
-
- //@exclude
- // set of undo flags
- TMPHUndoFlags = set of TMPHUndoFlag;
-
- type
- // persistent color storage (contains the colors in hex editors)
- TMPHColors = class(TPersistent)
- private
- FParent: TControl;
- FOffset: TColor;
- FOddColumn: TColor;
- FEvenColumn: TColor;
- FCursorFrame: TColor;
- FNonFocusCursorFrame: TColor;
- FBackground: TColor;
- FChangedText: TColor;
- FChangedBackground: TColor;
- FCurrentOffsetBackground: TColor;
- FOffsetBackGround: TColor;
- FActiveFieldBackground: TColor;
- FCurrentOffset: TColor;
- FGrid: TColor;
-
- procedure SetOffsetBackGround(const Value: TColor);
- procedure SetCurrentOffset(const Value: TColor);
- procedure SetParent(const Value: TControl);
- procedure SetGrid(const Value: TColor);
- procedure SetBackground(const Value: TColor);
- procedure SetChangedBackground(const Value: TColor);
- procedure SetChangedText(const Value: TColor);
- procedure SetCursorFrame(const Value: TColor);
- procedure SetEvenColumn(const Value: TColor);
- procedure SetOddColumn(const Value: TColor);
- procedure SetOffset(const Value: TColor);
- procedure SetActiveFieldBackground(const Value: TColor);
- procedure SetCurrentOffsetBackground(const Value: TColor);
- procedure SetNonFocusCursorFrame(const Value: TColor);
- public
- // @exclude(constructor)
- constructor Create(Parent: TControl);
- // @exclude()
- procedure Assign(Source: TPersistent); override;
- // parent hex editor control
- property Parent: TControl read FParent write SetParent;
- published
- // background color
- property Background: TColor read FBackground write SetBackground;
- // background color of modified bytes (in overwrite mode)
- property ChangedBackground: TColor read FChangedBackground write
- SetChangedBackground;
- // foreground color of modified bytes (in overwrite mode)
- property ChangedText: TColor read FChangedText write SetChangedText;
- // color of the cursor and position frame in the second pane
- property CursorFrame: TColor read FCursorFrame write SetCursorFrame;
- // foreground color of the line offsets
- property Offset: TColor read FOffset write SetOffset;
- // foreground color of odd columns
- property OddColumn: TColor read FOddColumn write SetOddColumn;
- // foreground color of even columns
- property EvenColumn: TColor read FEvenColumn write SetEvenColumn;
- // background color of the current line in the offset pane (gutter)
- property CurrentOffsetBackground: TColor read FCurrentOffsetBackground write
- SetCurrentOffsetBackground;
- // background color of the offset pane (gutter)
- property OffsetBackGround: TColor read FOffsetBackGround write
- SetOffsetBackGround;
- // foreground color of the current line in the offset pane (gutter)
- property CurrentOffset: TColor read FCurrentOffset write SetCurrentOffset;
- // pen color of the grid
- property Grid: TColor read FGrid write SetGrid;
- // color of a cursor frame in a non-focused editor
- property NonFocusCursorFrame: TColor read FNonFocusCursorFrame write
- SetNonFocusCursorFrame;
- // background color of the active field (hex/chars)
- property ActiveFieldBackground: TColor read FActiveFieldBackground write
- SetActiveFieldBackground;
-
- end;
-
- // @exclude(stream class for internal storage/undo)
- TMPHMemoryStream = class(TMemoryStream)
- private
-
- procedure CheckBounds(const AMax: Integer);
- function PointerAt(const APosition: Integer): Pointer;
- protected
-
- public
-
- {$IFDEF FASTACCESS}
- function GetAddress(const Index, Count: integer): PByte;
- {$ENDIF}
- procedure ReadBufferAt(var Buffer; const APosition, ACount: Integer);
- procedure WriteBufferAt(const Buffer; const APosition, ACount: Integer);
- procedure Move(const AFromPos, AToPos, ACount: Integer);
- procedure TranslateToAnsi(const FromTranslation: TMPHTranslationKind; const
- APosition, ACount: integer);
- procedure TranslateFromAnsi(const ToTranslation: TMPHTranslationKind; const
- APosition, ACount: integer);
- function GetAsHex(const APosition, ACount: integer; const SwapNibbles:
- Boolean): string;
- end;
-
- //@exclude
- // undo storage implementation
- TMPHUndoStorage = class;
-
- //@exclude
- // offset format flags
- TMPHOffsetFormatFlag = (offCalcWidth,
- // calculate minwidth depending on data size (width field = '-')
- offCalcRow,
- // calculate _BytesPerUnit depending on bytes per row (=real line numbers)
- offCalcColumn, // " bytes per column (= column numbers)
- offBytesPerUnit // use BytesPerUnit property
- );
-
- //@exclude
- // set of the above flags
- TMPHOffsetFormatFlags = set of TMPHOffsetFormatFlag;
-
- //@exclude
- // offset format record
- TMPHOffsetFormat = record
- Format: string; // format as string
- Prefix,
- Suffix: string; // splitted format
- MinWidth: integer; // min length of value (zero padded on the left)
- Flags: // auto calculation flags
- TMPHOffsetFormatFlags;
- Radix, // radix (base) of display (2..16)
- _BytesPerUnit: byte; // length of one unit (1 Byte...BytesPerRow Bytes)
- end;
-
- (* owner draw event type. parameters:<br><br>
- - Sender: the hex editor<br>
- - ACanvas: the editor's canvas<br>
- - ACol, ARow: the position to be drawn<br>
- - AWideText: the text to be drawn<br>
- - ARect: the cell rectangle<br>
- - ADefaultDraw: if set to True (default), default drawing isperformed after the event handler returns.
- if set to false, the event handler must do all cell painting.
- *)
- TMPHDrawCellEvent = procedure(Sender: TObject; ACanvas: TCanvas; ACol, ARow:
- Integer; var AWideText: WideString; ARect: TRect; var ADefaultDraw: Boolean)
- of object;
-
- // protected ancestor of the hex editor components
-
- TCustomMPHexEditor = class(TCustomGrid)
-
- private
-
- FIntLastHexCol: integer;
- FFindTable,
- FFindTableI: TMPHFindTable;
- FIsMaxOffset: boolean;
- FFindProgress: boolean;
- FBlockSize: Integer;
- FSepCharBlocks: boolean;
- FOnGetOffsetText: TMPHGetOffsetTextEvent;
- FFixedFileSize: boolean;
- FCharWidth,
- FCharHeight: integer;
- FBookmarkImageList: TImageList;
- FInsertModeOn: boolean;
- FCaretBitmap: TBitmap;
- FColors: TMPHColors;
- FBytesPerRow: integer;
- FOffSetDisplayWidth: integer;
- FBytesPerRowDup: integer;
- FDataStorage: TMPHMemoryStream;
- FSwapNibbles: integer;
- FFocusFrame: boolean;
- FIsFileReadonly: boolean;
- FBytesPerCol: integer;
- FPosInCharField,
- FLastPosInCharField: boolean;
- FFileName: string;
- FModifiedBytes: TBits;
- FBookmarks: TMPHBookmarks;
- FSelStart,
- FSelPosition,
- FSelEnd: integer;
- FSelBeginPosition: integer;
- FTranslation: TMPHTranslationKind;
- FCaretKind: TMPHCaretKind;
- FReplaceUnprintableCharsBy: char;
- FAllowInsertMode: boolean;
- FWantTabs: boolean;
- FReadOnlyView: boolean;
- FHideSelection: boolean;
- FGraySelOnLostFocus: boolean;
- FOnProgress: TMPHProgressEvent;
- FMouseDownCol,
- FMouseDownRow: integer;
- FShowDrag: boolean;
- FDropCol,
- FDropRow: integer;
- FOnInvalidKey,
- FOnTopLeftChanged: TNotifyEvent;
-
- FDrawGridLines: boolean;
- FDrawGutter3D: boolean;
- FGutterWidth: integer;
- FOffsetFormat: TMPHOffsetFormat;
- FSelectionPossible: boolean;
- FBookmarkBitmap: TBitmap;
- FCursorList: array of integer;
- FHasCustomBMP: boolean;
- FStreamFileName: string;
- FHasFile: boolean;
- FMaxUndo: integer;
- FHexChars: array[0..15] of char;
- FHexLowerCase: boolean;
- FOnChange: TNotifyEvent;
- FShowRuler: boolean;
- FBytesPerUnit: Integer;
- FRulerBytesPerUnit: Integer;
- FOnSelectionChanged: TNotifyEvent;
- FSelectionChangedCount: Integer;
- FShowPositionIfNotFocused: Boolean;
- FOffsetHandler: Boolean;
- FUsedRulerBytesPerUnit: Integer;
- FIsSelecting: boolean;
- FMouseUpCanResetSel: boolean;
- FUndoStorage: TMPHUndoStorage;
- FUnicodeCharacters: Boolean;
- FUnicodeBigEndian: Boolean;
- FMaskedChars: TSysCharSet;
-
- FDrawDataPosition: integer;
- FOnDrawCell: TMPHDrawCellEvent;
-
- FOnBookmarkChanged: TNotifyEvent;
-
- FIsDrawDataSelected: boolean;
-
- FOnWildcardFind: TMPHFindEvent;
- FOnFind: TMPHFindEvent;
- {$IFDEF FASTACCESS}
- FSetDataSizeFillByte: Byte;
- {$ENDIF}
- FRulerNumberBase: byte;
- property Color;
-
- function IsInsertModePossible: boolean;
-
- function IsFileSizeFixed: boolean;
- procedure InternalErase(const KeyWasBackspace: boolean; const UndoDesc:
- string = '');
- procedure SetReadOnlyView(const Value: boolean);
- procedure SetCaretKind(const Value: TMPHCaretKind);
- procedure SetFocusFrame(const Value: boolean);
- procedure SetBytesPerColumn(const Value: integer);
- procedure SetSwapNibbles(const Value: boolean);
- function GetSwapNibbles: boolean;
- function GetBytesPerColumn: integer;
- procedure SetOffsetDisplayWidth;
- procedure SetColors(const Value: TMPHColors);
- procedure SetReadOnlyFile(const Value: boolean);
- procedure SetTranslation(const Value: TMPHTranslationKind);
- procedure SetModified(const Value: boolean);
- procedure SetChanged(DataPos: integer; const Value: boolean);
- procedure SetFixedFileSize(const Value: boolean);
- procedure SetAllowInsertMode(const Value: boolean);
- function GetInsertMode: boolean;
- procedure SetWantTabs(const Value: boolean);
- procedure SetHideSelection(const Value: boolean);
- procedure SetGraySelectionIfNotFocused(const Value: boolean);
- function CalcColCount: integer;
- function GetLastCharCol: integer;
- function GetPropColCount: integer;
- function GetPropRowCount: integer;
- function GetMouseOverSelection: boolean;
- function CursorOverSelection(const X, Y: integer): boolean;
- function MouseOverFixed(const X, Y: integer): boolean;
- procedure AdjustBookmarks(const From, Offset: integer);
- procedure IntSetCaretPos(const X, Y, ACol: integer);
- procedure TruncMaxPosition(var DataPos: integer);
- procedure SetSelection(DataPos, StartPos, EndPos: integer);
- function GetCurrentValue: integer;
- procedure SetInsertMode(const Value: boolean);
- function GetModified: boolean;
- //function GetDataPointer: Pointer;
- procedure SetBytesPerRow(const Value: integer);
- procedure SetMaskChar(const Value: char);
- procedure SetAsText(const Value: string);
- procedure SetAsHex(const Value: string);
- function GetAsText: string;
- function GetAsHex: string;
- procedure WMTimer(var Msg: TWMTimer); message WM_TIMER;
- // show or hide caret depending on row/col in view
- procedure CheckSetCaret;
- // get the row according to the given buffer position
- function GetRow(const DataPos: integer): integer;
- // invalid key pressed (in ebcdic)
- procedure WrongKey;
-
- // create an inverting caret bitmap
- procedure CreateCaretGlyph;
- // get start of selection
- function GetSelStart: integer;
- // get end of selection
- function GetSelEnd: integer;
- // get selection count
- function GetSelCount: integer;
- // set selection start
- procedure SetSelStart(aValue: integer);
- // set selection end
- procedure SetSelEnd(aValue: integer);
- // position the caret in the given field
- procedure SetInCharField(const Value: boolean);
- // is the caret in the char field ?
- function GetInCharField: boolean;
- // insert a buffer (internal)
- procedure InternalInsertBuffer(Buffer: PChar; const Size, Position:
- integer);
- // append some data (int)
- procedure InternalAppendBuffer(Buffer: PChar; const Size: integer);
- // store the caret properties
- procedure InternalGetCurSel(var StartPos, EndPos, ACol, ARow: integer);
- // delete data
- procedure InternalDelete(StartPos, EndPos, ACol, ARow: integer);
- // delete one half byte
- function InternalDeleteNibble(const Pos: integer;
- const HighNibble: boolean): boolean;
- // insert half byte
- function InternalInsertNibble(const Pos: integer; const HighNibble:
- boolean): boolean;
- // used by nibble functions
- function CreateShift4BitStream(const StartPos: integer; var FName:
- TFileName): TFileStream;
- // convert a given amount of data from ansi to something different and vice versa
- procedure InternalConvertRange(const aFrom, aTo: integer; const aTransFrom,
- aTransTo: TMPHTranslationKind);
- // move data in buffer to a different position
- procedure MoveFileMem(const aFrom, aTo, aCount: integer);
- function GetBookmark(Index: byte): TMPHBookmark;
- procedure SetBookmark(Index: byte; const Value: TMPHBookmark);
- procedure SetBookmarkVals(const Index: byte; const Position: integer; const
- InCharField: boolean);
- procedure SetDrawGridLines(const Value: boolean);
- procedure SetGutterWidth(const Value: integer);
- // images have changed
- procedure BookmarkBitmapChanged(Sender: TObject);
- procedure SetBookmarkBitmap(const Value: TBitmap);
-
- function GetVersion: string;
- procedure SetVersion(const Value: string);
-
- // free alloc'd memory of one of the storage streams;
- procedure FreeStorage(FreeUndo: boolean = False);
- function GetCanUndo: boolean;
- function GetCanRedo: boolean;
- function GetUndoDescription: string;
- function GetOffsetFormat: string;
- procedure SetOffsetFormat(const Value: string);
- // generate offset format
- procedure GenerateOffsetFormat(Value: string);
- procedure SetHexLowerCase(const Value: boolean);
- procedure SetDrawGutter3D(const Value: boolean);
- procedure SetShowRuler(const Value: boolean);
- procedure SetBytesPerUnit(const Value: integer);
- procedure SetRulerString;
- procedure CheckSelectUnit(var AStart, AEnd: Integer);
- procedure SetRulerBytesPerUnit(const Value: integer);
- procedure SetShowPositionIfNotFocused(const Value: Boolean);
- function GetDataAt(Index: integer): Byte;
- procedure SetDataAt(Index: integer; const Value: Byte);
- procedure SetUnicodeCharacters(const Value: Boolean);
- procedure SetUnicodeBigEndian(const Value: Boolean);
- function GetPositionAtCursor(const ACol, ARow: integer): integer;
- function GetIsCharFieldCol(const ACol: integer): Boolean;
- procedure SetDataSize(const Value: integer);
- procedure SetBlockSize(const Value: Integer);
- procedure SetSepCharBlocks(const Value: boolean);
- procedure SetFindProgress(const Value: boolean);
- procedure SetRulerNumberBase(const Value: byte);
- procedure SetMaskedChars(const Value: TSysCharSet);
- {+}
- {.$IFDEF BCB}
- protected
- // bcb seems to need overwritten abstract methods for dynamically created
- // controls (this method is never called in TMPHexEditor/Ex)
- procedure DrawCell(ACol, ARow: Longint; ARect: TRect; AState: TGridDrawState); override;
- {.$ENDIF}
- {+.}
- protected
- // @exclude()
- FRulerString: string;
- // @exclude()
- FRulerCharString: string;
-
- // @exclude(used by TMPHexEditorEx for internal drag 'n' drop)
- FFixedFileSizeOverride: boolean;
- // @exclude(used by TMPHexEditorEx for internal undo changing)
- FModified: boolean;
- // @exclude(overwrite mouse wheel for zooming)
- function DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): boolean;
- override;
- // @exclude(overwrite mouse wheel for zooming)
- function DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): boolean;
- override;
- // @exclude(actually used bytes per unit)
- property UsedRulerBytesPerUnit: Integer read FUsedRulerBytesPerUnit;
- // @exclude(True: cells are currently to be selected)
- property IsSelecting: boolean read FIsSelecting;
- // @exclude(True: MouseUp resets selection)
- property MouseUpCanResetSel: boolean read FMouseUpCanResetSel write
- FMouseUpCanResetSel;
- // @exclude(memory stream which contains the undo/redo data)
- property UndoStorage: TMPHUndoStorage read FUndoStorage;
- // @exclude(stream that contains the data)
- property DataStorage: TMPHMemoryStream read FDataStorage;
- // @exclude(fire OnSelectionChange)
- procedure SelectionChanged; virtual;
- // @exclude(set a new selection)
- procedure NewSelection(SelFrom, SelTo: integer);
- // @exclude(get the current mouse position)
- function CheckMouseCoord(var X, Y: integer): TGridCoord;
- // @exclude(assure the value is a multiple of FBytesPerUnit)
- procedure CheckUnit(var AValue: Integer);
- // call changed on every undo creation for OnChange event
- procedure Changed; virtual;
- // returns the drop file position after a drag'n'drop operation
- function DropPosition: integer;
- // copy a stream to a second one and fire the OnProgress handler
- procedure Stream2Stream(strFrom, strTo: TStream; const Operation:
- TMPHProgressKind; const Count: integer = -1);
- (* allows descendants to take special action if contents are to be saved
- to the file from where the data was load *)
- procedure PrepareOverwriteDiskFile; virtual;
- // store the current Cursor and set it to crHourGlass (see also @link(OldCursor))
- procedure WaitCursor;
- // reset the Cursor to the previous value (see also @link(WaitCursor))
- procedure OldCursor;
- // @exclude(override paint)
- procedure Paint; override;
- // @exclude(view changed)
- procedure TopLeftChanged; override;
- // adjust cell widths/heigths depending on font, offset format, bytes per row/column...
- procedure AdjustMetrics;
- // get the size of the contained data
- function GetDataSize: integer;
- // @exclude(calculate the grid sizes)
- procedure CalcSizes;
- // @exclude(select one cell)
- function SelectCell(ACol, ARow: longint): boolean; override;
- // @exclude(get the data position depending on col and row)
- function GetPosAtCursor(const aCol, aRow: integer): integer;
- // @exclude(vice versa)
- function GetCursorAtPos(const aPos: integer; const aChars: boolean):
- TGridCoord;
- // @exclude(get the column of the other field (hex<->char))
- function GetOtherFieldCol(const aCol: integer): integer;
- // @exclude(get the column of the other field (hex<->char))
- function GetOtherFieldColCheck(const aCol: integer): integer;
- // @exclude(can the cell be selected ?)
- function CheckSelectCell(aCol, aRow: integer): boolean;
- // @exclude(char message handler)
- procedure WMChar(var Msg: TWMChar); message WM_CHAR;
- // @exclude(posted message to update the caret position)
- procedure CMINTUPDATECARET(var Msg: TMessage); message CM_INTUPDATECARET;
- // @exclude(posted message to fire an OnSelectionChanged event)
- procedure CMSelectionChanged(var Msg: TMessage); message
- CM_SELECTIONCHANGED;
- // @exclude(for shortcuts)
- procedure WMGetDlgCode(var Msg: TWMGetDlgCode); message WM_GETDLGCODE;
- // @exclude(readjust grid sizes after font has changed)
- procedure CMFontChanged(var Message: TMessage); message CM_FONTCHANGED;
- // @exclude(change a byte at the given position)
- procedure IntChangeByte(const aOldByte, aNewByte: byte;
- aPos, aCol, aRow: integer; const UndoDesc: string = '');
- // @exclude(change two bytes at the given position)
- procedure IntChangeWideChar(const aOldChar, aNewChar: WideChar; aPos, aCol,
- aRow: integer; const UndoDesc: string = '');
- // @exclude(keydown handler)
- procedure KeyDown(var Key: word; Shift: TShiftState); override;
- // @exclude(keyup handler)
- //procedure KeyUp(var Key: word; Shift: TShiftState); override;
- // @exclude(has this byte been modified ?)
- function HasChanged(aPos: integer): boolean;
- // @exclude(redraw some lines)
- procedure RedrawPos(aFrom, aTo: integer);
- // @exclude(make a selection)
- procedure Select(const aCurCol, aCurRow, aNewCol, aNewRow: integer);
- // @exclude(mouse down handler)
- procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y:
- integer); override;
- // @exclude(mouse move handler)
- procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
- // @exclude(mouse up handler)
- procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
- override;
- // @exclude(is undo record creation possible?)
- function CanCreateUndo(const aKind: TMPHUndoFlag; const aCount, aReplCount:
- integer): Boolean; virtual;
- // @exclude(add an undo to the undo buffer)
- procedure CreateUndo(const aKind: TMPHUndoFlag; const aPos, aCount,
- aReplCount: integer; const sDesc: string = '');
- // @exclude(after loading)
- procedure Loaded; override;
- // @exclude(override CreateWnd)
- procedure CreateWnd; override;
- // @exclude(wm_setfocus handler)
- procedure WMSetFocus(var Msg: TWMSetFocus); message WM_SETFOCUS;
- // @exclude(wm_killfocus handler)
- procedure WMKillFocus(var Msg: TWMKillFocus); message WM_KILLFOCUS;
- // @exclude(wm_vscroll handler)
- procedure WMVScroll(var Msg: TWMVScroll); message WM_VSCROLL;
- // @exclude(wm_hscroll handler)
- procedure WMHScroll(var Msg: TWMHScroll); message WM_HSCROLL;
- // @exclude(resize the control)
- procedure Resize; override;
- // @exclude(store bitmap ? (its set to true, if a custom bitmap has been stored in BookmarkBitmap))
- function HasCustomBookmarkBitmap: boolean;
- // number of bytes to show in each row
- property BytesPerRow: integer read FBytesPerRow write SetBytesPerRow;
- // if set to True, the find* routines also fire OnProgress events (default is False)
- property FindProgress: boolean read FFindProgress write SetFindProgress
- default False;
- // number of bytes to show in each column
- property BytesPerColumn: integer read GetBytesPerColumn write
- SetBytesPerColumn default 2;
- (* translation kind of the data (used to show characters on and to handle key presses in the char pane),
- (see also @link(TMPHTranslationKind))
- *)
- property Translation: TMPHTranslationKind read FTranslation write
- SetTranslation;
- (* offset display ("line numbers") format, in the form<br>
- [r|c|<HEXNUM>%][-|<HEXNUM>!]<HEXNUM>:[Prefix]|[Suffix]<br>
- (<HEXNUM> means a number in hexadecimal format (without prefix/suffix))<br><br>
- - first field (up to the percent sign):<br>
- <ul>
- <li>sets the "bytes per unit field" of the offset display format</li>
- <li>if it's set to 1, each row offset displays the data position in bytes</li>
- <li>if it's set to 2, each row offset displays the data position in words</li>
- <li>if it's set to 4, each row offset displays the data position in dwords</li>
- <li>if it's set to "r", each row offset displays the current row number (1st row=0,
- see also @link(BytesPerRow))</li>
- <li>if it's set to "c", each row offset displays the current column number (1st column=0,
- see also @link(BytesPerColumn))</li>
- <li>if this field is omitted, bytes per unit is set to the value of the
- @link(RulerBytesPerUnit) property</li>
- </ul><br>
- - second field (up to the exclamation mark):<br>
- <ul>
- <li>sets the minimum width of the number part, if the number is shorter, it will be padded
- by '0' chars at the left</li>
- <li>if this field reads -!, the the minimum width is automatically set to the longest number
- that can appear in the editor (the data's size)</li>
- <li>if this field is omitted, the minimum width is set to 1</li>
- </ul><br>
- - third field (up to the colon):<br>
- <ul>
- <li>sets the radix (base) of the offset format in hex notation</li>
- <li>set this to '10' (without quotes) for hexadecimal offset display, set it to '08' for
- octal and to '0a' for decimal offset display</li>
- <li>this field cannot be omitted, but the whole format string my be blank to avoid the display of
- offset identifiers</li>
- </ul></br>
- - fourth field (up to the pipe ('|') char):<br>
- <ul>
- <li>the prefix that is put in front of the "number" string (e.g. '0x' or '$' to show that numbers are in hex format)
- </li><li>this field may be omitted (but not the pipe char!)</li>
- </ul><br>
- - fifth (and last) field:<br>
- <ul>
- <li>the suffix to put after the "number string" (e.g. 'h' to show hex numbers)</li>
- <li>this field may be omitted</…