/bin/dbxoodbc/Source/Demos/DbExplor/Optional.Libs/HexEdit/mpHexEditorEx.pas

http://github.com/sanelson/dbdesigner-fork · Pascal · 4001 lines · 3094 code · 340 blank · 567 comment · 316 complexity · e3f980de9fa61787c1dbaaecc21e0430 MD5 · raw file

Large files are truncated click here to view the full file

  1. (*
  2. TMPHexEditorEx v 02-06-2006<br>
  3. @author((C) markus stephany, vcl[at]mirkes[dot]de, all rights reserved.)
  4. @abstract(TMPHexEditorEx, an enhanced TMPHexEditor: print and preview, ole drag and drop,
  5. ole clipboard handling, file backups...)
  6. @lastmod(02-06-2006)
  7. credits to :<br><br>
  8. - John Hamm, http://users.snapjax.com/john/<br><br>
  9. - Christophe Le Corfec for introducing the EBCDIC format and the nice idea about
  10. half byte insert/delete<br><br>
  11. - Philippe Chessa for his suggestions about AsText, AsHex and better support for
  12. the french keyboard layout<br><br>
  13. - Daniel Jensen for octal offset display and the INS-key recognition stuff<br><br>
  14. - Shmuel Zeigerman for introducing more flexible offset display formats<br><br>
  15. - Vaf, http://carradio.al.ru for reporting missing delver.inc and suggesting OnChange<br><br>
  16. - Eugene Tarasov for reporting that setting the BytesPerColumn value to 4 at design
  17. time didn't work<br><br>
  18. - FuseBurner for BytesPerUnit/RulerBytesPerUnit related suggestions<br><br>
  19. - Motzi for SyncView/ShowPositionIfNotFocused related suggestions<br><br>
  20. - Martin Hsiao for bcb compatibility and reporting some bugs when moving cursor beyond eof<br><br>
  21. - Miyu for delphi 7 defines<br><br>
  22. - Nils Hoyer for bcb testing and his help on creating a BCB6 package<br><br>
  23. - Skamnitsly S.V for reporting a bug when doubleclicking the ruler bar<br><br>
  24. - Pete Fraser for reporting problems with array properties under BCB<br><br>
  25. - Andrew Novikov for bug reports and suggestions<br><br>
  26. - Al for bug reports<br><br>
  27. - Dieter Köhler for reporting the delphi vcl related CanFocus bug<br><br>
  28. - Piotr Likus for reporting a cardinal&lt;-&gt;integer related bug in the Undo method<br><br>
  29. - Marc Girod for bug reports<br><br>
  30. - Gerd Schwartz for reporting a bug with printing headers/footers that contain long texts<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. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  36. <li>v 05-23-2005: may 23, 2005<br><br>
  37. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  38. <li>v 12-29-2004: december 29, 2004<br><br>
  39. - initialized Result to '' in some string functions/methods to avoid
  40. non empty Result vars at function startup due to compiler
  41. optimizations (particularly on d4), e.g. printing did not work
  42. correctly under d4<br>
  43. - updated some of the sample projects (fixed the broken bcb6 sample,
  44. added printing to the hex viewer and the bcb6 editor sample) <br><br></li>
  45. <li>v 12-28-2004: december 28, 2004<br><br>
  46. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  47. <li>v 12-21-2004: december 21, 2004<br><br>
  48. - changes in the base class (@link(TCustomMPHexEditor))<br>
  49. - support for CF_HTML clipboard format<br><br></li>
  50. <li>v 11-12-2004: november 12, 2004<br><br>
  51. - changes in the base class (@link(TCustomMPHexEditor))<br>
  52. - ole drag and drop move operation is now disabled if the editor's
  53. ReadOnlyView property is set to True<br><br></li>
  54. <li>v 10-26-2004: october 26, 2004<br><br>
  55. - changes in the base class (@link(TCustomMPHexEditor))/unit (@link(mphexeditor)) only <br><br></li>
  56. <li>v 08-29-2004: august 29, 2004<br><br>
  57. - changes in the base class (@link(TCustomMPHexEditor))<br>
  58. - added pfIncludeRuler to @link(TMPHPrintFlag)<br><br></li>
  59. <li>v 08-14-2004: august 14, 2004<br><br>
  60. - changed printing (color handling, pfSelectionBold meaning)<br><br></li>
  61. <li>v 06-15-2004: june 15, 2004<br><br>
  62. - changes in the base class (@link(TCustomMPHexEditor)) and some more inherited
  63. published properties <br><br></li>
  64. <li>v 06-10-2004: june 10, 2004<br><br>
  65. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  66. <li>v 06-07-2004: june 07, 2004<br><br>
  67. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  68. <li>v 05-27-2004: may 27, 2004<br><br>
  69. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  70. <li>v 05-13-2004: may 13, 2004<br><br>
  71. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  72. <li>v 04-18-2004: april 18, 2004<br><br>
  73. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  74. <li>v 01-08-2004: january 08, 2004<br><br>
  75. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  76. <li>v 12-16-2003: december 16, 2003<br><br>
  77. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  78. <li>v 12-10-2003: december 10, 2003<br><br>
  79. - changes in the base class (@link(TCustomMPHexEditor)) only <br><br></li>
  80. <li>v 09-24-2003: september 24, 2003 <br><br>
  81. - modified the BCB6 package <br><br></li>
  82. <li>v 09-09-2003: september 09, 2003<br><br>
  83. - changed @link(UndoBeginUpdate) and @link(UndoEndUpdate) behaviour to automatically create an undo record
  84. on UndoBeginUpdate and check it on UndoEndUpdate, see also @link(CreateUndoOnUndoUpdate)<br>
  85. - added property @link(CreateUndoOnUndoUpdate) <br>
  86. - added defines for delphi7, renamed delver.inc to mpdelver.inc <br>
  87. - @link(PasteData) method added <br><br></li>
  88. <li>v 07-05-2003: july 05, 2003<br><br>
  89. - added support for pasting clipboard data in fixed filesize mode<br>
  90. - added RegEdit_HexData clipboard support<br><br></li>
  91. <li>v 05-25-2003-b: may 25, 2003<br><br>
  92. - fixed a bug (moving the cursor beyond eof)<br><br></li>
  93. <li>v 05-25-2003: may 25, 2003<br><br>
  94. - no ':' is printed when offset display is not used<br>
  95. - added hpp generating statements for bcb compatibility<br><br></li>
  96. <li>v 05-20-2003: may 20, 2003<br><br>
  97. - added unicode support in printing<br><br></li>
  98. <li>v 05-17-2003: may 17, 2003<br><br>
  99. - moved some property related functions to protected<br>
  100. - corrected bottom margin handling when printing<br>
  101. - corrected upper/lowercase hex chars in printing<br>
  102. - the current unit is selected now when doubleclicking data<br>
  103. - added flags pfCurrentViewOnly (just print the currently
  104. visible data) to @link(PrintOptions).Flags<br><br></li>
  105. <li>v 08-18-2002: august 18, 2002<br><br>
  106. - first release</li>
  107. </ul></p>
  108. *)
  109. {$IFDEF BCB}
  110. {$HPPEMIT 'DECLARE_DINTERFACE_TYPE(IDropTarget)'}
  111. {$HPPEMIT 'DECLARE_DINTERFACE_TYPE(IDropSource)'}
  112. {$HPPEMIT 'DECLARE_DINTERFACE_TYPE(IEnumFORMATETC)'}
  113. {$ENDIF}
  114. unit MPHexEditorEx;
  115. {$I MPDELVER.INC}
  116. interface
  117. uses
  118. Windows, Messages, SysUtils, Classes, Controls, Forms,
  119. MPHexEditor, ActiveX, Graphics, Printers,
  120. ShlObj, Menus;
  121. type
  122. //@exclude
  123. // is data dropped or pasted
  124. TMPHOLEOperation = (oleDrop, oleClipboard);
  125. // @exclude(available clipboard / IDataObject formats)
  126. TClipFormats = array of TClipFormat;
  127. // @exclude(ole drop handler class)
  128. TMPHDropTarget = class;
  129. // @exclude(persistent print options)
  130. TMPHPrintOptions = class;
  131. (* print option flags:<br><br>
  132. - pfSelectionOnly: only print data currently selected<br>
  133. - pfSelectionBold: render the current selection using either a bold font or inverted colors (if pfSelectionOnly isn't set)<br>
  134. - pfMonochrome: don't use colors, print/preview black on white<br>
  135. - pfUseBackgroundColor: fill the margin rect with the editor's background color (if pfMonochrome isn't set)<br>
  136. - pfCurrentViewOnly: just print the data currently displayed<br>
  137. - pfIncludeRuler: draw the ruler at every page's top<br>
  138. *)
  139. TMPHPrintFlag = (pfSelectionOnly, pfSelectionBold, pfMonochrome,
  140. pfUseBackgroundColor, pfCurrentViewOnly, pfIncludeRuler);
  141. // @exclude()
  142. TMPHPrintFlags = set of TMPHPrintFlag;
  143. // @exclude(print header/footer)
  144. TMPHPrintHeaders = array[0..1] of string;
  145. (* this event is called when @link(PropertiesAsString) is read or written. TMPHexEditorEx
  146. has a fixed list of properties that can be read/written using PropertiesAsString.
  147. you can exclude some of the properties by setting IsPublic to False.
  148. *)
  149. TMPHQueryPublicPropertyEvent = procedure(Sender: TObject; const PropertyName:
  150. string;
  151. var IsPublic: boolean) of object;
  152. // enhanced hex editor
  153. TMPHexEditorEx = class(TCustomMPHexEditor)
  154. private
  155. { Private-Deklarationen }
  156. FCreateBackups: boolean;
  157. FBackupFileExt: string;
  158. FOleDragDrop: boolean;
  159. FDropTarget: TMPHDropTarget;
  160. FOleFormat: array[TMPHOLEOperation] of TClipFormat;
  161. FOleDragging, FOleStartDrag: boolean;
  162. FOleDragX, FOleDragY: integer;
  163. FOleWasTarget: boolean;
  164. FPrintOptions: TMPHPrintOptions;
  165. FPrintPages: integer;
  166. FPrintFont: TFont;
  167. FUseEditorFontForPrinting: boolean;
  168. FClipboardAsHexText: boolean;
  169. FClipData: IDataObject;
  170. FFlushClipboardAtShutDown: boolean;
  171. FSupportsOtherClipFormats: boolean;
  172. FOffsetPopupMenu: TPopupMenu;
  173. FZoomOnWheel: boolean;
  174. FPaintUpdateCounter: integer;
  175. FOnQueryPublicProperty: TMPHQueryPublicPropertyEvent;
  176. FHasDoubleClicked: boolean;
  177. FBookmarksNoChange: boolean;
  178. FCreateUndoOnUndoUpdate: boolean;
  179. FModifiedNoUndo: boolean;
  180. procedure SetOleDragDrop(const Value: boolean);
  181. function OLEHasSupportedFormat(const dataObj: IDataObject;
  182. const Formats: array of TClipFormat; var Format: TClipFormat): boolean;
  183. function GetMyOLEFormats: TClipFormats;
  184. procedure WMDestroy(var Message: TWMDestroy); message WM_DESTROY;
  185. procedure SetPrintOptions(const Value: TMPHPrintOptions);
  186. function PrintToCanvas(ACanvas: TCanvas; const APage: integer;
  187. const AMargins: TRect): integer;
  188. function PrinterMarginRect: TRect;
  189. procedure SetPrintFont(const Value: TFont);
  190. procedure SetOffsetPopupMenu(const Value: TPopupMenu);
  191. function GetOffsetPopupMenu: TPopupMenu;
  192. function GetBookmarksAsString: string;
  193. procedure SetBookMarksAsString(Value: string);
  194. protected
  195. { Protected-Deklarationen }
  196. function CanCreateUndo(const aKind: TMPHUndoFlag; const aCount, aReplCount:
  197. integer): Boolean; override;
  198. {$IFDEF DELPHI6UP}
  199. // @exclude()
  200. function GetPropertiesAsString: string; virtual;
  201. // @exclude()
  202. procedure SetPropertiesAsString(const Value: string); virtual;
  203. // @exclude()
  204. function IsPropPublic(PropName: string): boolean; virtual;
  205. {$ENDIF}
  206. // @exclude(check if in offset col, if yes, popup offsetcontextmenu)
  207. procedure Notification(AComponent: TComponent; Operation: TOperation);
  208. override;
  209. {$IFDEF DELPHI6UP}
  210. // @exclude()
  211. procedure DoContextPopup(MousePos: TPoint; var Handled: boolean); override;
  212. {$ENDIF}
  213. // @exclude(parse control keys)
  214. procedure KeyDown(var Key: word; Shift: TShiftState); override;
  215. // @exclude(overwrite mouse wheel for zooming)
  216. function DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint): boolean;
  217. override;
  218. // @exclude(overwrite mouse wheel for zooming)
  219. function DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint): boolean;
  220. override;
  221. // @exclude(create backups in savefile)
  222. procedure PrepareOverwriteDiskFile; override;
  223. // @exclude(overwrite mouse handling for ole drag and drop)
  224. procedure MouseMove(Shift: TShiftState; X, Y: integer); override;
  225. // @exclude(overwrite mouse handling for ole drag and drop)
  226. procedure MouseUp(Button: TMouseButton; Shift: TShiftState; X, Y: integer);
  227. override;
  228. // @exclude(overwrite mouse handling for ole drag and drop)
  229. procedure MouseDown(Button: TMouseButton; Shift: TShiftState; X, Y:
  230. integer);
  231. override;
  232. // @exclude(reset drop target's HWND)
  233. procedure CreateWnd; override;
  234. // @exclude(supported dnd/clipboard data available?)
  235. function SupportsOLEData(const dataObj: IDataObject; const grfKeyState:
  236. longint; const pt: TPoint; var dwEffect: longint; const Operation:
  237. TMPHOLEOperation): HRESULT;
  238. // @exclude(insert ole-dropped data)
  239. function InsertOLEData(const dataObj: IDataObject; const grfKeyState:
  240. longint; const pt: TPoint; var dwEffect: longint; const Operation:
  241. TMPHOLEOperation): HRESULT;
  242. // @exclude(modify drageffect depending on key states and data format)
  243. function ModifyOLEDropEffect(const grfKeyState: longint; const pt: TPoint;
  244. var dwEffect: longint): HRESULT;
  245. // @exclude(paint handler)
  246. procedure Paint; override;
  247. // @exclude(doubleclick handler for unit selection)
  248. procedure DblClick; override;
  249. // @exclude(override to avoid much updates when using setbookmarksasstring);
  250. procedure BookmarkChanged; override;
  251. public
  252. { Public-Deklarationen }
  253. // @exclude(Init)
  254. constructor Create(AOwner: TComponent); override;
  255. // @exclude(Done)
  256. destructor Destroy; override;
  257. // see inherited @inherited
  258. procedure WriteBuffer(const Buffer; const Index, Count: Integer); override;
  259. (* if set to True (default is False), an undo record is automatically created on calling
  260. @link(UndoBeginUpdate) and on calling @link(UndoEndUpdate) the record is deleted if the
  261. data has not been changed between UndoBegin- and UndoEndUpdate *)
  262. property CreateUndoOnUndoUpdate: boolean read FCreateUndoOnUndoUpdate write
  263. FCreateUndoOnUndoUpdate;
  264. (* each call to BeginUpdate increments an internal counter that prevents from repainting
  265. (see also @link(EndUpdate))
  266. *)
  267. function BeginUpdate: integer;
  268. (* each call to EndUpdate decrements an internal counter that prevents from repainting.
  269. the return value is the value of this counter. if the counter is reset to zero,
  270. repainting is permitted again (see also @link(BeginUpdate))
  271. *)
  272. function EndUpdate: integer;
  273. (* each call to UndoBeginUpdate increments an internal counter that prevents using
  274. undo storage and also disables undo functionality (see also @link(UndoEndUpdate))
  275. *)
  276. function UndoBeginUpdate(const StrUndoDesc: string = ''): integer;
  277. reintroduce;
  278. (* each call to UndoEndUpdate decrements an internal counter that prevents using
  279. undo storage and also disables undo functionality. the return value is the value
  280. of this counter. if the counter is reset to zero, undo creation is permitted again
  281. (see also @link(UndoBeginUpdate))
  282. *)
  283. function UndoEndUpdate: integer; override;
  284. // create an undo for a range of bytes
  285. procedure CreateRangeUndo(const aStart, aCount: integer; sDesc: string);
  286. // is pasting from clipboard possible?
  287. function CanPaste: boolean;
  288. // is copying to clipboard possible?
  289. function CanCopy: boolean;
  290. // is cutting to clipboard possible?
  291. function CanCut: boolean;
  292. // copy selection to clipboard
  293. function CBCopy: boolean;
  294. // cut selection to clipboard
  295. function CBCut: boolean;
  296. // paste clipboard's contents over current selection
  297. function CBPaste: boolean;
  298. // do we own the clipboard data?
  299. function OwnsClipBoard: boolean;
  300. // flush or empty the clipboard (if we own the IDataObject)
  301. procedure ReleaseClipboard(const Flush: boolean);
  302. // save to file (overwrite)
  303. procedure Save;
  304. // @exclude(dump undo storage)
  305. function DumpUndoStorage(const FileName: string): boolean;
  306. (* creates a TMetaFile object and renders the specified page
  307. on its canvas. Freeing of the TMetaFile is up to the caller!
  308. *)
  309. function PrintPreview(const Page: integer): TMetaFile;
  310. (* print the given page to the default printer.
  311. Printer.BeginDoc, Printer.NewPage and Printer.EndDoc must be issued by the caller!
  312. *)
  313. procedure Print(const Page: integer);
  314. // get the number of pages to print
  315. function PrintNumPages: integer;
  316. // paste data (in clipboardmanner: check current selection and so on)
  317. procedure PasteData(P: Pointer; const ACount: integer; const UndoDesc: string
  318. = '');
  319. // get/set bookmarks as text (for storing in registry, ini-file)
  320. property BookMarksAsString: string read GetBookmarksAsString write
  321. SetBookMarksAsString;
  322. {$IFDEF DELPHI6UP}
  323. // get set properties as text (for storing in registry, ini-file);
  324. property PropertiesAsString: string read GetPropertiesAsString write
  325. SetPropertiesAsString;
  326. {$ENDIF}
  327. published
  328. { Published-Deklarationen }
  329. // create a backup on save ? (see also @link(BackupExtension))
  330. property CreateBackup: boolean read FCreateBackups write FCreateBackups
  331. default True;
  332. // add this extension to the file if making backups, see @link(CreateBackup)
  333. property BackupExtension: string read FBackupFileExt write FBackupFileExt;
  334. (* if set To True, OLE drag and drop will used automatically when dragging starts
  335. or supported OLE data has been dropped on the hex editor
  336. *)
  337. property OleDragDrop: boolean read FOleDragDrop write SetOleDragDrop default
  338. False;
  339. // if set to True, CF_TEXT on the clipboard will be treated as hex formatted text
  340. property ClipboardAsHexText: boolean read FClipboardAsHexText write
  341. FClipboardAsHexText default False;
  342. // flush or empty clipboard at shutdown
  343. property FlushClipboardAtShutDown: boolean read FFlushClipboardAtShutDown
  344. write FFlushClipboardAtShutDown default False;
  345. // do we support other formats than CF_MPHEXEDITOR and CF_HDROP?
  346. property SupportsOtherClipFormats: boolean read FSupportsOtherClipFormats
  347. write FSupportsOtherClipFormats default True;
  348. // print/preview options, see @link(TMPHPrintOptions)
  349. property PrintOptions: TMPHPrintOptions read FPrintOptions write
  350. SetPrintOptions;
  351. // print using this font
  352. property PrintFont: TFont read FPrintFont write SetPrintFont;
  353. // if set to True, the editor's font will be used for printing
  354. property UseEditorFontForPrinting: boolean read FUseEditorFontForPrinting
  355. write FUseEditorFontForPrinting default True;
  356. (* if this property is assigned to a TPopupMenu, it will be shown on right clicking
  357. the offset display pane. then the normal PopupMenu will open on right
  358. clicking the character and hex pane.
  359. *)
  360. property OffsetPopupMenu: TPopupMenu read GetOffsetPopupMenu write
  361. SetOffsetPopupMenu;
  362. // auto-zoom on mouse wheel?
  363. property ZoomOnWheel: boolean read FZoomOnWheel write FZoomOnWheel default
  364. True;
  365. (* this event is called when @link(PropertiesAsString) is read or written.
  366. (see @link(TMPHQueryPublicPropertyEvent))
  367. *)
  368. property OnQueryPublicProperty: TMPHQueryPublicPropertyEvent read
  369. FOnQueryPublicProperty write FOnQueryPublicProperty;
  370. // @exclude(inherited)
  371. property Align;
  372. // @exclude(inherited)
  373. property Anchors;
  374. // @exclude(inherited)
  375. property BiDiMode;
  376. // @exclude(inherited)
  377. property BorderStyle;
  378. // @exclude(inherited)
  379. property Constraints;
  380. // @exclude(inherited)
  381. property Ctl3D;
  382. // @exclude(inherited)
  383. property DragCursor;
  384. // @exclude(inherited)
  385. property DragKind;
  386. // @exclude(inherited)
  387. property DragMode;
  388. // @exclude(inherited)
  389. property Enabled;
  390. // @exclude(inherited)
  391. property Font;
  392. // @exclude(inherited)
  393. property ImeMode;
  394. // @exclude(inherited)
  395. property ImeName;
  396. // @exclude(inherited)
  397. property OnClick;
  398. // @exclude(inherited)
  399. property OnDblClick;
  400. // @exclude(inherited)
  401. property OnDragDrop;
  402. // @exclude(inherited)
  403. property OnDragOver;
  404. // @exclude(inherited)
  405. property OnEndDock;
  406. // @exclude(inherited)
  407. property OnEndDrag;
  408. // @exclude(inherited)
  409. property OnEnter;
  410. // @exclude(inherited)
  411. property OnExit;
  412. // @exclude(inherited)
  413. property OnKeyDown;
  414. // @exclude(inherited)
  415. property OnKeyPress;
  416. // @exclude(inherited)
  417. property OnKeyUp;
  418. // @exclude(inherited)
  419. property OnMouseDown;
  420. // @exclude(inherited)
  421. property OnMouseMove;
  422. // @exclude(inherited)
  423. property OnMouseUp;
  424. // @exclude(inherited)
  425. property OnMouseWheel;
  426. // @exclude(inherited)
  427. property OnMouseWheelDown;
  428. // @exclude(inherited)
  429. property OnMouseWheelUp;
  430. // @exclude(inherited)
  431. property OnStartDock;
  432. // @exclude(inherited)
  433. property OnStartDrag;
  434. // @exclude(inherited)
  435. property ParentBiDiMode;
  436. // @exclude(inherited)
  437. property ParentCtl3D;
  438. // @exclude(inherited)
  439. property ParentFont;
  440. // @exclude(inherited)
  441. property ParentShowHint;
  442. // @exclude(inherited)
  443. property PopupMenu;
  444. // @exclude(inherited)
  445. property ScrollBars;
  446. // @exclude(inherited)
  447. property ShowHint;
  448. // @exclude(inherited)
  449. property TabOrder;
  450. // @exclude(inherited)
  451. property TabStop;
  452. // @exclude(inherited)
  453. property Visible;
  454. // see inherited @inherited
  455. property BytesPerRow;
  456. // see inherited @inherited
  457. property BytesPerColumn;
  458. // see inherited @inherited
  459. property Translation;
  460. // see inherited @inherited
  461. property OffsetFormat;
  462. // see inherited @inherited
  463. property CaretKind;
  464. // see inherited @inherited
  465. property Colors;
  466. // see inherited @inherited
  467. property FocusFrame;
  468. // see inherited @inherited
  469. property SwapNibbles;
  470. // see inherited @inherited
  471. property MaskChar;
  472. // see inherited @inherited
  473. property NoSizeChange;
  474. // see inherited @inherited
  475. property AllowInsertMode;
  476. // see inherited @inherited
  477. property DrawGridLines;
  478. // see inherited @inherited
  479. property WantTabs;
  480. // see inherited @inherited
  481. property ReadOnlyView;
  482. // see inherited @inherited
  483. property HideSelection;
  484. // see inherited @inherited
  485. property GraySelectionIfNotFocused;
  486. // see inherited @inherited
  487. property GutterWidth;
  488. // see inherited @inherited
  489. property BookmarkBitmap;
  490. // see inherited @inherited
  491. property Version;
  492. // see inherited @inherited
  493. property MaxUndo;
  494. // see inherited @inherited
  495. property InsertMode;
  496. // see inherited @inherited
  497. property HexLowerCase;
  498. // see inherited @inherited
  499. property OnProgress;
  500. // see inherited @inherited
  501. property OnInvalidKey;
  502. // see inherited @inherited
  503. property OnTopLeftChanged;
  504. // see inherited @inherited
  505. property OnChange;
  506. // see inherited @inherited
  507. property DrawGutter3D;
  508. // see inherited @inherited
  509. property ShowRuler;
  510. // see inherited @inherited
  511. property BytesPerUnit;
  512. // see inherited @inherited
  513. property RulerBytesPerUnit;
  514. // see inherited @inherited
  515. property ShowPositionIfNotFocused;
  516. // see inherited @inherited
  517. property OnSelectionChanged;
  518. // see inherited @inherited
  519. property UnicodeChars;
  520. // see inherited @inherited
  521. property UnicodeBigEndian;
  522. // see inherited @inherited
  523. property OnDrawCell;
  524. // see inherited @inherited
  525. property OnBookmarkChanged;
  526. // see inherited @inherited
  527. property OnGetOffsetText;
  528. // see inherited @inherited
  529. property BytesPerBlock;
  530. // see inherited @inherited
  531. property SeparateBlocksInCharField;
  532. // see inherited @inherited
  533. property FindProgress;
  534. // see inherited @inherited
  535. property RulerNumberBase;
  536. end;
  537. // @exclude(ole drop target class)
  538. TMPHDropTarget = class(TInterfacedObject, IDropTarget)
  539. private
  540. FEditor: TMPHexEditorEx;
  541. FEditorHandle: THandle;
  542. FActive: boolean;
  543. procedure SetActive(const Value: boolean);
  544. public
  545. constructor Create(Editor: TMPHexEditorEx);
  546. procedure BeforeDestruction; override;
  547. function DragEnter(const dataObj: IDataObject; grfKeyState: longint; pt:
  548. TPoint; var dwEffect: longint): HResult; stdcall;
  549. function DragOver(grfKeyState: longint; pt: TPoint; var dwEffect: longint):
  550. HResult; stdcall;
  551. function DragLeave: HResult; stdcall;
  552. function Drop(const dataObj: IDataObject; grfKeyState: longint; pt: TPoint;
  553. var dwEffect: longint): HResult; stdcall;
  554. property Active: boolean read FActive write SetActive;
  555. end;
  556. // print / preview options
  557. TMPHPrintOptions = class(TPersistent)
  558. private
  559. FMargins: TRect;
  560. FHeaders: TMPHPrintHeaders;
  561. FFlags: TMPHPrintFlags;
  562. function GetHeader(const Index: integer): string;
  563. function GetMargin(const Index: integer): integer;
  564. procedure SetHeader(const Index: integer; const Value: string);
  565. procedure SetMargin(const Index, Value: integer);
  566. public
  567. // @exclude(Init)
  568. constructor Create;
  569. // @exclude()
  570. procedure Assign(Source: TPersistent); override;
  571. published
  572. // left margin in Millimeters
  573. property MarginLeft: integer index 1 read GetMargin write SetMargin;
  574. // top margin in Millimeters
  575. property MarginTop: integer index 2 read GetMargin write SetMargin;
  576. // right margin in Millimeters
  577. property MarginRight: integer index 3 read GetMargin write SetMargin;
  578. // bottom margin in Millimeters
  579. property MarginBottom: integer index 4 read GetMargin write SetMargin;
  580. (* this line will be rendered on top of the printed page, some characters have special meanings:<br><br>
  581. - the string may contain three parts separated by a "|" (pipe) character (left|center|right)<br>
  582. - each part knows some special variables:
  583. <ul>
  584. <li><b>%f</b>: substituted with the filename part of the editor's filename</li>
  585. <li><b>%F</b>: substituted with the expanded name of the editor's filename</li>
  586. <li><b>%p</b>: substituted with the number of the current page</li>
  587. <li><b>%P</b>: substituted with the number of pages</li>
  588. <li><b>%t</b>: substituted with the current time</li>
  589. <li><b>%d</b>: substituted with the current date</li>
  590. <li><b>%&gt;</b>: substituted with the long description of the editor's current @link(Translation)</li>
  591. <li><b>%&lt;</b>: substituted with the short description of the editor's current @link(Translation)</li>
  592. </ul>
  593. *)
  594. property PageHeader: string index 0 read GetHeader write SetHeader;
  595. // this line will be rendered on the bottom of the printed page (see @link(PageHeader))
  596. property PageFooter: string index 1 read GetHeader write SetHeader;
  597. (* printing flags:<br><br>
  598. - pfSelectionOnly: only print data currently selected<br>
  599. - pfSelectionBold: render the current selection using either a bold font or inverted colors (if pfSelectionOnly isn't set)<br>
  600. - pfMonochrome: don't use colors, print/preview black on white<br>
  601. - pfUseBackgroundColor: fill the margin rect with the editor's background color (if pfMonochrome isn't set)<br>
  602. - pfCurrentViewOnly: just print the data currently displayed
  603. *)
  604. property Flags: TMPHPrintFlags read FFlags write FFlags;
  605. end;
  606. // default print margins
  607. const
  608. MPH_DEF_PRINT_MARGINS: TRect = (Left: 20; Top: 15; Right: 25; Bottom: 25);
  609. implementation
  610. uses
  611. Consts, StdCtrls, ShellAPI, ComObj, TypInfo;
  612. resourcestring
  613. // error messages
  614. ERR_NOFILE = 'No filename specified';
  615. ERR_INVALID_PAGE = 'Invalid page index';
  616. ERR_PRINTING_FAILED = 'Printing failed';
  617. ERR_BACKUP_DELETE = 'Cannot delete previous backup %s. (%s)';
  618. ERR_BACKUP_CREATE = 'Cannot create backup %s. (%s)';
  619. ERR_INVALID_BOOKFMT = 'Invalid bookmark format';
  620. // additional undo descriptions
  621. UNDO_PASTECB = 'Paste from clipboard';
  622. UNDO_CUTCB = 'Cut to clipboard';
  623. UNDO_DROPPED = 'Data dropped';
  624. UNDO_MOVED = 'Data moved';
  625. // select clipb/ole format dialog strings
  626. SELECT_FORMAT_CAPTION = 'Select data format';
  627. SELECT_FORMAT_ASHEX = 'Hex text';
  628. // when data dropped to explorer, give it this filename; first %s filename w/o ext, (second %s original file ext)
  629. STR_SCRAPFILE = 'Dump of %s.bin';
  630. // native clipboard format name
  631. MPTH_CF = 'TMPHexeditorEx Clipboard Format';
  632. // predefined clipboard format names
  633. STR_CF_TEXT = 'Text';
  634. STR_CF_BITMAP = 'Bitmap Picture';
  635. STR_CF_METAFILEPICT = 'Metafile Picture';
  636. STR_CF_SYLK = 'Microsoft Symbolic Link (SYLK) data';
  637. STR_CF_DIF = 'Software Arts'' Data Interchange Format';
  638. STR_CF_TIFF = 'Tagged Image File Format (TIFF) Picture';
  639. STR_CF_OEMTEXT = 'OEM Text';
  640. STR_CF_DIB = 'Device Independent Bitmap Picture';
  641. STR_CF_PALETTE = 'Color Palete';
  642. STR_CF_PENDATA = 'Pen Data';
  643. STR_CF_RIFF = 'RIFF Audio Data';
  644. STR_CF_WAVE = 'Wave Audio';
  645. STR_CF_UNICODETEXT = 'Unicode Text';
  646. STR_CF_ENHMETAFILE = 'Enhanced Metafile Picture';
  647. STR_CF_HDROP = 'File List';
  648. STR_CF_LOCALE = 'Text Locale';
  649. type
  650. // my clipboard data struct
  651. PClipData = ^TClipData;
  652. TClipData = packed record
  653. Signature: DWORD;
  654. Version: DWORD;
  655. Size: integer;
  656. Data: array[0..0] of char;
  657. end;
  658. PRegEditHexData = ^TRegEditHexData;
  659. TRegEditHexData = packed record
  660. Size: integer;
  661. Data: array[0..0] of char;
  662. end;
  663. const
  664. // signature of own format clipboard data
  665. CLIP_SIG = $4854504D; // MPTH;
  666. // version of own format clipboard data
  667. CLIP_VER = $00010001;
  668. // initial file extension of backups
  669. BACKUP_EXT = '.bak';
  670. // not so predefined common/known clipboard format names
  671. CFSTR_RTF = 'Rich Text Format';
  672. CFSTR_LOGICALPERFORMEDDROPEFFECT = 'Logical Performed DropEffect';
  673. CFSTR_REGEDIT_HEXDATA = 'RegEdit_HexData';
  674. CFSTR_HTML = 'HTML Format';
  675. var
  676. // custom/ shell CF format
  677. CF_MPHEXEDITOR,
  678. CF_RTF,
  679. CF_FILECONTENTS,
  680. CF_PERFORMEDDROPEFFECT,
  681. CF_LOGICALPERFORMEDDROPEFFECT,
  682. CF_FILEDESCRIPTOR,
  683. CF_HTML,
  684. CF_REGEDIT_HEXDATA: TClipFormat;
  685. type
  686. // private idataobject format enumerator
  687. TFormatEnum = class
  688. private
  689. FFormats: array of TFormatETC;
  690. public
  691. constructor Create(const dataObject: IDataObject);
  692. destructor Destroy; override;
  693. function HasFormat(const cfFormat: TClipFormat): boolean;
  694. function GetFormatETC(const cfFormat: TClipFormat): TFormatETC;
  695. end;
  696. const
  697. // number of clip formats that we can provide
  698. MY_SUPPORTED_FORMATS = 4;
  699. type
  700. // ole "public" format enumerator for own data
  701. TMPHEnumFormatETC = class(TInterfacedObject, IEnumFormatETC)
  702. private
  703. FFormats: packed array[0..MY_SUPPORTED_FORMATS - 1] of TFormatETC;
  704. FIndex: integer;
  705. public
  706. constructor Create;
  707. function Next(celt: longint; out elt; pceltFetched: PLongint): HResult;
  708. stdcall;
  709. function Skip(celt: longint): HResult; stdcall;
  710. function Reset: HResult; stdcall;
  711. function Clone(out Enum: IEnumFormatEtc): HResult; stdcall;
  712. end;
  713. // ole drop source
  714. TMPHDropSource = class(TInterfacedObject, IDropSource)
  715. public
  716. function QueryContinueDrag(fEscapePressed: BOOL; grfKeyState: longint):
  717. HResult; stdcall;
  718. function GiveFeedback(dwEffect: longint): HResult; stdcall;
  719. end;
  720. // ole data container
  721. TMPHDataObject = class(TInterfacedObject, IDataObject)
  722. private
  723. FData: Pointer;
  724. FDataSize: integer;
  725. FFileName: ShortString;
  726. FHasDropEffect: boolean;
  727. FDropEffect: cardinal;
  728. FTextAsHex: boolean;
  729. FSwapNibbles: boolean;
  730. public
  731. constructor Create(Data: Pointer; DataSize: integer; ScrapFileName:
  732. ShortString; TextAsHex, SwapNibbles: boolean);
  733. constructor CreateFromStream(Stream: TStream; Position, DataSize: integer;
  734. ScrapFileName: ShortString; TextAsHex, SwapNibbles: boolean);
  735. procedure BeforeDestruction; override;
  736. function GetData(const formatetcIn: TFormatEtc; out medium: TStgMedium):
  737. HResult; stdcall;
  738. function GetDataHere(const formatetc: TFormatEtc; out medium: TStgMedium):
  739. HResult; stdcall;
  740. function QueryGetData(const formatetc: TFormatEtc): HResult; stdcall;
  741. function GetCanonicalFormatEtc(const formatetc: TFormatEtc; out
  742. formatetcOut: TFormatEtc): HResult; stdcall;
  743. function SetData(const formatetc: TFormatEtc; var medium: TStgMedium;
  744. fRelease: BOOL): HResult; stdcall;
  745. function EnumFormatEtc(dwDirection: longint; out enumFormatEtc:
  746. IEnumFormatEtc): HResult; stdcall;
  747. function DAdvise(const formatetc: TFormatEtc; advf: longint; const advSink:
  748. IAdviseSink; out dwConnection: longint): HResult; stdcall;
  749. function DUnadvise(dwConnection: longint): HResult; stdcall;
  750. function EnumDAdvise(out enumAdvise: IEnumStatData): HResult; stdcall;
  751. end;
  752. // draw hex on canvas
  753. TMPHCanvasPrinter = class(TObject)
  754. private
  755. FMargins: TRect;
  756. FHeaders,
  757. FPrintHeaders: TMPHPrintHeaders;
  758. FLinesPerPage: integer;
  759. FFlags: TMPHPrintFlags;
  760. FPages: integer;
  761. FEditor: TMPHexEditorEx;
  762. FCanvas: TCanvas;
  763. function GetLinesPerPage: integer;
  764. function BuildHeader(const S: string; const Page: integer): string;
  765. protected
  766. function DrawOrCalc(const JustCalc: boolean; const Page: integer): integer;
  767. public
  768. constructor Create(AEditor: TMPHexEditorEx; ACanvas: TCanvas; AFlags:
  769. TMPHPrintFlags; AMargins: TRect; AHeaders: TMPHPrintHeaders);
  770. procedure Draw(const Page: integer);
  771. property LinesPerPage: integer read GetLinesPerPage;
  772. property Pages: integer read FPages;
  773. end;
  774. var
  775. // most recent selected clip format
  776. LAST_USED_CF: integer = -1;
  777. // returns the stgmedium struct for a given idataobject/format specification
  778. function GetIDataObjectData(const dataObj: IDataObject; const Format:
  779. TClipFormat; out Medium: TStgMedium): HRESULT;
  780. var
  781. LobjEnum: TFormatEnum;
  782. begin
  783. LobjEnum := TFormatEnum.Create(dataObj);
  784. try
  785. if not LobjEnum.HasFormat(Format) then
  786. Result := E_FAIL
  787. else
  788. Result := dataObj.GetData(LobjEnum.GetFormatETC(Format), Medium);
  789. finally
  790. LobjEnum.Free;
  791. end;
  792. end;
  793. // cast/copy hglobal to data structure depending on the format
  794. function GetSomeData(const PData: Pointer; const HGlobal: THandle; Format:
  795. TClipFormat; const DataSize: integer; const UnicodeBigEndian: Boolean):
  796. string;
  797. var
  798. LWStrTemp: widestring;
  799. LRecBmpHeader: TBitmapFileheader;
  800. LRecPalette: TMaxLogPalette;
  801. LIntTemp: integer;
  802. LbmpTemp: TBitmap;
  803. LmefTemp: TMetaFile;
  804. LmstData: TMemoryStream;
  805. LIntLoop: integer;
  806. begin
  807. Result := '';
  808. // to use case..of (cf_rtf is not a constant)
  809. if (Format = CF_RTF) or (Format = CF_HTML) then
  810. Format := CF_TEXT;
  811. if Format = CF_MPHEXEDITOR then
  812. begin
  813. with PClipData(PData)^ do
  814. if (Signature = CLIP_SIG) and (Version = CLIP_VER) then
  815. SetString(Result, Data, Size)
  816. end
  817. else if Format = CF_REGEDIT_HEXDATA then
  818. begin
  819. with PRegEditHexData(PData)^ do
  820. SetString(Result, Data, Size);
  821. end
  822. else
  823. case Format of
  824. CF_TEXT,
  825. CF_OEMTEXT: Result := PChar(PData);
  826. CF_UNICODETEXT:
  827. begin
  828. LWStrTemp := PWideChar(PData);
  829. if UnicodeBigEndian then
  830. begin
  831. for LIntLoop := 1 to Length(LWstrTemp) do
  832. SwapWideChar(LWstrTemp[LIntLoop]);
  833. end;
  834. {$WARNINGS OFF}
  835. // don't convert, get wide data as is
  836. SetString(Result, PChar(LWStrTemp), Length(LWStrTemp) *
  837. (sizeof(widechar) div sizeof(char)));
  838. {$WARNINGS ON}
  839. end;
  840. CF_LOCALE:
  841. begin
  842. // locale id , word pointed to by the global handle
  843. SetLength(Result, sizeof(word));
  844. Move(PWord(PData)^, Result[1], sizeof(word));
  845. end;
  846. CF_DIB:
  847. begin
  848. // stored as bitmap without header, so prefix a bmp header
  849. FillChar(LRecBMPHeader, sizeof(LRecBMPHeader), #0);
  850. LRecBMPHeader.bfType := $4D42; // BM
  851. SetLength(Result, sizeof(LRecBMPHeader) + DataSize);
  852. Move(LRecBMPHeader, Result[1], sizeof(LRecBmpHeader));
  853. Move(PData^, Result[1 + sizeof(LRecBMPHeader)], DataSize);
  854. end;
  855. CF_PALETTE:
  856. begin
  857. // copy palette entries
  858. LIntTemp := 0;
  859. if (GetObject(HGlobal, sizeof(LIntTemp), @LIntTemp) <> 0) and (LIntTemp
  860. > 0) then
  861. begin
  862. with LRecPalette do
  863. begin
  864. palVersion := $0300;
  865. palNumEntries := LIntTemp;
  866. GetPaletteEntries(HGlobal, 0, LIntTemp, palPalEntry);
  867. end;
  868. SetLength(Result, sizeof(TLogPalette) + ((LintTemp - 1) *
  869. sizeof(TPaletteEntry)));
  870. Move(LRecPalette, Result[1], Length(Result));
  871. end;
  872. end;
  873. CF_BITMAP:
  874. begin
  875. // data not stored in global mem, but as a bitmap handle
  876. LbmpTemp := TBitmap.Create;
  877. try
  878. LbmpTemp.Handle := CopyImage(HGlobal, IMAGE_BITMAP, 0, 0,
  879. LR_COPYRETURNORG);
  880. LmstData := TMemoryStream.Create;
  881. try
  882. LbmpTemp.SaveToStream(LmstData);
  883. SetString(Result, PChar(LmstData.Memory), LmstData.Size);
  884. finally
  885. LmstData.Free;
  886. end;
  887. finally
  888. LbmpTemp.Free;
  889. end;
  890. end;
  891. CF_METAFILEPICT:
  892. begin
  893. // global mem contains mf struct
  894. LIntTemp := GetMetaFileBitsEx(PMetafilePict(PData)^.hMF, 0, nil);
  895. if LIntTemp > 0 then
  896. begin
  897. SetLength(Result, LIntTemp);
  898. GetMetaFileBitsEx(PMetafilePict(PData)^.hMF, LIntTemp, @Result[1]);
  899. end;
  900. end;
  901. CF_ENHMETAFILE:
  902. begin
  903. // emf handle
  904. LmefTemp := TMetaFile.Create;
  905. try
  906. LmefTemp.Handle := CopyEnhMetafile(HGlobal, nil);
  907. LmstData := TMemoryStream.Create;
  908. try
  909. LmefTemp.SaveToStream(LmstData);
  910. SetString(Result, PChar(LmstData.Memory), LmstData.Size);
  911. finally
  912. LmstData.Free;
  913. end;
  914. finally
  915. LmefTemp.Free;
  916. end;
  917. end;
  918. else
  919. // format not yet known
  920. SetString(Result, PChar(PData), DataSize);
  921. end;
  922. end;
  923. type
  924. // special dialog for format selection
  925. TFormatSelDialog = class(TForm)
  926. private
  927. LbtnOK: TButton;
  928. LbtnCancel: TButton;
  929. LlbxFormats: TListBox;
  930. LcbxTextAsHex: TCheckBox;
  931. procedure ListDoubleClick(Sender: TObject);
  932. procedure ListSelect(Sender: TObject);
  933. end;
  934. // select a format out of an array of available formats
  935. function SelectClipFormat(const Formats: array of TClipFormat; var Format:
  936. TClipFormat; var TextIsHexData: boolean): boolean;
  937. var
  938. LfrmDialog: TFormatSelDialog;
  939. LIntLoop: integer;
  940. LWrdCurrent: TClipFormat;
  941. LStrFormatName: string;
  942. LszBuffer: array[0..511] of char;
  943. begin
  944. Result := False;
  945. // create and show a dialog for clipboard format selection
  946. LfrmDialog := TFormatSelDialog.CreateNew(Application);
  947. with lfrmDialog do
  948. try
  949. BorderStyle := bsDialog;
  950. Width := Screen.Width div 4;
  951. Height := Screen.Height div 4;
  952. {$IFDEF DELPHI6UP}
  953. Position := poOwnerFormCenter;
  954. {$ELSE}
  955. Position := poScreenCenter;
  956. {$ENDIF}
  957. Caption := SELECT_FORMAT_CAPTION;
  958. LbtnOK := TButton.Create(LfrmDialog);
  959. LbtnCancel := TButton.Create(LfrmDialog);
  960. LcbxTextAsHex := TCheckBox.Create(LfrmDialog);
  961. LlbxFormats := TListBox.Create(LfrmDialog);
  962. try
  963. with lbtnOK do
  964. begin
  965. Parent := LfrmDialog;
  966. ModalResult := mrOk;
  967. Caption := SOKButton;
  968. Default := True;
  969. Width := (LfrmDialog.Width div 2) - 32;
  970. Top := LfrmDialog.ClientHeight - Height - 8;
  971. Left := 16;
  972. Enabled := False;
  973. end;
  974. with LbtnCancel do
  975. begin
  976. Parent := LfrmDialog;
  977. ModalResult := mrCancel;
  978. Cancel := True;
  979. Caption := SCancelButton;
  980. Width := (LfrmDialog.Width div 2) - 32;
  981. Top := LfrmDialog.ClientHeight - Height - 8;
  982. Left := LfrmDialog.ClientWidth - Width - 16;
  983. end;
  984. with LcbxTextAsHex do
  985. begin
  986. Parent := LfrmDialog;
  987. Enabled := False;
  988. Caption := SELECT_FORMAT_ASHEX;
  989. Top := LbtnCancel.Top - Height - 8;
  990. Left := LbtnOK.Left;
  991. Width := LfrmDialog.ClientWidth - Left;
  992. Checked := TextIsHexData;
  993. end;
  994. with LlbxFormats do
  995. begin
  996. Parent := LfrmDialog;
  997. Align := alTop;
  998. Height := LfrmDialog.ClientHeight - 16 - LbtnCancel.Height - 8 -
  999. LcbxTextAsHex.Height;
  1000. OnDblClick := ListDoubleClick;
  1001. OnClick := ListSelect;
  1002. for LIntLoop := Low(Formats) to High(Formats) do
  1003. begin
  1004. LWrdCurrent := Formats[LIntLoop];
  1005. case LWrdCurrent of
  1006. CF_TEXT: LStrFormatName := STR_CF_TEXT;
  1007. CF_BITMAP: LStrFormatName := STR_CF_BITMAP;
  1008. CF_METAFILEPICT: LStrFormatName := STR_CF_METAFILEPICT;
  1009. CF_SYLK: LStrFormatName := STR_CF_SYLK;
  1010. CF_DIF: LStrFormatName := STR_CF_DIF;
  1011. CF_TIFF: LStrFormatName := STR_CF_TIFF;
  1012. CF_OEMTEXT: LStrFormatName := STR_CF_OEMTEXT;
  1013. CF_DIB: LStrFormatName := STR_CF_DIB;
  1014. CF_PALETTE: LStrFormatName := STR_CF_PALETTE;
  1015. CF_PENDATA: LStrFormatName := STR_CF_PENDATA;
  1016. CF_RIFF: LStrFormatName := STR_CF_RIFF;
  1017. CF_WAVE: LStrFormatName := STR_CF_WAVE;
  1018. CF_UNICODETEXT: LStrFormatName := STR_CF_UNICODETEXT;
  1019. CF_ENHMETAFILE: LStrFormatName := STR_CF_ENHMETAFILE;
  1020. CF_HDROP: LStrFormatName := STR_CF_HDROP;
  1021. CF_LOCALE: LStrFormatName := STR_CF_LOCALE;
  1022. else
  1023. SetString(LStrFormatName, LszBuffer,
  1024. GetClipboardFormatName(LWrdCurrent, LszBuffer,
  1025. sizeof(LszBuffer)));
  1026. LStrFormatName := Trim(LStrFormatName);
  1027. end;
  1028. if LStrFormatName = '' then
  1029. LStrFormatName := '(' + IntToRadix(LWrdCurrent, 10) + ')';
  1030. Items.AddObject(LStrFormatName, Pointer(LWrdCurrent));
  1031. LbtnOK.Enabled := True;
  1032. ItemIndex := Items.IndexOfObject(Pointer(LAST_USED_CF));
  1033. if ItemIndex = -1 then
  1034. ItemIndex := 0;
  1035. end;
  1036. end;
  1037. // enable hextext checkbox depending on selected format
  1038. ListSelect(nil);
  1039. if (ShowModal = mrOk) and (LlbxFormats.ItemIndex > -1) then
  1040. begin
  1041. Format := TClipFormat(LlbxFormats.Items.Objects[LlbxFormats.ItemIndex]);
  1042. if Format in [CF_TEXT, CF_OEMTEXT] then
  1043. TextIsHexData := LcbxTextAsHex.Checked;
  1044. Result := True;
  1045. LAST_USED_CF := Format;
  1046. end;
  1047. finally
  1048. // not sure if they automatically get freed?
  1049. LbtnOK.Free;
  1050. LbtnCancel.Free;
  1051. LcbxTextAsHex.Free;
  1052. LlbxFormats.Free;
  1053. end;
  1054. finally
  1055. Free;
  1056. end;
  1057. end;
  1058. // query a data object's supported formats and check if we can "paste" them
  1059. function QueryOLEFormat(const SupportedFormats: array of TClipFormat; const
  1060. dataObj: IDataObject; var Format: TClipFormat; var TextIsHexData: boolean):
  1061. boolean;
  1062. var
  1063. LWrdFormats: array of TClipFormat;
  1064. LIntLoop: integer;
  1065. LobjEnum: TFormatEnum;
  1066. begin
  1067. Result := False;
  1068. LWrdFormats := nil;
  1069. LobjEnum := TFormatEnum.Create(dataObj);
  1070. try
  1071. // enum all available formats
  1072. if Length(SupportedFormats) > 0 then
  1073. begin
  1074. for LIntLoop := Low(SupportedFormats) to High(SupportedFormats) do
  1075. if LObjEnum.HasFormat(SupportedFormats[LIntLoop]) then
  1076. begin
  1077. SetLength(LWrdFormats, Succ(Length(LWrdFormats)));
  1078. LWrdFormats[Pred(Length(LWrdFormats))] := SupportedFormats[LIntLoop];
  1079. end;
  1080. case Length(LWrdFormats) of
  1081. 0: Exit;
  1082. 1:
  1083. begin
  1084. Format := LWrdFormats[0];
  1085. Result := True;
  1086. Exit;
  1087. end;
  1088. else
  1089. // show a dialog for data format selection
  1090. Result := SelectClipFormat(LWrdFormats, Format, TextIsHexData);
  1091. end;
  1092. end;
  1093. finally
  1094. LObjEnum.Free;
  1095. LWrdFormats := nil;
  1096. end;
  1097. end;
  1098. { TMPHexEditorEx }
  1099. // constructor
  1100. constructor TMPHexEditorEx.Create(AOwner: TComponent);
  1101. begin
  1102. inherited;
  1103. FModifiedNoUndo := False;
  1104. FCreateUndoOnUndoUpdate := False;
  1105. FBookmarksNoChange := False;
  1106. FHasDoubleClicked := False;
  1107. FPaintUpdateCounter := 0;
  1108. FClipData := nil;
  1109. FZoomOnWheel := True;
  1110. FCreateBackups := True;
  1111. FBackupFileExt := BACKUP_EXT;
  1112. FOleDragDrop := False;
  1113. FOleStartDrag := False;
  1114. FOleDragging := False;
  1115. FClipboardAsHexText := False;
  1116. FFlushClipboardAtShutDown := False;
  1117. FSupportsOtherClipFormats := True;
  1118. FPrintOptions := TMPHPrintOptions.Create;
  1119. FPrintFont := TFont.Create;
  1120. FPrintFont.Assign(Font);
  1121. FUseEditorFontForPrinting := True;
  1122. FOffsetPopupMenu := nil;
  1123. if not (csDesigning in ComponentState) then
  1124. FDropTarget := TMPHDropTarget.Create(self); // not in delphi ide
  1125. end;
  1126. // destructor
  1127. destructor TMPHexEditorEx.Destroy;
  1128. begin
  1129. // empty or flush clipboard
  1130. ReleaseClipboard(FFlushClipboardAtShutDown);
  1131. FPrintOptions.Free;
  1132. FPrintFont.Free;
  1133. if not (csDesigning in ComponentState) then
  1134. FDropTarget.Free;
  1135. inherited;
  1136. end;
  1137. // cb copy possible
  1138. function TMPHexEditorEx.CanCopy: boolean;
  1139. begin
  1140. Result := (DataSize > 0) and (SelCount > 0);
  1141. end;
  1142. // cb cut possible
  1143. function TMPHexEditorEx.CanCut: boolean;
  1144. begin
  1145. Result := CanCopy and not (ReadOnlyView or NoSizeChange);
  1146. end;
  1147. // cb paste possible
  1148. function TMPHexEditorEx.CanPaste: boolean;
  1149. var
  1150. LifData: IDataObject;
  1151. LIntEffect: integer;
  1152. begin
  1153. LIntEffect := DROPEFFECT_COPY;
  1154. Result := (not (ReadOnlyView (*or NoSizeChange*))) and
  1155. Succeeded(OLEGetClipboard(LifData)) and (SupportsOLEData(LifData, 0,
  1156. Point(0,
  1157. 0), LintEffect, oleClipboard) = S_OK);
  1158. if Result and NoSizeChange then
  1159. Result := DataSize > 0;
  1160. end;
  1161. // copy to clipboard
  1162. function TMPHexEditorEx.CBCopy: boolean;
  1163. begin
  1164. Result := CanCopy;
  1165. if Result then
  1166. begin
  1167. WaitCursor;
  1168. try
  1169. FClipData := TMPHDataObject.CreateFromStream(DataStorage, Min(SelStart,
  1170. SelEnd), SelCount, ExtractFileName(FileName), FClipboardAsHexText,
  1171. SwapNibbles);
  1172. OleCheck(OleSetClipboard(FClipData));
  1173. finally
  1174. OldCursor;
  1175. end;
  1176. end;
  1177. end;
  1178. // cut to clipboard
  1179. function TMPHexEditorEx.CBCut: boolean;
  1180. begin
  1181. Result := CanCut and CBCopy;
  1182. if Result then
  1183. begin
  1184. WaitCursor;
  1185. try
  1186. DeleteSelection(UNDO_CUTCB);
  1187. finally
  1188. OldCursor;
  1189. end;
  1190. end;
  1191. end;
  1192. // paste from clipboard
  1193. function TMPHexEditorEx.CBPaste: boolean;
  1194. var
  1195. LifData: IDataObject;
  1196. LIntEffect: integer;
  1197. begin
  1198. LIntEffect := DROPEFFECT_COPY;
  1199. Result := CanPaste and Succeeded(OLEGetClipboard(LifData)) and
  1200. Succeeded(InsertOLEData(LifData, 0, Point(0, 0), LIntEffect, oleClipboard));
  1201. end;
  1202. // create an undo for a range of bytes
  1203. procedure TMPHexEditorEx.CreateRangeUndo(const aStart, aCount: integer;
  1204. sDesc: string);
  1205. var
  1206. bMod: boolean;
  1207. begin
  1208. bMod := FModified;
  1209. try
  1210. if aCount < 1 then
  1211. CreateUndo(ufKindAllData, 0, 0, 0, sDesc)
  1212. else
  1213. CreateUndo(ufKindReplace, aStart, aCount, aCount, sDesc);
  1214. finally
  1215. FModified := bMod;
  1216. end;
  1217. end;
  1218. function TMPHexEditorEx.BeginUpdate: integer;
  1219. begin
  1220. Inc(FPaintUpdateCounter);
  1221. Result := FPaintUpdateCounter;
  1222. end;
  1223. function TMPHexEditorEx.EndUpdate: integer;
  1224. begin
  1225. Dec(FPaintUpdateCounter);
  1226. if FPaintUpdateCounter < 0 then
  1227. FPaintUpdateCounter := 0;
  1228. if FPaintUpdateCounter = 0 then
  1229. Invalidate;
  1230. Result := FPaintUpdateCounter;
  1231. end;
  1232. // mouse wheel overriding for zooming (font size) if CTRL/SHIFT is pressed,
  1233. // or bytes per line changing if CTRL pressed
  1234. function TMpHexEditorEx.DoMouseWheelDown(Shift: TShiftState; MousePos: TPoint):
  1235. boolean;
  1236. begin
  1237. if FZoomOnWheel and (Shift = [ssCtrl]) and (BytesPerRow > 1) then
  1238. begin
  1239. Result := True;
  1240. BytesPerRow := BytesPerRow - 1;
  1241. Invalidate;
  1242. end
  1243. else if FZoomOnWheel and (Shift = [ssShift, ssCtrl]) and (Font.Size > 2) then
  1244. begin
  1245. Result := True;
  1246. Font.Size := Font.Size - 1;
  1247. end
  1248. else
  1249. Result := inherited DoMouseWheelDown(Shift, MousePos);
  1250. end;
  1251. function TMpHexEditorEx.DoMouseWheelUp(Shift: TShiftState; MousePos: TPoint):
  1252. boolean;
  1253. begin
  1254. if FZoomOnWheel and (Shift = [ssCtrl]) and (BytesPerRow < 256) then
  1255. begin
  1256. Result := True;
  1257. BytesPerRow := BytesPerRow + 1;
  1258. Invalidate;
  1259. end
  1260. else if FZoomOnWheel and (Shift = [ssShift, ssCtrl]) then
  1261. begin
  1262. Result := True;
  1263. Font.Size := Font.Size + 1;
  1264. end
  1265. else
  1266. Result := inherited DoMouseWheelUp(Shift, MousePos);
  1267. end;
  1268. // overwrite key handling
  1269. procedure TMPHexEditorEx.KeyDown(var Key: word; Shift: TShiftState);
  1270. begin
  1271. inherited;
  1272. case Key of
  1273. // CTRL+A: select all
  1274. Ord('A'): if Shift = [ssCtrl] then
  1275. begin
  1276. SelectAll;…