editor, center the Y view when active line is changed programatically

This commit is contained in:
Basile Burg 2022-06-19 01:32:41 +02:00
parent 53fe7317b8
commit a1b3955cc2
5 changed files with 45 additions and 16 deletions

View File

@ -7,6 +7,7 @@
the <key>CTRL</key> + <key>SPACE</key> shortcut or the <key>.</key> key. the <key>CTRL</key> + <key>SPACE</key> shortcut or the <key>.</key> key.
- GDB Commander, added the _useCustomCommandsHistory_ option. If checked the history is used to auto-complete the field at the bottom. - GDB Commander, added the _useCustomCommandsHistory_ option. If checked the history is used to auto-complete the field at the bottom.
This is the previous default but it's now deactivated for a better experience with the GDB completions. This is the previous default but it's now deactivated for a better experience with the GDB completions.
- Editor, always center the view on current line after actions that have for effect to change the line number (find next, message click, goto line, goto next changed area, etc.)
## Bugs fixed ## Bugs fixed

View File

@ -819,7 +819,7 @@ begin
fDoc.CaretY := i + 1; fDoc.CaretY := i + 1;
fDoc.CaretX := srcpos - sum + len; fDoc.CaretX := srcpos - sum + len;
fDoc.SelectWord; fDoc.SelectWord;
fDoc.EnsureCursorPosVisible; fDoc.centerCursor();
break; break;
end; end;
sum += linelen; sum += linelen;

View File

@ -1151,7 +1151,8 @@ begin
exit; exit;
fDoc.setFocus; fDoc.setFocus;
fDoc.CaretXY := pos; fDoc.CaretXY := pos;
fDoc.SelectLine; fDoc.centerCursor();
fDoc.SelectLine();
end; end;
function TMessagesWidget.itemShouldBeVisible(item: TTreeNode; function TMessagesWidget.itemShouldBeVisible(item: TTreeNode;

View File

@ -601,6 +601,7 @@ begin
fHasRestarted := false; fHasRestarted := false;
chkFromCur.Checked := true; chkFromCur.Checked := true;
fDoc.setFocus; fDoc.setFocus;
fDoc.centerCursor();
end; end;
updateImperative; updateImperative;
end; end;
@ -632,7 +633,10 @@ begin
fDoc.CaretX := fDoc.CaretX + fToFind.length; fDoc.CaretX := fDoc.CaretX + fToFind.length;
end; end;
if fDoc.SearchReplace(fToFind, fReplaceWth, getOptions + [ssoReplace]) <> 0 then if fDoc.SearchReplace(fToFind, fReplaceWth, getOptions + [ssoReplace]) <> 0 then
begin
fHasSearched := true; fHasSearched := true;
fDoc.centerCursor();
end;
fDoc.OnReplaceText := nil; fDoc.OnReplaceText := nil;
updateImperative; updateImperative;
end; end;

View File

@ -10,7 +10,7 @@ uses
SynHighlighterLFM, SynEditHighlighter, SynEditMouseCmds, SynEditFoldedView, SynHighlighterLFM, SynEditHighlighter, SynEditMouseCmds, SynEditFoldedView,
SynEditMarks, SynEditTypes, SynHighlighterJScript, SynBeautifier, dialogs, SynEditMarks, SynEditTypes, SynHighlighterJScript, SynBeautifier, dialogs,
md5, Spin, LCLIntf, LazFileUtils, LMessages, SynHighlighterCpp, math, md5, Spin, LCLIntf, LazFileUtils, LMessages, SynHighlighterCpp, math,
SynGutterBase, LCLVersion, SynGutterBase, LCLVersion, SynEditMiscProcs,
//SynEditMarkupFoldColoring, //SynEditMarkupFoldColoring,
Clipbrd, fpjson, jsonparser, LazUTF8, Buttons, StdCtrls, Clipbrd, fpjson, jsonparser, LazUTF8, Buttons, StdCtrls,
u_common, u_writableComponent, u_d2syn, u_txtsyn, u_dialogs, u_sxsyn, u_common, u_writableComponent, u_d2syn, u_txtsyn, u_dialogs, u_sxsyn,
@ -380,6 +380,7 @@ type
function implementMain: THasMain; function implementMain: THasMain;
procedure replaceUndoableContent(const value: string); procedure replaceUndoableContent(const value: string);
procedure setDscannerOptions(dsEnabled: boolean; dsDelay: integer); procedure setDscannerOptions(dsEnabled: boolean; dsDelay: integer);
procedure centerCursor();
// //
property IdentifierMatchOptions: TIdentifierMatchOptions read fMatchOpts write setMatchOpts; property IdentifierMatchOptions: TIdentifierMatchOptions read fMatchOpts write setMatchOpts;
property Identifier: string read fIdentifier; property Identifier: string read fIdentifier;
@ -943,20 +944,26 @@ end;
procedure TSynMemoPositions.back; procedure TSynMemoPositions.back;
begin begin
Inc(fPos); Inc(fPos);
{$HINTS OFF}
if fPos < fList.Count then if fPos < fList.Count then
fMemo.CaretY := PtrInt(fList.Items[fPos]) begin
{$HINTS ON} {$HINTS OFF}
fMemo.CaretY := PtrInt(fList.Items[fPos]);
{$HINTS ON}
TDexedMemo(fMemo).centerCursor();
end
else Dec(fPos); else Dec(fPos);
end; end;
procedure TSynMemoPositions.next; procedure TSynMemoPositions.next;
begin begin
Dec(fPos); Dec(fPos);
{$HINTS OFF}
if fPos > -1 then if fPos > -1 then
fMemo.CaretY := PtrInt(fList.Items[fPos]) begin
{$HINTS ON} {$HINTS OFF}
fMemo.CaretY := PtrInt(fList.Items[fPos]);
{$HINTS ON}
TDexedMemo(fMemo).centerCursor();
end
else Inc(fPos); else Inc(fPos);
end; end;
@ -2109,6 +2116,18 @@ begin
end; end;
end; end;
procedure TDexedMemo.centerCursor();
var
Y, LinesInWin, CurTopLine, NewTopLine: Integer;
begin
LinesInWin := LinesInWindow;
CurTopLine := TopView;
Y := ToPos(TextView.TextToViewIndex(ToIdx(CaretY)));
NewTopLine := Max(1, Y - (LinesInWin div 2));
if NewTopLine < 1 then NewTopLine := 1;
TopView := NewTopLine;
end;
procedure TDexedMemo.ShowPhobosDoc; procedure TDexedMemo.ShowPhobosDoc;
var var
str: string; str: string;
@ -2263,7 +2282,7 @@ begin
else if i > lines.Count then else if i > lines.Count then
i := lines.Count; i := lines.Count;
CaretY:= i; CaretY:= i;
EnsureCursorPosVisible; centerCursor();
end; end;
end; end;
end; end;
@ -2333,6 +2352,7 @@ begin
p.X:= 1; p.X:= 1;
p.Y:= i + 1 - d; p.Y:= i + 1 - d;
ExecuteCommand(ecGotoXY, #0, @p); ExecuteCommand(ecGotoXY, #0, @p);
centerCursor;
end; end;
end; end;
@ -2368,7 +2388,10 @@ begin
end; end;
end; end;
if assigned(tk) then if assigned(tk) then
begin
ExecuteCommand(ecGotoXY, #0, @tk^.position); ExecuteCommand(ecGotoXY, #0, @tk^.position);
centerCursor;
end;
end; end;
procedure TDexedMemo.goToWarning(next: boolean); procedure TDexedMemo.goToWarning(next: boolean);
@ -2389,7 +2412,7 @@ begin
if j <> -1 then if j <> -1 then
begin begin
CaretY:= fDscannerResults.item[j]^.line; CaretY:= fDscannerResults.item[j]^.line;
EnsureCursorPosVisible; centerCursor;
end; end;
end end
else else
@ -2403,7 +2426,7 @@ begin
if (j <> -1) and (j < fDscannerResults.count) then if (j <> -1) and (j < fDscannerResults.count) then
begin begin
CaretY:= fDscannerResults.item[j]^.line; CaretY:= fDscannerResults.item[j]^.line;
EnsureCursorPosVisible; centerCursor;
end; end;
end; end;
end; end;
@ -3482,7 +3505,7 @@ begin
e := Point(length(Lines[lines.Count-1])+1,lines.Count); e := Point(length(Lines[lines.Count-1])+1,lines.Count);
TextBetweenPoints[b,e] := value; TextBetweenPoints[b,e] := value;
CaretXY := p; CaretXY := p;
EnsureCursorPosVisible; centerCursor;
fModified := true; fModified := true;
end; end;
@ -3826,7 +3849,7 @@ begin
pt := Mouse.CursorPos; pt := Mouse.CursorPos;
pt.x:= pt.x - 40; pt.x:= pt.x - 40;
CaretY := fScrollMemo.fMemo.CaretY; CaretY := fScrollMemo.fMemo.CaretY;
EnsureCursorPosVisible; centerCursor;
fScrollMemo.Visible:=false; fScrollMemo.Visible:=false;
mouse.CursorPos := pt; mouse.CursorPos := pt;
fPositions.store; fPositions.store;
@ -4009,7 +4032,7 @@ begin
else else
addBreakPoint(line); addBreakPoint(line);
CaretY := Line; CaretY := Line;
EnsureCursorPosVisible; centerCursor;
end; end;
procedure TDexedMemo.addGutterIcon(line: integer; value: TGutterIcon); procedure TDexedMemo.addGutterIcon(line: integer; value: TGutterIcon);
@ -4111,7 +4134,7 @@ begin
// newly opened source has not 3 cols yet // newly opened source has not 3 cols yet
fMultiGutterMarks.columnCount := 3; fMultiGutterMarks.columnCount := 3;
caretY := line; caretY := line;
EnsureCursorPosVisible; centerCursor;
removeDebugTimeMarks; removeDebugTimeMarks;
removeDscannerWarnings; removeDscannerWarnings;
case reason of case reason of