fix #13 - Add a way to highlight in the messages widget

This commit is contained in:
Basile Burg 2020-03-31 13:32:33 +02:00
parent 5b137657dd
commit a4a9a50a09
4 changed files with 41 additions and 4 deletions

View File

@ -5,7 +5,7 @@ header-includes: <script src="https://cdnjs.cloudflare.com/ajax/libs/anchor-js/4
![](img/coedit_kde4_thumb.png) ![](img/coedit_kde4_thumb.png)
This documentation is based on Dexed version 3.7.10. This documentation is based on Dexed version 3.8.2.
Screenshots can be outdated but descriptions are up to date. Screenshots can be outdated but descriptions are up to date.
## First steps ## First steps

View File

@ -33,6 +33,7 @@ This value and several other options can be changed in the options.
- **alwaysFilter**: Sets if the custom filter (text filed at the top right) is maintained or if it's reset when new messages are emitted. - **alwaysFilter**: Sets if the custom filter (text filed at the top right) is maintained or if it's reset when new messages are emitted.
- **autoDemangle**: Automatically filters the new messages with [ddemangle](https://github.com/dlang/tools#d-tools). Note that Dexed uses the tool as a daemon so it's perfectly normal that it remains in the task list when the IDE runs. - **autoDemangle**: Automatically filters the new messages with [ddemangle](https://github.com/dlang/tools#d-tools). Note that Dexed uses the tool as a daemon so it's perfectly normal that it remains in the task list when the IDE runs.
- **autoSelect**: Defines if the widget change dynamically the message categories. - **autoSelect**: Defines if the widget change dynamically the message categories.
- **backticksHighligh**: Sets if text between backticks gets painted in a particular color. Highligting is not limited to a particular tool so it is applied to the compiler messages, the results of [find all](widgets_search.html), and any process that has its output streams redirtected to the widget.
This is a recommended setting because if a run-time error happens, it will be immediately displayed. This is a recommended setting because if a run-time error happens, it will be immediately displayed.
- **colors**: Allows to associate a message kind to a particular color. - **colors**: Allows to associate a message kind to a particular color.
- **fast display**: If set, the new messages are displayed fast but by block. When not set the same amount of message takes longer to be displayed but the operation is smoother. - **fast display**: If set, the new messages are displayed fast but by block. When not set the same amount of message takes longer to be displayed but the operation is smoother.

View File

@ -26,6 +26,7 @@ type
TMessagesOptions = class(TWritableLfmTextComponent) TMessagesOptions = class(TWritableLfmTextComponent)
private private
fbackTickHighlight: boolean;
fFastDisplay: boolean; fFastDisplay: boolean;
fMaxCount: integer; fMaxCount: integer;
fAutoSelect: boolean; fAutoSelect: boolean;
@ -35,6 +36,7 @@ type
fMaxLineLength: integer; fMaxLineLength: integer;
fFont: TFont; fFont: TFont;
fMsgColors: array[TAppMessageKind] of TColor; fMsgColors: array[TAppMessageKind] of TColor;
fHighlightColor: TColor;
procedure setFont(value: TFont); procedure setFont(value: TFont);
published published
property alwaysFilter: boolean read fAlwaysFilter write fAlwaysFilter; property alwaysFilter: boolean read fAlwaysFilter write fAlwaysFilter;
@ -50,6 +52,8 @@ type
property colorHint: TColor read fMsgColors[amkHint] write fMsgColors[amkHint]; property colorHint: TColor read fMsgColors[amkHint] write fMsgColors[amkHint];
property colorWarning: TColor read fMsgColors[amkWarn] write fMsgColors[amkWarn]; property colorWarning: TColor read fMsgColors[amkWarn] write fMsgColors[amkWarn];
property colorError: TColor read fMsgColors[amkErr] write fMsgColors[amkErr]; property colorError: TColor read fMsgColors[amkErr] write fMsgColors[amkErr];
property colorHighlight: TColor read fHighlightColor write fHighlightColor;
property backticksHighlight: boolean read fbackTickHighlight write fbackTickHighlight default true;
public public
constructor Create(AOwner: TComponent); override; constructor Create(AOwner: TComponent); override;
destructor destroy; override; destructor destroy; override;
@ -260,6 +264,7 @@ begin
inherited; inherited;
fFont := TFont.Create; fFont := TFont.Create;
fFont.Style := [fsBold]; fFont.Style := [fsBold];
fbackTickHighlight := true;
{$IFDEF WINDOWS} {$IFDEF WINDOWS}
fFont.name := 'Consolas'; fFont.name := 'Consolas';
{$ENDIF} {$ENDIF}
@ -272,6 +277,7 @@ begin
fMsgColors[amkErr] := $BDBDFF; fMsgColors[amkErr] := $BDBDFF;
fMsgColors[amkInf] := $FFD0A8; fMsgColors[amkInf] := $FFD0A8;
fMsgColors[amkHint]:= $C2FFC2; fMsgColors[amkHint]:= $C2FFC2;
fHighlightColor := $F7F7F7;
end; end;
destructor TMessagesOptions.destroy; destructor TMessagesOptions.destroy;
@ -612,11 +618,18 @@ procedure TMessagesWidget.ListCustomDrawItem(Sender: TCustomTreeView;
var var
x: integer; x: integer;
rc: TRect; rc: TRect;
r: TStringRange = (ptr:nil; pos:0; len: 0);
t: TStringRange = (ptr:nil; pos:0; len: 0);
s: string;
p: boolean = false;
c: array [boolean] of TColor;
begin begin
rc := node.DisplayRect(false); rc := node.DisplayRect(false);
x := rc.Left + 2 - TTreeHack(list).ScrolledLeft; x := rc.Left + 2 - TTreeHack(list).ScrolledLeft;
// warning: the cast may become wrong if the enum is modified. // warning: the cast may become wrong if the enum is modified.
Sender.Canvas.Brush.Color := fMsgColors[TAppMessageKind(node.ImageIndex + 1)]; Sender.Canvas.Brush.Color := fMsgColors[TAppMessageKind(node.ImageIndex + 1)];
c[false] := Sender.Canvas.font.Color;
c[true] := fOptions.colorHighlight;
if node.Selected then if node.Selected then
begin begin
Sender.Canvas.DrawFocusRect(rc); Sender.Canvas.DrawFocusRect(rc);
@ -626,7 +639,29 @@ begin
list.Images.Draw(sender.Canvas, x, (rc.Top + rc.Bottom - list.Images.Height) div 2, list.Images.Draw(sender.Canvas, x, (rc.Top + rc.Bottom - list.Images.Height) div 2,
node.ImageIndex, Node.NodeEffect); node.ImageIndex, Node.NodeEffect);
x += list.Images.Width + 5; x += list.Images.Width + 5;
Sender.Canvas.TextOut(x, rc.Top, node.Text);
if not fOptions.backticksHighlight then
Sender.Canvas.TextOut(x, rc.Top, Node.Text)
else if node.Text.isNotEmpty then
begin
r.init(node.Text);
while not r.empty do
begin
t := r.takeUntil('`');
if p then
t.takeMore(1);
s := t.yield();
if p then
s := '`' + s + '`';
if not r.empty() then
r.popFront();
Sender.Canvas.font.Color:= c[p];
Sender.Canvas.TextOut(x, rc.Top, s);
x += sender.Canvas.TextWidth(s);
p := not p;
end;
end;
DefaultDraw := false; DefaultDraw := false;
end; end;
{$ENDREGION} {$ENDREGION}

View File

@ -7,7 +7,7 @@ interface
uses uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls, Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
Menus, StdCtrls, actnList, Buttons, SynEdit, SynEditSearch, SynEditTypes, Menus, StdCtrls, actnList, Buttons, SynEdit, SynEditSearch, SynEditTypes,
u_common, u_mru, u_widget, u_synmemo, u_interfaces, u_observer, u_common, u_mru, u_widget, u_synmemo, u_interfaces, u_observer, strutils,
u_writableComponent, u_dialogs, u_sharedres, u_dsgncontrols, u_writableComponent, u_dialogs, u_sharedres, u_dsgncontrols,
SynEditTextBuffer; SynEditTextBuffer;
@ -491,7 +491,7 @@ begin
msgs := getMessageDisplay; msgs := getMessageDisplay;
if (not showNoResult and (result > 0)) or showNoResult then if (not showNoResult and (result > 0)) or showNoResult then
begin begin
msg := format('%d result(s) for the pattern <%s> in %s', msg := format('%d result(s) for the pattern `%s` in %s',
[length(res), fToFind, filename]); [length(res), fToFind, filename]);
msgs.message(msg, nil, amcMisc, amkInf); msgs.message(msg, nil, amcMisc, amkInf);
end; end;
@ -499,6 +499,7 @@ begin
for i := 0 to high(res) do for i := 0 to high(res) do
begin begin
msg := format(fmt, [res[i].Y, res[i].X, Trim(lines[res[i].Y-1])]); msg := format(fmt, [res[i].Y, res[i].X, Trim(lines[res[i].Y-1])]);
msg := strutils.ReplaceStr(msg, fToFind, '`' + fToFind + '`');
msgs.message(msg, nil, amcMisc, amkInf); msgs.message(msg, nil, amcMisc, amkInf);
end; end;
finally finally