Using: Delphi XE2, Windows VCL forms application, 32-bit
I'm using the SynEdit control to display text. I'm already using the TSynHTMLSyn syntax highlighter with the control to properly highlight HTML and JS code.
I'm also doing a diff on this text (using Angus Johnson's TDiff) with another version of the text to find: deletions, additions and changes. I need to highlight each of these type of changes with a different color ie RED for deletion, BLUE for additions, and GREEN for changes.
My questions:
TIA.
Try to use TSynEdit.onSpecialLineColors event, e.g.
procedure TfmRunScript.EditorSpecialLineColors(Sender: TObject;
Line: Integer; var Special: Boolean; var FG, BG: TColor);
begin
if Line = ErrorLine then
begin
Special := True;
BG := clMaroon;
FG := clWhite;
end;
end;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With