/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

  1. (*
  2. TMPHexEditor v 02-06-2006<br>
  3. @author((C) markus stephany, vcl[at]mirkes[dot]de, all rights reserved.)
  4. @abstract(TMPHexEditor displays and edits binary files in hexadecimal notation)
  5. @lastmod(02-06-2006)
  6. credits to :<br><br>
  7. - John Hamm, http://users.snapjax.com/john/<br><br>
  8. - Christophe Le Corfec for introducing the EBCDIC format and the nice idea about
  9. half byte insert/delete<br><br>
  10. - Philippe Chessa for his suggestions about AsText, AsHex and better support for
  11. the french keyboard layout<br><br>
  12. - Daniel Jensen for octal offset display and the INS-key recognition stuff<br><br>
  13. - Shmuel Zeigerman for introducing more flexible offset display formats<br><br>
  14. - Vaf, http://carradio.al.ru for reporting missing delver.inc and suggesting OnChange<br><br>
  15. - Eugene Tarasov for reporting that setting the BytesPerColumn value to 4 at design
  16. time didn't work<br><br>
  17. - FuseBurner for BytesPerUnit/RulerBytesPerUnit related suggestions<br><br>
  18. - Motzi for SyncView/ShowPositionIfNotFocused related suggestions<br><br>
  19. - Martin Hsiao for bcb compatibility and reporting some bugs when moving cursor beyond eof<br><br>
  20. - Miyu for delphi 7 defines<br><br>
  21. - Nils Hoyer for bcb testing and his help on creating a BCB6 package<br><br>
  22. - Skamnitsly S.V for reporting a bug when doubleclicking the ruler bar<br><br>
  23. - Pete Fraser for reporting problems with array properties under BCB<br><br>
  24. - Andrew Novikov for bug reports and suggestions<br><br>
  25. - Al for bug reports<br><br>
  26. - Dieter Köhler for reporting the delphi vcl related CanFocus bug<br><br>
  27. - Piotr Likus for reporting a cardinal&lt;-&gt;integer related bug in the Undo method<br><br>
  28. - Marc Girod for bug reports<br><br>
  29. - Gerd Schwartz for reporting a bug with printing headers/footers that contain long texts
  30. (MPHexEditorEx only)<br><br>
  31. - Bogdan Ureche for reporting an integer overflow when moving the cursor over a large selection<br><br>
  32. <h3>history:</h3>
  33. <p><ul>
  34. <li>v 02-06-2006: february 06, 2006<br><br>
  35. - changed key handling (VK_INSERT, no action if a control key is pressed)<br>
  36. - fixed an access violation in CursorOverSelection when moving the cursor over
  37. a large selection<br>
  38. - added conditional defines for delphi 8 and delphi 2005 in MPDELVER.INC</br>
  39. - removed FastPointer property, use the GetFastPointer function instead (it checks boundaries)<br><br></li>
  40. <li>v 05-23-2005: may 23, 2005<br><br>
  41. - fixed an access violation in the undo storage code when reallocating
  42. memory during storing of undo data<br>
  43. - the secondary focus frame on the hex pane now is painted around the
  44. whole actual data value (4 digits if unicode, 2 digits otherwise)<br>
  45. - added procedure @link(CenterCursorPosition)<br>
  46. - in @link(InsertBuffer) and @link(Replace) now the position parameter
  47. is checked<br><br></li>
  48. <li>v 12-29-2004: december 29, 2004<br><br>
  49. - initialized Result to '' in some string functions/methods to avoid
  50. non empty Result vars at function startup due to compiler
  51. optimizations (particularly on d4), e.g. printing did not work
  52. correctly under d4<br>
  53. - updated some of the sample projects (fixed the broken bcb6 sample,
  54. added printing to the hex viewer and the bcb6 editor sample) <br><br></li>
  55. <li>v 12-28-2004: december 28, 2004<br><br>
  56. - changed the progress event calling part in @link(Find) and
  57. @link(FindWithWildcard) to avoid a division by zero error when working
  58. on files &lt; 500 bytes<br><br></li>
  59. <li>v 12-21-2004: december 21, 2004<br><br>
  60. - changed @link(PrepareFindReplaceData) to avoid an exception when
  61. the string parameter is empty<br><br></li>
  62. <li>v 11-12-2004: november 12, 2004<br><br>
  63. - changed mouse selection in insert mode, now it's more text
  64. editor-like<br>
  65. - @link(Undo) and @link(Redo) disabled when @link(ReadonlyView)
  66. is True<br>
  67. - some small other modifications<br>
  68. <br><br></li>
  69. <li>v 10-26-2004: october 26, 2004<br><br>
  70. - fixed a typecasting bug in the Undo method (integer overflow)<br>
  71. - added some utility functions for unsigned int64 arithmetics (@link(AddU64), @link(TryAddU64),
  72. @link(SubtractU64), @link(TrySubtractU64), @link(MultiplyU64), @link(TryMultiplyU64),
  73. @link(DivideU64), @link(TryDivideU64), @link(ModuloU64), @link(TryModuloU64))
  74. <br><br></li>
  75. <li>v 08-29-2004: august 29, 2004<br><br>
  76. - Added @link(ActiveFieldBackground) color property<br><br></li>
  77. <li>v 08-14-2004: august 14, 2004<br><br>
  78. - the caret was not set properly when switching from
  79. hex to char pane if no data was in the editor <br>
  80. - Added @link(MaskedChars) property<br><br></li>
  81. <li>v 06-15-2004: june 15, 2004<br><br>
  82. - Added @link(DrawDataPosition) and @link(IsDrawDataSelected) properties <br>
  83. - changes in drawing/invalidating to avoid unnecessary painting <br>
  84. - OnMouseDown is now called also if offset pane or ruler are clicked <br>
  85. - if @link(BytesPerUnit) is changed, the selection is reset
  86. if (SelCount mod BytesPerUnit) &lt;&gt; 0 <br>
  87. - if @link(CaretKind) is ckAuto, the caret is a bottom line if
  88. @link(ReadOnlyView) is True<br><br></li>
  89. <li>v 06-10-2004: june 10, 2004<br><br>
  90. - added @link(RulerNumberBase) property <br>
  91. - overwritten CanFocus method due to vcl bug (see
  92. <a href="http://info.borland.com/devsupport/delphi/fixes/delphi4/vcl.html">
  93. http://info.borland.com/devsupport/delphi/fixes/delphi4/vcl.html</a>,
  94. ref 279<br><br></li>
  95. <li>v 06-07-2004: june 07, 2004<br><br>
  96. - fixed a crash ("Grid index out of range") when switching from
  97. unicode <br>
  98. - @link(SyncView) modified to be able to synchronize the view
  99. of editors with different data sizes/layouts, also with offset <br>
  100. - on changing TopRow/LeftCol the caret is repositionned <br>
  101. - overwritten mouse wheel handling to allow page scrolling <br>
  102. - manual handling of MaskChar property streaming due to bug reports
  103. ("Invalid Property Value")<br><br></li>
  104. <li>v 05-30-2004: may 30, 2004<br><br>
  105. - fixed broken CanOpenFile routine (files were always marked read-only)<br><br></li>
  106. <li>v 05-27-2004: may 27, 2004<br><br>
  107. - added @link(IsMaxOffset) property <br>
  108. - the control gets focused when the mouse is clicked even when
  109. the mouse is over the selection<br><br></li>
  110. <li>v 05-13-2004: may 13, 2004<br><br>
  111. - @link(OnDrawCell) is now also called for the top left cell<br>
  112. - setting @link(UnicodeChars) to False now correctly sets
  113. @link(BytesPerUnit) to 1 <br><br></li>
  114. <li>v 04-18-2004: april 18, 2004<br><br>
  115. - parameters aBuffer and bBuffer were interchanged in the
  116. CopyMemory call in @link(TranslateBufferFromAnsi)<br>
  117. - @link(GetOffsetString) can now be called in @link(OnGetOffsetText)
  118. without crashing (infinite recursion = stack overflow) <br><br></li>
  119. <li>v 01-08-2004: january 08, 2004<br><br>
  120. - added some explicit pointer typecasts for {$T+} compatibility<br>
  121. - removed FindTable and FindTableI properties under BCB (doesn't
  122. compile) <br><br></li>
  123. <li>v 12-16-2003: december 16, 2003<br><br>
  124. - Setting the @link(DataSize) property is now undoable<br>
  125. - Added the public @link(SetDataSizeFillByte) property to be able to control
  126. what byte is used to enlarge the data<br>
  127. - Now checking @link(NoSizeChange) before allowing to set @link(DataSize)<br>
  128. - CreateUndo is no longer a function, but a procedure. Now an
  129. exception is raised when no undo record can be created <br><br></li>
  130. <li>v 12-10-2003: december 10, 2003<br><br>
  131. - Renamed OnLoadSaveProgress to @link(OnProgress)<br>
  132. - Added property @link(FindProgress)<br>
  133. - Added custom find methods (@link(OnFind), @link(OnWildcardFind)<br>
  134. - @link(Find) and @link(FindWithWildcard) speeded up by using
  135. precompiled character tables<br>
  136. - @link(Find) and @link(FindWithWildcard) now also fire the @link(OnProgress) event
  137. if @link(FindProgress) is set to true<br>
  138. - fixed a bug in mouse handling (weird selection or line offsets when
  139. doublecklicking ruler bar/offset panel) <br>
  140. - modified selectioncode to better support double byte selection (unicode) <br><br></li>
  141. <li>v 09-24-2003: september 24, 2003<br><br>
  142. - modified the BCB6 package<br><br></li>
  143. <li>v 09-09-2003: september 09, 2003<br><br>
  144. - changed some constants, classes and types from MPTH... to MPH...<br>
  145. - changed MPHCustTransFieldFrom/To to @link(MPHCustomCharConv)<br>
  146. - @link(BytesPerBlock) and @link(SeparateBlocksInCharField) properties added<br>
  147. - @link(DataSize) property is writeable now<br>
  148. - Page down key now also reaches the last row<br>
  149. - added @link(OnGetOffsetText) property<br>
  150. - added @link(AddSelectionUndo) procedure<br>
  151. - added defines for delphi7, renamed delver.inc to mpdelver.inc<br>
  152. - added wildcard search (@link(FindWithWildcard))<br>
  153. - added @link(SeekToEOF)<br>
  154. - changed keyboard handling, so OnKeyDown should work better<br>
  155. - added @link(GotoBookmark) method to set cursor to a bookmarked position<br>
  156. - added @link(OnBookmarkChanged) property<br>
  157. - support for unsigned int64 radix conversions<br>
  158. - @link(Replace) method added<br><br></li>
  159. <li>v 07-05-2003: july 05, 2003<br><br>
  160. - better handling of odd sized files when BytesPerUnit &lt;&gt; 1<br>
  161. - added support for pasting clipboard data in fixed filesize mode in @link(TMPHexEditorEx)<br>
  162. - added RegEdit_HexData clipboard support in @link(TMPHexEditorEx)<br><br></li>
  163. <li>v 05-25-2003-b: may 25, 2003<br><br>
  164. - fixed a bug (moving the cursor beyond eof)<br><br></li>
  165. <li>v 05-25-2003: may 25, 2003<br><br>
  166. - added some kind of ownerdraw (see @link(OnDrawCell))<br><br></li>
  167. <li>v 05-20-2003: may 20, 2003<br><br>
  168. - renamed, added and changed some methods, classes and properties<br>
  169. - fixed some bugs in the ruler display (e.g. when BytesPerRow is
  170. changed)<br>
  171. - fixed some bugs when BytesPerUnit &lt;&gt; 1<br>
  172. - added some unicode support (@link(UnicodeChars) and
  173. @link(UnicodeBigEndian))<br>
  174. - fixed some half byte (nibble) related bugs<br><br></li>
  175. <li>v 05-17-2003: may 17, 2003<br><br>
  176. - added @link(DisplayStart) and @link(DisplayEnd) functions to retrieve
  177. the data bounds currently displayed<br>
  178. - added @link(BytesPerUnit) and @link(RulerBytesPerUnit) properties to
  179. treat words/dwords/qwords as a unit<br>
  180. - added @link(SyncView) procedure and @link(OnSelectionChanged)
  181. property to synchronize position and selection with another
  182. editor<br>
  183. - added @link(ShowPositionIfNotFocused) property to show the current
  184. position if the editor is not focused<br><br></li>
  185. <li>v 10-25-2002: october 25, 2002<br><br>
  186. - corrected the BytesPerColumn default value<br><br></li>
  187. <li>v 08-18-2002: august 18, 2002<br><br>
  188. - modified painting and selection<br>
  189. - implemented an additional ruler bar at the top<br>
  190. - new properties: @link(ShowRuler), @link(DrawGutter3D)<br><br></li>
  191. <li>v 08-12-2002: august 12, 2002<br><br>
  192. - modified Changed calls to get correct Modified property in
  193. OnChange handler<br><br></li>
  194. <li>v 08-09-2002: august 09, 2002<br><br>
  195. - included missing include file delver.inc<br>
  196. - added OnChange event<br><br></li>
  197. <li>v 07-21-2002: july 21, 2002<br><br>
  198. too many changes to mention here (completely rewritten, basic and advanced versions
  199. TMPHexEditor and TMPHexEditorEx), plz read the documentation included with this
  200. package for more information</li>
  201. </ul></p>
  202. *)
  203. unit MPHexEditor;
  204. {$R *.res}
  205. {.$DEFINE TINYHEXER}// don't define this!
  206. {$DEFINE FASTACCESS} // if this is defined, direct access to the stream memory is given
  207. (* define this if you want to have the old savetostream behaviour
  208. (clear target stream before copying data).
  209. if it is undef'd, do not clear the target stream
  210. (just copy the editor data to the stream) *)
  211. {.$DEFINE OLD_STREAM_OUT}
  212. {$I MPDELVER.INC}
  213. interface
  214. uses
  215. Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
  216. Grids;
  217. type
  218. // @exclude
  219. TGridCoord = Grids.TGridCoord;
  220. // character conversion type
  221. TMPHCharConvType = (cctFromAnsi, cctToAnsi);
  222. // character conversion table
  223. TMPHCharConvTable = array[0..255] of Char;
  224. // character conversion data storage
  225. TMPHCharConv = array[TMPHCharConvType] of TMPHCharConvTable;
  226. const
  227. // block size in file i/o
  228. MPH_FILEIO_BLOCKSIZE = $F000;
  229. // this message is posted to the hex editor when it should update the caret position
  230. CM_INTUPDATECARET = CM_BASE + $100;
  231. // this message is posted when an OnSelectionChange event is to be fired
  232. CM_SELECTIONCHANGED = CM_BASE + $101;
  233. (* translation tables from/to ms windows ansi (~ MS Latin-1) *)
  234. // macintosh..ms ansi conversion
  235. MPH_CCONV_MAC: TMPHCharConv = (
  236. //ansi to mac
  237. (#$00, #$01, #$02, #$03, #$04, #$05, #$06, #$07, #$08, #$09, #$0A, #$0B,
  238. #$0C, #$0D, #$0E, #$0F,
  239. #$10, #$11, #$12, #$13, #$14, #$15, #$16, #$17, #$18, #$19, #$1A, #$1B,
  240. #$1C, #$1D, #$1E, #$1F,
  241. #$20, #$21, #$22, #$23, #$24, #$25, #$26, #$27, #$28, #$29, #$2A, #$2B,
  242. #$2C, #$2D, #$2E, #$2F,
  243. #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$3A, #$3B,
  244. #$3C, #$3D, #$3E, #$3F,
  245. #$40, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$4A, #$4B,
  246. #$4C, #$4D, #$4E, #$4F,
  247. #$50, #$51, #$52, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$5B,
  248. #$5C, #$5D, #$5E, #$5F,
  249. #$60, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$6A, #$6B,
  250. #$6C, #$6D, #$6E, #$6F,
  251. #$70, #$71, #$72, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$7B,
  252. #$7C, #$7D, #$7E, #$7F,
  253. #$C4, #$C5, #$AB, #$C9, #$D1, #$F7, #$DC, #$E1, #$E0, #$E2, #$E4, #$E3,
  254. #$AC, #$B0, #$AA, #$F8,
  255. #$D5, #$CE, #$C3, #$CF, #$D3, #$D4, #$D2, #$DB, #$DA, #$DD, #$F6, #$F5,
  256. #$FA, #$F9, #$FB, #$FC,
  257. #$A0, #$C1, #$A2, #$A3, #$DF, #$B4, #$B6, #$A4, #$C6, #$A9, #$BB, #$C7,
  258. #$C2, #$AD, #$A8, #$FF,
  259. #$A1, #$B1, #$B2, #$B3, #$A5, #$B5, #$A6, #$B7, #$B8, #$B9, #$BC, #$C8,
  260. #$BA, #$BD, #$CA, #$C0,
  261. #$CB, #$E7, #$E5, #$CC, #$80, #$81, #$AE, #$82, #$E9, #$83, #$E6, #$E8,
  262. #$ED, #$EA, #$EB, #$EC,
  263. #$D0, #$84, #$F1, #$EE, #$EF, #$CD, #$85, #$D7, #$AF, #$F4, #$F2, #$F3,
  264. #$86, #$D9, #$DE, #$A7,
  265. #$88, #$87, #$89, #$8B, #$8A, #$8C, #$BE, #$8D, #$8F, #$8E, #$90, #$91,
  266. #$93, #$92, #$94, #$95,
  267. #$F0, #$96, #$98, #$97, #$99, #$9B, #$9A, #$D6, #$BF, #$9D, #$9C, #$9E,
  268. #$9F, #$FD, #$FE, #$D8
  269. ),
  270. // mac to ansi
  271. (#$00, #$01, #$02, #$03, #$04, #$05, #$06, #$07, #$08, #$09, #$0A, #$0B,
  272. #$0C, #$0D, #$0E, #$0F,
  273. #$10, #$11, #$12, #$13, #$14, #$15, #$16, #$17, #$18, #$19, #$1A, #$1B,
  274. #$1C, #$1D, #$1E, #$1F,
  275. #$20, #$21, #$22, #$23, #$24, #$25, #$26, #$27, #$28, #$29, #$2A, #$2B,
  276. #$2C, #$2D, #$2E, #$2F,
  277. #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$3A, #$3B,
  278. #$3C, #$3D, #$3E, #$3F,
  279. #$40, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$4A, #$4B,
  280. #$4C, #$4D, #$4E, #$4F,
  281. #$50, #$51, #$52, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$5B,
  282. #$5C, #$5D, #$5E, #$5F,
  283. #$60, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$6A, #$6B,
  284. #$6C, #$6D, #$6E, #$6F,
  285. #$70, #$71, #$72, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$7B,
  286. #$7C, #$7D, #$7E, #$7F,
  287. #$C4, #$C5, #$C7, #$C9, #$D1, #$D6, #$DC, #$E1, #$E0, #$E2, #$E4, #$E3,
  288. #$E5, #$E7, #$E9, #$E8,
  289. #$EA, #$EB, #$ED, #$EC, #$EE, #$EF, #$F1, #$F3, #$F2, #$F4, #$F6, #$F5,
  290. #$FA, #$F9, #$FB, #$FC,
  291. #$A0, #$B0, #$A2, #$A3, #$A7, #$B4, #$B6, #$DF, #$AE, #$A9, #$8E, #$82,
  292. #$8C, #$AD, #$C6, #$D8,
  293. #$8D, #$B1, #$B2, #$B3, #$A5, #$B5, #$A6, #$B7, #$B8, #$B9, #$BC, #$AA,
  294. #$BA, #$BD, #$E6, #$F8,
  295. #$BF, #$A1, #$AC, #$92, #$80, #$81, #$A8, #$AB, #$BB, #$83, #$BE, #$C0,
  296. #$C3, #$D5, #$91, #$93,
  297. #$D0, #$84, #$96, #$94, #$95, #$90, #$F7, #$D7, #$FF, #$DD, #$98, #$97,
  298. #$86, #$99, #$DE, #$A4,
  299. #$88, #$87, #$89, #$8B, #$8A, #$C2, #$CA, #$C1, #$CB, #$C8, #$CD, #$CE,
  300. #$CF, #$CC, #$D3, #$D4,
  301. #$F0, #$D2, #$DA, #$DB, #$D9, #$9B, #$9A, #$85, #$8F, #$9D, #$9C, #$9E,
  302. #$9F, #$FD, #$FE, #$AF
  303. )
  304. );
  305. // ebcdic cp38..ms ansi conversion
  306. MPH_CCONV_BCD38: TMPHCharConv = (
  307. //ansi to bcd (taken from recode 3.5)
  308. (#$00, #$01, #$02, #$03, #$37, #$2D, #$2E, #$2F, #$16, #$05, #$25, #$0B,
  309. #$0C, #$0D, #$0E, #$0F,
  310. #$10, #$11, #$12, #$13, #$3C, #$3D, #$32, #$26, #$18, #$19, #$3F, #$27,
  311. #$1C, #$1D, #$1E, #$1F,
  312. #$40, #$4F, #$7F, #$7B, #$5B, #$6C, #$50, #$7D, #$4D, #$5D, #$5C, #$4E,
  313. #$6B, #$60, #$4B, #$61,
  314. #$F0, #$F1, #$F2, #$F3, #$F4, #$F5, #$F6, #$F7, #$F8, #$F9, #$7A, #$5E,
  315. #$4C, #$7E, #$6E, #$6F,
  316. #$7C, #$C1, #$C2, #$C3, #$C4, #$C5, #$C6, #$C7, #$C8, #$C9, #$D1, #$D2,
  317. #$D3, #$D4, #$D5, #$D6,
  318. #$D7, #$D8, #$D9, #$E2, #$E3, #$E4, #$E5, #$E6, #$E7, #$E8, #$E9, #$4A,
  319. #$E0, #$5A, #$5F, #$6D,
  320. #$79, #$81, #$82, #$83, #$84, #$85, #$86, #$87, #$88, #$89, #$91, #$92,
  321. #$93, #$94, #$95, #$96,
  322. #$97, #$98, #$99, #$A2, #$A3, #$A4, #$A5, #$A6, #$A7, #$A8, #$A9, #$C0,
  323. #$20, #$D0, #$A1, #$07,
  324. #$80, #$22, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$8A, #$8B,
  325. #$8C, #$8D, #$8E, #$8F,
  326. #$90, #$77, #$2C, #$0A, #$3B, #$3E, #$1A, #$70, #$71, #$72, #$9A, #$9B,
  327. #$9C, #$9D, #$9E, #$9F,
  328. #$A0, #$15, #$73, #$74, #$75, #$76, #$6A, #$78, #$09, #$3A, #$AA, #$AB,
  329. #$AC, #$AD, #$AE, #$AF,
  330. #$B0, #$B1, #$B2, #$B3, #$B4, #$B5, #$B6, #$B7, #$B8, #$B9, #$BA, #$BB,
  331. #$BC, #$BD, #$BE, #$BF,
  332. #$23, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$CA, #$CB,
  333. #$CC, #$CD, #$CE, #$CF,
  334. #$1B, #$24, #$06, #$14, #$28, #$2B, #$21, #$17, #$51, #$52, #$DA, #$DB,
  335. #$DC, #$DD, #$DE, #$DF,
  336. #$2A, #$E1, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$29, #$EA, #$EB,
  337. #$EC, #$ED, #$EE, #$EF,
  338. #$30, #$31, #$08, #$33, #$34, #$35, #$36, #$04, #$38, #$39, #$FA, #$FB,
  339. #$FC, #$FD, #$FE, #$FF
  340. ),
  341. // bcd to ansi (taken from recode 3.5)
  342. (#$00, #$01, #$02, #$03, #$F7, #$09, #$D2, #$7F, #$F2, #$A8, #$93, #$0B,
  343. #$0C, #$0D, #$0E, #$0F,
  344. #$10, #$11, #$12, #$13, #$D3, #$A1, #$08, #$D7, #$18, #$19, #$96, #$D0,
  345. #$1C, #$1D, #$1E, #$1F,
  346. #$7C, #$D6, #$81, #$C0, #$D1, #$0A, #$17, #$1B, #$D4, #$E9, #$E0, #$D5,
  347. #$92, #$05, #$06, #$07,
  348. #$F0, #$F1, #$16, #$F3, #$F4, #$F5, #$F6, #$04, #$F8, #$F9, #$A9, #$94,
  349. #$14, #$15, #$95, #$1A,
  350. #$20, #$C1, #$C2, #$C3, #$C4, #$C5, #$C6, #$C7, #$C8, #$C9, #$5B, #$2E,
  351. #$3C, #$28, #$2B, #$21,
  352. #$26, #$D8, #$D9, #$E2, #$E3, #$E4, #$E5, #$E6, #$E7, #$E8, #$5D, #$24,
  353. #$2A, #$29, #$3B, #$5E,
  354. #$2D, #$2F, #$82, #$83, #$84, #$85, #$86, #$87, #$88, #$89, #$A6, #$2C,
  355. #$25, #$5F, #$3E, #$3F,
  356. #$97, #$98, #$99, #$A2, #$A3, #$A4, #$A5, #$91, #$A7, #$60, #$3A, #$23,
  357. #$40, #$27, #$3D, #$22,
  358. #$80, #$61, #$62, #$63, #$64, #$65, #$66, #$67, #$68, #$69, #$8A, #$8B,
  359. #$8C, #$8D, #$8E, #$8F,
  360. #$90, #$6A, #$6B, #$6C, #$6D, #$6E, #$6F, #$70, #$71, #$72, #$9A, #$9B,
  361. #$9C, #$9D, #$9E, #$9F,
  362. #$A0, #$7E, #$73, #$74, #$75, #$76, #$77, #$78, #$79, #$7A, #$AA, #$AB,
  363. #$AC, #$AD, #$AE, #$AF,
  364. #$B0, #$B1, #$B2, #$B3, #$B4, #$B5, #$B6, #$B7, #$B8, #$B9, #$BA, #$BB,
  365. #$BC, #$BD, #$BE, #$BF,
  366. #$7B, #$41, #$42, #$43, #$44, #$45, #$46, #$47, #$48, #$49, #$CA, #$CB,
  367. #$CC, #$CD, #$CE, #$CF,
  368. #$7D, #$4A, #$4B, #$4C, #$4D, #$4E, #$4F, #$50, #$51, #$52, #$DA, #$DB,
  369. #$DC, #$DD, #$DE, #$DF,
  370. #$5C, #$E1, #$53, #$54, #$55, #$56, #$57, #$58, #$59, #$5A, #$EA, #$EB,
  371. #$EC, #$ED, #$EE, #$EF,
  372. #$30, #$31, #$32, #$33, #$34, #$35, #$36, #$37, #$38, #$39, #$FA, #$FB,
  373. #$FC, #$FD, #$FE, #$FF
  374. )
  375. );
  376. type
  377. // custom Exception class
  378. EMPHexEditor = class(Exception);
  379. (* bookmark record:<br>
  380. defined by pressing SHIFT+CTRL+[0..9], goto bookmark by pressing CTRL+[0..9]<br><br>
  381. - mPosition: file position<br>
  382. - mInCharField: cursor in character pane (True) or hex number pane
  383. *)
  384. TMPHBookmark = record
  385. mPosition: integer;
  386. mInCharField: boolean;
  387. end;
  388. // array of bookmarks, representing keys 0..9
  389. TMPHBookmarks = array[0..9] of TMPHBookmark;
  390. (* look of the editor's caret:<br>
  391. - ckFull: full block<br>
  392. - ckLeft: left line<br>
  393. - ckBottom: bottom line<br>
  394. - ckAuto: left line if @link(InsertMode), full block if overwrite,
  395. bottom line if ReadOnlyView
  396. *)
  397. TMPHCaretKind = (ckFull,
  398. ckLeft,
  399. ckBottom,
  400. ckAuto
  401. );
  402. (* how to show a file's content in the character pane of the editor:<br>
  403. - tkAsIs: leave as is (current windows code page)<br>
  404. - tkDos8: current dos codepage<br>
  405. - tkASCII: 7 bit ascii<br>
  406. - tkMac: macintosh charset (translation always from/to ms cp 1252 (ms latin1)!!<br>
  407. - tkBCD: ibm ebcdic codepage 38 (translation always from/to ms cp 1252 (ms latin1)!!<br>
  408. - tkCustom: custom codepage stored in @link(MPHCustomCharConv)
  409. *)
  410. TMPHTranslationKind = (tkAsIs,
  411. tkDos8,
  412. tkASCII,
  413. tkMac,
  414. tkBCD
  415. , tkCustom
  416. );
  417. (* action indicator used in @link(OnProgress) event handler:<br>
  418. - pkLoad: loading data<br>
  419. - pkSave: saving data<br>
  420. - pkFind: finding
  421. *)
  422. TMPHProgressKind = (pkLoad,
  423. pkSave, pkFind
  424. );
  425. (* progress event handler, used in @link(OnProgress)<br><br>
  426. - ProgressType: am i loading or saving? (see @link(TMPHProgressKind))<br>
  427. - aName: name of file to be load from/saved to<br>
  428. - Percent: current progress (0..100)<br>
  429. - Cancel: if set to true, the load/save procedure will abort (no meaning in Find* methods) <br>
  430. *)
  431. TMPHProgressEvent = procedure(Sender: TObject;
  432. const ProgressType: TMPHProgressKind;
  433. const aName: TFileName;
  434. const Percent: byte;
  435. var Cancel: boolean) of object;
  436. (* retrieve the "line number" to display by the application<br><br>
  437. - Number: the number to convert to text
  438. - OffsetText: the resulting text output
  439. *)
  440. TMPHGetOffsetTextEvent = procedure(Sender: TObject;
  441. const Number: int64;
  442. var OffsetText: string) of object;
  443. (* handler for custom search routines<br><br>
  444. - Pattern: the data to find
  445. - PatLength: length of the data to find
  446. - SearchFrom: first search position
  447. - SearchUntil: last search position
  448. - IgnoreCase: case sensitive?
  449. - Wilcard: Wildcard character (only used by FindWithWildcard)
  450. - FoundPos: result, set to -1 if data was not found
  451. *)
  452. TMPHFindEvent = procedure(Sender: TObject;
  453. const Pattern: PChar; const PatLength: integer;
  454. const SearchFrom, SearchUntil: integer;
  455. const IgnoreCase: boolean;
  456. const Wildcard: Char;
  457. var FoundPos: Integer) of object;
  458. // precompiled converted character table types for faster data search
  459. PMPHFindTable = ^TMPHFindTable;
  460. TMPHFindTable = array[#0..#255] of Char;
  461. //@exclude
  462. // flags internally used in the undo storage
  463. TMPHUndoFlag = (
  464. // kind of undo storage
  465. ufKindBytesChanged,
  466. ufKindByteRemoved,
  467. ufKindInsertBuffer,
  468. ufKindReplace,
  469. ufKindAppendBuffer,
  470. ufKindNibbleInsert,
  471. ufKindNibbleDelete,
  472. ufKindConvert,
  473. ufKindSelection, // store a selection
  474. ufKindCombined,
  475. ufKindAllData, // store current data and size for complete undo
  476. // additional information
  477. ufFlagByte1Changed,
  478. ufFlagByte2Changed,
  479. ufFlagModified,
  480. ufFlag2ndByteCol,
  481. ufFlagInCharField,
  482. ufFlagHasSelection,
  483. ufFlagInsertMode,
  484. ufFlagIsUnicode,
  485. ufFlagIsUnicodeBigEndian,
  486. ufFlagHasDescription
  487. );
  488. //@exclude
  489. // set of undo flags
  490. TMPHUndoFlags = set of TMPHUndoFlag;
  491. type
  492. // persistent color storage (contains the colors in hex editors)
  493. TMPHColors = class(TPersistent)
  494. private
  495. FParent: TControl;
  496. FOffset: TColor;
  497. FOddColumn: TColor;
  498. FEvenColumn: TColor;
  499. FCursorFrame: TColor;
  500. FNonFocusCursorFrame: TColor;
  501. FBackground: TColor;
  502. FChangedText: TColor;
  503. FChangedBackground: TColor;
  504. FCurrentOffsetBackground: TColor;
  505. FOffsetBackGround: TColor;
  506. FActiveFieldBackground: TColor;
  507. FCurrentOffset: TColor;
  508. FGrid: TColor;
  509. procedure SetOffsetBackGround(const Value: TColor);
  510. procedure SetCurrentOffset(const Value: TColor);
  511. procedure SetParent(const Value: TControl);
  512. procedure SetGrid(const Value: TColor);
  513. procedure SetBackground(const Value: TColor);
  514. procedure SetChangedBackground(const Value: TColor);
  515. procedure SetChangedText(const Value: TColor);
  516. procedure SetCursorFrame(const Value: TColor);
  517. procedure SetEvenColumn(const Value: TColor);
  518. procedure SetOddColumn(const Value: TColor);
  519. procedure SetOffset(const Value: TColor);
  520. procedure SetActiveFieldBackground(const Value: TColor);
  521. procedure SetCurrentOffsetBackground(const Value: TColor);
  522. procedure SetNonFocusCursorFrame(const Value: TColor);
  523. public
  524. // @exclude(constructor)
  525. constructor Create(Parent: TControl);
  526. // @exclude()
  527. procedure Assign(Source: TPersistent); override;
  528. // parent hex editor control
  529. property Parent: TControl read FParent write SetParent;
  530. published
  531. // background color
  532. property Background: TColor read FBackground write SetBackground;
  533. // background color of modified bytes (in overwrite mode)
  534. property ChangedBackground: TColor read FChangedBackground write
  535. SetChangedBackground;
  536. // foreground color of modified bytes (in overwrite mode)
  537. property ChangedText: TColor read FChangedText write SetChangedText;
  538. // color of the cursor and position frame in the second pane
  539. property CursorFrame: TColor read FCursorFrame write SetCursorFrame;
  540. // foreground color of the line offsets
  541. property Offset: TColor read FOffset write SetOffset;
  542. // foreground color of odd columns
  543. property OddColumn: TColor read FOddColumn write SetOddColumn;
  544. // foreground color of even columns
  545. property EvenColumn: TColor read FEvenColumn write SetEvenColumn;
  546. // background color of the current line in the offset pane (gutter)
  547. property CurrentOffsetBackground: TColor read FCurrentOffsetBackground write
  548. SetCurrentOffsetBackground;
  549. // background color of the offset pane (gutter)
  550. property OffsetBackGround: TColor read FOffsetBackGround write
  551. SetOffsetBackGround;
  552. // foreground color of the current line in the offset pane (gutter)
  553. property CurrentOffset: TColor read FCurrentOffset write SetCurrentOffset;
  554. // pen color of the grid
  555. property Grid: TColor read FGrid write SetGrid;
  556. // color of a cursor frame in a non-focused editor
  557. property NonFocusCursorFrame: TColor read FNonFocusCursorFrame write
  558. SetNonFocusCursorFrame;
  559. // background color of the active field (hex/chars)
  560. property ActiveFieldBackground: TColor read FActiveFieldBackground write
  561. SetActiveFieldBackground;
  562. end;
  563. // @exclude(stream class for internal storage/undo)
  564. TMPHMemoryStream = class(TMemoryStream)
  565. private
  566. procedure CheckBounds(const AMax: Integer);
  567. function PointerAt(const APosition: Integer): Pointer;
  568. protected
  569. public
  570. {$IFDEF FASTACCESS}
  571. function GetAddress(const Index, Count: integer): PByte;
  572. {$ENDIF}
  573. procedure ReadBufferAt(var Buffer; const APosition, ACount: Integer);
  574. procedure WriteBufferAt(const Buffer; const APosition, ACount: Integer);
  575. procedure Move(const AFromPos, AToPos, ACount: Integer);
  576. procedure TranslateToAnsi(const FromTranslation: TMPHTranslationKind; const
  577. APosition, ACount: integer);
  578. procedure TranslateFromAnsi(const ToTranslation: TMPHTranslationKind; const
  579. APosition, ACount: integer);
  580. function GetAsHex(const APosition, ACount: integer; const SwapNibbles:
  581. Boolean): string;
  582. end;
  583. //@exclude
  584. // undo storage implementation
  585. TMPHUndoStorage = class;
  586. //@exclude
  587. // offset format flags
  588. TMPHOffsetFormatFlag = (offCalcWidth,
  589. // calculate minwidth depending on data size (width field = '-')
  590. offCalcRow,
  591. // calculate _BytesPerUnit depending on bytes per row (=real line numbers)
  592. offCalcColumn, // " bytes per column (= column numbers)
  593. offBytesPerUnit // use BytesPerUnit property
  594. );
  595. //@exclude
  596. // set of the above flags
  597. TMPHOffsetFormatFlags = set of TMPHOffsetFormatFlag;
  598. //@exclude
  599. // offset format record
  600. TMPHOffsetFormat = record
  601. Format: string; // format as string
  602. Prefix,
  603. Suffix: string; // splitted format
  604. MinWidth: integer; // min length of value (zero padded on the left)
  605. Flags: // auto calculation flags
  606. TMPHOffsetFormatFlags;
  607. Radix, // radix (base) of display (2..16)
  608. _BytesPerUnit: byte; // length of one unit (1 Byte...BytesPerRow Bytes)
  609. end;
  610. (* owner draw event type. parameters:<br><br>
  611. - Sender: the hex editor<br>
  612. - ACanvas: the editor's canvas<br>
  613. - ACol, ARow: the position to be drawn<br>
  614. - AWideText: the text to be drawn<br>
  615. - ARect: the cell rectangle<br>
  616. - ADefaultDraw: if set to True (default), default drawing isperformed after the event handler returns.
  617. if set to false, the event handler must do all cell painting.
  618. *)
  619. TMPHDrawCellEvent = procedure(Sender: TObject; ACanvas: TCanvas; ACol, ARow:
  620. Integer; var AWideText: WideString; ARect: TRect; var ADefaultDraw: Boolean)
  621. of object;
  622. // protected ancestor of the hex editor components
  623. TCustomMPHexEditor = class(TCustomGrid)
  624. private
  625. FIntLastHexCol: integer;
  626. FFindTable,
  627. FFindTableI: TMPHFindTable;
  628. FIsMaxOffset: boolean;
  629. FFindProgress: boolean;
  630. FBlockSize: Integer;
  631. FSepCharBlocks: boolean;
  632. FOnGetOffsetText: TMPHGetOffsetTextEvent;
  633. FFixedFileSize: boolean;
  634. FCharWidth,
  635. FCharHeight: integer;
  636. FBookmarkImageList: TImageList;
  637. FInsertModeOn: boolean;
  638. FCaretBitmap: TBitmap;
  639. FColors: TMPHColors;
  640. FBytesPerRow: integer;
  641. FOffSetDisplayWidth: integer;
  642. FBytesPerRowDup: integer;
  643. FDataStorage: TMPHMemoryStream;
  644. FSwapNibbles: integer;
  645. FFocusFrame: boolean;
  646. FIsFileReadonly: boolean;
  647. FBytesPerCol: integer;
  648. FPosInCharField,
  649. FLastPosInCharField: boolean;
  650. FFileName: string;
  651. FModifiedBytes: TBits;
  652. FBookmarks: TMPHBookmarks;
  653. FSelStart,
  654. FSelPosition,
  655. FSelEnd: integer;
  656. FSelBeginPosition: integer;
  657. FTranslation: TMPHTranslationKind;
  658. FCaretKind: TMPHCaretKind;
  659. FReplaceUnprintableCharsBy: char;
  660. FAllowInsertMode: boolean;
  661. FWantTabs: boolean;
  662. FReadOnlyView: boolean;
  663. FHideSelection: boolean;
  664. FGraySelOnLostFocus: boolean;
  665. FOnProgress: TMPHProgressEvent;
  666. FMouseDownCol,
  667. FMouseDownRow: integer;
  668. FShowDrag: boolean;
  669. FDropCol,
  670. FDropRow: integer;
  671. FOnInvalidKey,
  672. FOnTopLeftChanged: TNotifyEvent;
  673. FDrawGridLines: boolean;
  674. FDrawGutter3D: boolean;
  675. FGutterWidth: integer;
  676. FOffsetFormat: TMPHOffsetFormat;
  677. FSelectionPossible: boolean;
  678. FBookmarkBitmap: TBitmap;
  679. FCursorList: array of integer;
  680. FHasCustomBMP: boolean;
  681. FStreamFileName: string;
  682. FHasFile: boolean;
  683. FMaxUndo: integer;
  684. FHexChars: array[0..15] of char;
  685. FHexLowerCase: boolean;
  686. FOnChange: TNotifyEvent;
  687. FShowRuler: boolean;
  688. FBytesPerUnit: Integer;
  689. FRulerBytesPerUnit: Integer;
  690. FOnSelectionChanged: TNotifyEvent;
  691. FSelectionChangedCount: Integer;
  692. FShowPositionIfNotFocused: Boolean;
  693. FOffsetHandler: Boolean;
  694. FUsedRulerBytesPerUnit: Integer;
  695. FIsSelecting: boolean;
  696. FMouseUpCanResetSel: boolean;
  697. FUndoStorage: TMPHUndoStorage;
  698. FUnicodeCharacters: Boolean;
  699. FUnicodeBigEndian: Boolean;
  700. FMaskedChars: TSysCharSet;
  701. FDrawDataPosition: integer;
  702. FOnDrawCell: TMPHDrawCellEvent;
  703. FOnBookmarkChanged: TNotifyEvent;
  704. FIsDrawDataSelected: boolean;
  705. FOnWildcardFind: TMPHFindEvent;
  706. FOnFind: TMPHFindEvent;
  707. {$IFDEF FASTACCESS}
  708. FSetDataSizeFillByte: Byte;
  709. {$ENDIF}
  710. FRulerNumberBase: byte;
  711. property Color;
  712. function IsInsertModePossible: boolean;
  713. function IsFileSizeFixed: boolean;
  714. procedure InternalErase(const KeyWasBackspace: boolean; const UndoDesc:
  715. string = '');
  716. procedure SetReadOnlyView(const Value: boolean);
  717. procedure SetCaretKind(const Value: TMPHCaretKind);
  718. procedure SetFocusFrame(const Value: boolean);
  719. procedure SetBytesPerColumn(const Value: integer);
  720. procedure SetSwapNibbles(const Value: boolean);
  721. function GetSwapNibbles: boolean;
  722. function GetBytesPerColumn: integer;
  723. procedure SetOffsetDisplayWidth;
  724. procedure SetColors(const Value: TMPHColors);
  725. procedure SetReadOnlyFile(const Value: boolean);
  726. procedure SetTranslation(const Value: TMPHTranslationKind);
  727. procedure SetModified(const Value: boolean);
  728. procedure SetChanged(DataPos: integer; const Value: boolean);
  729. procedure SetFixedFileSize(const Value: boolean);
  730. procedure SetAllowInsertMode(const Value: boolean);
  731. function GetInsertMode: boolean;
  732. procedure SetWantTabs(const Value: boolean);
  733. procedure SetHideSelection(const Value: boolean);
  734. procedure SetGraySelectionIfNotFocused(const Value: boolean);
  735. function CalcColCount: integer;
  736. function GetLastCharCol: integer;
  737. function GetPropColCount: integer;
  738. function GetPropRowCount: integer;
  739. function GetMouseOverSelection: boolean;
  740. function CursorOverSelection(const X, Y: integer): boolean;
  741. function MouseOverFixed(const X, Y: integer): boolean;
  742. procedure AdjustBookmarks(const From, Offset: integer);
  743. procedure IntSetCaretPos(const X, Y, ACol: integer);
  744. procedure TruncMaxPosition(var DataPos: integer);
  745. procedure SetSelection(DataPos, StartPos, EndPos: integer);
  746. function GetCurrentValue: integer;
  747. procedure SetInsertMode(const Value: boolean);
  748. function GetModified: boolean;
  749. //function GetDataPointer: Pointer;
  750. procedure SetBytesPerRow(const Value: integer);
  751. procedure SetMaskChar(const Value: char);
  752. procedure SetAsText(const Value: string);
  753. procedure SetAsHex(const Value: string);
  754. function GetAsText: string;
  755. function GetAsHex: string;
  756. procedure WMTimer(var Msg: TWMTimer); message WM_TIMER;
  757. // show or hide caret depending on row/col in view
  758. procedure CheckSetCaret;
  759. // get the row according to the given buffer position
  760. function GetRow(const DataPos: integer): integer;
  761. // invalid key pressed (in ebcdic)
  762. procedure WrongKey;
  763. // create an inverting caret bitmap
  764. procedure CreateCaretGlyph;
  765. // get start of selection
  766. function GetSelStart: integer;
  767. // get end of selection
  768. function GetSelEnd: integer;
  769. // get selection count
  770. function GetSelCount: integer;
  771. // set selection start
  772. procedure SetSelStart(aValue: integer);
  773. // set selection end
  774. procedure SetSelEnd(aValue: integer);
  775. // position the caret in the given field
  776. procedure SetInCharField(const Value: boolean);
  777. // is the caret in the char field ?
  778. function GetInCharField: boolean;
  779. // insert a buffer (internal)
  780. procedure InternalInsertBuffer(Buffer: PChar; const Size, Position:
  781. integer);
  782. // append some data (int)
  783. procedure InternalAppendBuffer(Buffer: PChar; const Size: integer);
  784. // store the caret properties
  785. procedure InternalGetCurSel(var StartPos, EndPos, ACol, ARow: integer);
  786. // delete data
  787. procedure InternalDelete(StartPos, EndPos, ACol, ARow: integer);
  788. // delete one half byte
  789. function InternalDeleteNibble(const Pos: integer;
  790. const HighNibble: boolean): boolean;
  791. // insert half byte
  792. function InternalInsertNibble(const Pos: integer; const HighNibble:
  793. boolean): boolean;
  794. // used by nibble functions
  795. function CreateShift4BitStream(const StartPos: integer; var FName:
  796. TFileName): TFileStream;
  797. // convert a given amount of data from ansi to something different and vice versa
  798. procedure InternalConvertRange(const aFrom, aTo: integer; const aTransFrom,
  799. aTransTo: TMPHTranslationKind);
  800. // move data in buffer to a different position
  801. procedure MoveFileMem(const aFrom, aTo, aCount: integer);
  802. function GetBookmark(Index: byte): TMPHBookmark;
  803. procedure SetBookmark(Index: byte; const Value: TMPHBookmark);
  804. procedure SetBookmarkVals(const Index: byte; const Position: integer; const
  805. InCharField: boolean);
  806. procedure SetDrawGridLines(const Value: boolean);
  807. procedure SetGutterWidth(const Value: integer);
  808. // images have changed
  809. procedure BookmarkBitmapChanged(Sender: TObject);
  810. procedure SetBookmarkBitmap(const Value: TBitmap);
  811. function GetVersion: string;
  812. procedure SetVersion(const Value: string);
  813. // free alloc'd memory of one of the storage streams;
  814. procedure FreeStorage(FreeUndo: boolean = False);
  815. function GetCanUndo: boolean;
  816. function GetCanRedo: boolean;
  817. function GetUndoDescription: string;
  818. function GetOffsetFormat: string;
  819. procedure SetOffsetFormat(const Value: string);
  820. // generate offset format
  821. procedure GenerateOffsetFormat(Value: string);
  822. procedure SetHexLowerCase(const Value: boolean);
  823. procedure SetDrawGutter3D(const Value: boolean);
  824. procedure SetShowRuler(const Value: boolean);
  825. procedure SetBytesPerUnit(const Value: integer);
  826. procedure SetRulerString;
  827. procedure CheckSelectUnit(var AStart, AEnd: Integer);
  828. procedure SetRulerBytesPerUnit(const Value: integer);
  829. procedure SetShowPositionIfNotFocused(const Value: Boolean);
  830. function GetDataAt(Index: integer): Byte;
  831. procedure SetDataAt(Index: integer; const Value: Byte);
  832. procedure SetUnicodeCharacters(const Value: Boolean);
  833. procedure SetUnicodeBigEndian(const Value: Boolean);
  834. function GetPositionAtCursor(const ACol, ARow: integer): integer;
  835. function GetIsCharFieldCol(const ACol: integer): Boolean;
  836. procedure SetDataSize(const Value: integer);
  837. procedure SetBlockSize(const Value: Integer);
  838. procedure SetSepCharBlocks(const Value: boolean);
  839. procedure SetFindProgress(const Value: boolean);
  840. procedure SetRulerNumberBase(const Value: byte);
  841. procedure SetMaskedChars(const Value: TSysCharSet);
  842. {+}
  843. {.$IFDEF BCB}
  844. protected
  845. // bcb seems to need overwritten abstract methods for dynamically created
  846. // controls (this method is never called in TMPHexEditor/Ex)
  847. procedure DrawCell(ACol, ARow: Longint; ARect: TRect; AState: TGridDrawState); override;
  848. {.$ENDIF}
  849. {+.}
  850. protected
  851. // @exclude()
  852. FRulerString: string;
  853. // @exclude()
  854. FRulerCharString: string;
  855. // @exclude(used by TMPHexEditorEx for internal drag 'n' drop)
  856. FFixedFileSizeOverride: boolean;
  857. // @exclude(used by TMPHexEditorEx for internal undo changing)
  858. FModified: boolean;
  859. // @exclude(overwrite mouse wheel for zooming)
  860. function DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): boolean;
  861. override;
  862. // @exclude(overwrite mouse wheel for zooming)
  863. function DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): boolean;
  864. override;
  865. // @exclude(actually used bytes per unit)
  866. property UsedRulerBytesPerUnit: Integer read FUsedRulerBytesPerUnit;
  867. // @exclude(True: cells are currently to be selected)
  868. property IsSelecting: boolean read FIsSelecting;
  869. // @exclude(True: MouseUp resets selection)
  870. property MouseUpCanResetSel: boolean read FMouseUpCanResetSel write
  871. FMouseUpCanResetSel;
  872. // @exclude(memory stream which contains the undo/redo data)
  873. property UndoStorage: TMPHUndoStorage read FUndoStorage;
  874. // @exclude(stream that contains the data)
  875. property DataStorage: TMPHMemoryStream read FDataStorage;
  876. // @exclude(fire OnSelectionChange)
  877. procedure SelectionChanged; virtual;
  878. // @exclude(set a new selection)
  879. procedure NewSelection(SelFrom, SelTo: integer);
  880. // @exclude(get the current mouse position)
  881. function CheckMouseCoord(var X, Y: integer): TGridCoord;
  882. // @exclude(assure the value is a multiple of FBytesPerUnit)
  883. procedure CheckUnit(var AValue: Integer);
  884. // call changed on every undo creation for OnChange event
  885. procedure Changed; virtual;
  886. // returns the drop file position after a drag'n'drop operation
  887. function DropPosition: integer;
  888. // copy a stream to a second one and fire the OnProgress handler
  889. procedure Stream2Stream(strFrom, strTo: TStream; const Operation:
  890. TMPHProgressKind; const Count: integer = -1);
  891. (* allows descendants to take special action if contents are to be saved
  892. to the file from where the data was load *)
  893. procedure PrepareOverwriteDiskFile; virtual;
  894. // store the current Cursor and set it to crHourGlass (see also @link(OldCursor))
  895. procedure WaitCursor;
  896. // reset the Cursor to the previous value (see also @link(WaitCursor))
  897. procedure OldCursor;
  898. // @exclude(override paint)
  899. procedure Paint; override;
  900. // @exclude(view changed)
  901. procedure TopLeftChanged; override;
  902. // adjust cell widths/heigths depending on font, offset format, bytes per row/column...
  903. procedure AdjustMetrics;
  904. // get the size of the contained data
  905. function GetDataSize: integer;
  906. // @exclude(calculate the grid sizes)
  907. procedure CalcSizes;
  908. // @exclude(select one cell)
  909. function SelectCell(ACol, ARow: longint): boolean; override;
  910. // @exclude(get the data position depending on col and row)
  911. function GetPosAtCursor(const aCol, aRow: integer): integer;
  912. // @exclude(vice versa)
  913. function GetCursorAtPos(const aPos: integer; const aChars: boolean):
  914. TGridCoord;
  915. // @exclude(get the column of the other field (hex<->char))
  916. function GetOtherFieldCol(const aCol: integer): integer;
  917. // @exclude(get the column of the other field (hex<->char))
  918. function GetOtherFieldColCheck(const aCol: integer): integer;
  919. // @exclude(can the cell be selected ?)
  920. function CheckSelectCell(aCol, aRow: integer): boolean;
  921. // @exclude(char message handler)
  922. procedure WMChar(var Msg: TWMChar); message WM_CHAR;
  923. // @exclude(posted message to update the caret position)
  924. procedure CMINTUPDATECARET(var Msg: TMessage); message CM_INTUPDATECARET;
  925. // @exclude(posted message to fire an OnSelectionChanged event)
  926. procedure CMSelectionChanged(var Msg: TMessage); message
  927. CM_SELECTIONCHANGED;
  928. // @exclude(for shortcuts)
  929. procedure WMGetDlgCode(var Msg: TWMGetDlgCode); message WM_GETDLGCODE;
  930. // @exclude(readjust grid sizes after font has changed)
  931. procedure CMFontChanged(var Message: TMessage); message CM_FONTCHANGED;
  932. // @exclude(change a byte at the given position)
  933. procedure IntChangeByte(const aOldByte, aNewByte: byte;
  934. aPos, aCol, aRow: integer; const UndoDesc: string = '');
  935. // @exclude(change two bytes at the given position)
  936. procedure IntChangeWideChar(const aOldChar, aNewChar: WideChar; aPos, aCol,
  937. aRow: integer; const UndoDesc: string = '');
  938. // @exclude(keydown handler)
  939. procedure KeyDown(var Key: word; Shift: TShiftState); override;
  940. // @exclude(keyup handler)
  941. //procedure KeyUp(var Key: word; Shift: TShiftState); override;
  942. // @exclude(has this byte been modified ?)
  943. function HasChanged(aPos: integer): boolean;
  944. // @exclude(redraw some lines)
  945. procedure RedrawPos(aFrom, aTo: integer);
  946. // @exclude(make a selection)
  947. procedure Select(const aCurCol, aCurRow, aNewCol, aNewRow: integer);
  948. // @exclude(mouse down handler)
  949. procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y:
  950. integer); override;
  951. // @exclude(mouse move handler)
  952. procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
  953. // @exclude(mouse up handler)
  954. procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
  955. override;
  956. // @exclude(is undo record creation possible?)
  957. function CanCreateUndo(const aKind: TMPHUndoFlag; const aCount, aReplCount:
  958. integer): Boolean; virtual;
  959. // @exclude(add an undo to the undo buffer)
  960. procedure CreateUndo(const aKind: TMPHUndoFlag; const aPos, aCount,
  961. aReplCount: integer; const sDesc: string = '');
  962. // @exclude(after loading)
  963. procedure Loaded; override;
  964. // @exclude(override CreateWnd)
  965. procedure CreateWnd; override;
  966. // @exclude(wm_setfocus handler)
  967. procedure WMSetFocus(var Msg: TWMSetFocus); message WM_SETFOCUS;
  968. // @exclude(wm_killfocus handler)
  969. procedure WMKillFocus(var Msg: TWMKillFocus); message WM_KILLFOCUS;
  970. // @exclude(wm_vscroll handler)
  971. procedure WMVScroll(var Msg: TWMVScroll); message WM_VSCROLL;
  972. // @exclude(wm_hscroll handler)
  973. procedure WMHScroll(var Msg: TWMHScroll); message WM_HSCROLL;
  974. // @exclude(resize the control)
  975. procedure Resize; override;
  976. // @exclude(store bitmap ? (its set to true, if a custom bitmap has been stored in BookmarkBitmap))
  977. function HasCustomBookmarkBitmap: boolean;
  978. // number of bytes to show in each row
  979. property BytesPerRow: integer read FBytesPerRow write SetBytesPerRow;
  980. // if set to True, the find* routines also fire OnProgress events (default is False)
  981. property FindProgress: boolean read FFindProgress write SetFindProgress
  982. default False;
  983. // number of bytes to show in each column
  984. property BytesPerColumn: integer read GetBytesPerColumn write
  985. SetBytesPerColumn default 2;
  986. (* translation kind of the data (used to show characters on and to handle key presses in the char pane),
  987. (see also @link(TMPHTranslationKind))
  988. *)
  989. property Translation: TMPHTranslationKind read FTranslation write
  990. SetTranslation;
  991. (* offset display ("line numbers") format, in the form<br>
  992. [r|c|&lt;HEXNUM&gt;%][-|&lt;HEXNUM&gt;!]&lt;HEXNUM&gt;:[Prefix]|[Suffix]<br>
  993. (&lt;HEXNUM&gt; means a number in hexadecimal format (without prefix/suffix))<br><br>
  994. - first field (up to the percent sign):<br>
  995. <ul>
  996. <li>sets the "bytes per unit field" of the offset display format</li>
  997. <li>if it's set to 1, each row offset displays the data position in bytes</li>
  998. <li>if it's set to 2, each row offset displays the data position in words</li>
  999. <li>if it's set to 4, each row offset displays the data position in dwords</li>
  1000. <li>if it's set to "r", each row offset displays the current row number (1st row=0,
  1001. see also @link(BytesPerRow))</li>
  1002. <li>if it's set to "c", each row offset displays the current column number (1st column=0,
  1003. see also @link(BytesPerColumn))</li>
  1004. <li>if this field is omitted, bytes per unit is set to the value of the
  1005. @link(RulerBytesPerUnit) property</li>
  1006. </ul><br>
  1007. - second field (up to the exclamation mark):<br>
  1008. <ul>
  1009. <li>sets the minimum width of the number part, if the number is shorter, it will be padded
  1010. by '0' chars at the left</li>
  1011. <li>if this field reads -!, the the minimum width is automatically set to the longest number
  1012. that can appear in the editor (the data's size)</li>
  1013. <li>if this field is omitted, the minimum width is set to 1</li>
  1014. </ul><br>
  1015. - third field (up to the colon):<br>
  1016. <ul>
  1017. <li>sets the radix (base) of the offset format in hex notation</li>
  1018. <li>set this to '10' (without quotes) for hexadecimal offset display, set it to '08' for
  1019. octal and to '0a' for decimal offset display</li>
  1020. <li>this field cannot be omitted, but the whole format string my be blank to avoid the display of
  1021. offset identifiers</li>
  1022. </ul></br>
  1023. - fourth field (up to the pipe ('|') char):<br>
  1024. <ul>
  1025. <li>the prefix that is put in front of the "number" string (e.g. '0x' or '$' to show that numbers are in hex format)
  1026. </li><li>this field may be omitted (but not the pipe char!)</li>
  1027. </ul><br>
  1028. - fifth (and last) field:<br>
  1029. <ul>
  1030. <li>the suffix to put after the "number string" (e.g. 'h' to show hex numbers)</li>
  1031. <li>this field may be omitted</…