mirror of https://gitlab.com/basile.b/dexed.git
Add message option to make the filter persistent - close #162
This commit is contained in:
parent
09fa996fd7
commit
efcba233a6
|
@ -36,6 +36,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.
|
||||
- **autoDemangle**: Automatically filters the new messages with [ddemangle](https://github.com/dlang/tools#d-tools). Note that Coedit 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.
|
||||
This is a recommended setting because if a run-time error happens, it will be immediately displayed.
|
||||
|
|
|
@ -25,7 +25,6 @@ inherited CEMessagesWidget: TCEMessagesWidget
|
|||
Width = 840
|
||||
Align = alClient
|
||||
BorderSpacing.Around = 2
|
||||
DefaultItemHeight = 16
|
||||
HideSelection = False
|
||||
Images = imgList
|
||||
MultiSelect = True
|
||||
|
@ -153,7 +152,6 @@ inherited CEMessagesWidget: TCEMessagesWidget
|
|||
MaxLength = 0
|
||||
TabOrder = 0
|
||||
OnButtonClick = TreeFilterEdit1ButtonClick
|
||||
FilteredTreeview = List
|
||||
end
|
||||
object btnClearCat: TSpeedButton[12]
|
||||
Left = 1
|
||||
|
|
|
@ -31,10 +31,12 @@ type
|
|||
fAutoSelect: boolean;
|
||||
fSingleClick: boolean;
|
||||
fAutoDemangle: boolean;
|
||||
fAlwaysFilter: boolean;
|
||||
fFont: TFont;
|
||||
fMsgColors: array[TCEAppMessageKind] of TColor;
|
||||
procedure setFont(value: TFont);
|
||||
published
|
||||
property alwaysFilter: boolean read fAlwaysFilter write fAlwaysFilter;
|
||||
property fastDisplay: boolean read fFastDisplay write fFastDisplay;
|
||||
property maxMessageCount: integer read fMaxCount write fMaxCount;
|
||||
property autoSelect: boolean read fAutoSelect write fAutoSelect;
|
||||
|
@ -93,6 +95,7 @@ type
|
|||
fActSelAll: TAction;
|
||||
fActDemangle: TAction;
|
||||
fMaxMessCnt: Integer;
|
||||
fAlwaysFilter: boolean;
|
||||
fProj: ICECommonProject;
|
||||
fDoc: TCESynMemo;
|
||||
fCtxt: TCEAppMessageCtxt;
|
||||
|
@ -289,6 +292,7 @@ begin
|
|||
fSingleClick := opts.fSingleClick;
|
||||
fFastDisplay := opts.fFastDisplay;
|
||||
fMsgColors := opts.fMsgColors;
|
||||
fAlwaysFilter := opts.fAlwaysFilter;
|
||||
fFont.EndUpdate;
|
||||
end
|
||||
else if source is TCEMessagesWidget then
|
||||
|
@ -301,6 +305,7 @@ begin
|
|||
fFastDisplay := widg.fastDisplay;
|
||||
fMsgColors := widg.fMsgColors;
|
||||
fAutoDemangle:= widg.fAutoDemangle;
|
||||
fAlwaysFilter:=widg.fAlwaysFilter;
|
||||
end
|
||||
else inherited;
|
||||
end;
|
||||
|
@ -319,6 +324,7 @@ begin
|
|||
widg.fastDisplay:= fFastDisplay;
|
||||
widg.fMsgColors := fMsgColors;
|
||||
widg.fAutoDemangle:=fAutoDemangle;
|
||||
widg.fAlwaysFilter:=fAlwaysFilter;
|
||||
if fFastDisplay then
|
||||
widg.updaterByLoopInterval:= 70
|
||||
else
|
||||
|
@ -825,6 +831,8 @@ var
|
|||
msg: string;
|
||||
begin
|
||||
showWidget;
|
||||
if not fAlwaysFilter then
|
||||
TreeFilterEdit1.Filter:='';
|
||||
case fAutoDemangle of
|
||||
false: msg := value;
|
||||
true: msg := demangle(value);
|
||||
|
@ -866,6 +874,10 @@ begin
|
|||
TTreeHack(list).scrolledLeft := 0;
|
||||
List.Update;
|
||||
filterMessages(fCtxt);
|
||||
end
|
||||
else if fAlwaysFilter and fFiltering then
|
||||
begin
|
||||
filterMessages(fCtxt);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
@ -897,6 +909,7 @@ begin
|
|||
if (TObject(data) = fDoc) and (fDoc.isNotNil) then
|
||||
fEditorMessagePos[fDoc.fileName] := -1;
|
||||
list.BeginUpdate;
|
||||
TreeFilterEdit1.Filter := '';
|
||||
for i := List.Items.Count-1 downto 0 do
|
||||
begin
|
||||
msgdt := PMessageData(List.Items[i].Data);
|
||||
|
@ -990,6 +1003,7 @@ procedure TCEMessagesWidget.filterMessages(aCtxt: TCEAppMessageCtxt);
|
|||
var
|
||||
itm: TTreeNode;
|
||||
i: integer;
|
||||
f: boolean;
|
||||
begin
|
||||
if updating then
|
||||
exit;
|
||||
|
@ -997,10 +1011,11 @@ begin
|
|||
for i := 0 to List.Items.Count-1 do
|
||||
begin
|
||||
itm := List.Items.Item[i];
|
||||
if not fFiltering then
|
||||
itm.Visible := itemShouldBeVisible(itm, aCtxt)
|
||||
if fFiltering then
|
||||
itm.Visible := itemShouldBeVisible(itm, aCtxt) and
|
||||
itm.Text.Contains(TreeFilterEdit1.Filter)
|
||||
else
|
||||
itm.Visible := itm.Visible and itemShouldBeVisible(itm, aCtxt);
|
||||
itm.Visible:= itemShouldBeVisible(itm, aCtxt);
|
||||
itm.Selected := false;
|
||||
end;
|
||||
list.EndUpdate;
|
||||
|
|
Loading…
Reference in New Issue