Skip to content

Commit b5458b7

Browse files
committed
Continue with TODO
1 parent 665f180 commit b5458b7

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

Source/Editor.pas

+4-8
Original file line numberDiff line numberDiff line change
@@ -1802,12 +1802,8 @@ procedure TEditor.EditorPaintTransient(Sender: TObject; Canvas: TCanvas; Transie
18021802
Exit;
18031803

18041804
// At this point we have found both characters. Check if both are visible
1805-
// TODO: Lift. Is FoldHidesLine same as AllFoldRanges.FoldHidesLine?
1806-
{if Assigned(fText.AllFoldRanges.FoldHidesLine(HighlightCharPos.Line,OutIndex)) or
1807-
Assigned(fText.AllFoldRanges.FoldHidesLine(ComplementCharPos.Line,OutIndex)) then
1808-
Exit;}
1809-
if fText.AllFoldRanges.FoldHidesLine(HighlightCharPos.Line,OutIndex) or
1810-
fText.AllFoldRanges.FoldHidesLine(ComplementCharPos.Line,OutIndex) then
1805+
if fText.AllFoldRanges.FoldHidesLine(HighlightCharPos.Line, OutIndex) or
1806+
fText.AllFoldRanges.FoldHidesLine(ComplementCharPos.Line, OutIndex) then
18111807
Exit;
18121808

18131809
// Both are visible. Draw them
@@ -1819,7 +1815,7 @@ procedure TEditor.EditorPaintTransient(Sender: TObject; Canvas: TCanvas; Transie
18191815
// Draw the character the caret is at here using this color
18201816
SetColors(HighlightCharPos);
18211817
Pix := fText.RowColumnToPixels(fText.BufferToDisplayPos(HighlightCharPos));
1822-
// TODO: Lift. Find fText.GutterWidth
1818+
18231819
if Pix.X > fText.Gutter.Width then begin // only draw if inside viewable area
18241820
S := fText.Lines[HighlightCharPos.Line - 1][HighlightCharPos.Char];
18251821
Canvas.TextOut(Pix.X, Pix.Y, S);
@@ -1828,7 +1824,7 @@ procedure TEditor.EditorPaintTransient(Sender: TObject; Canvas: TCanvas; Transie
18281824
// Then draw complement
18291825
SetColors(ComplementCharPos);
18301826
Pix := fText.RowColumnToPixels(fText.BufferToDisplayPos(ComplementCharPos));
1831-
// TODO: Lift. Find fText.GutterWidth
1827+
18321828
if Pix.X > fText.Gutter.Width then begin // only draw if inside viewable area
18331829
S := fText.Lines[ComplementCharPos.Line - 1][ComplementCharPos.Char];
18341830
Canvas.TextOut(Pix.X, Pix.Y, S);

Source/Utils.pas

+11-8
Original file line numberDiff line numberDiff line change
@@ -490,13 +490,13 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
490490
si: TStartupInfo;
491491
pi: TProcessInformation;
492492
nRead: DWORD;
493-
// TODO:: LIFT. Change this to TBytes for example
494-
aBuf: array[0..8192] of AnsiChar;
493+
// aBuf: array[0..8192] of Byte;
494+
aBuf: TBytes;
495495
sa: TSecurityAttributes;
496496
hOutputReadTmp, hOutputRead, hOutputWrite, hInputWriteTmp, hInputRead,
497497
hInputWrite, hErrorWrite: THandle;
498-
FOutput: AnsiString;
499-
CurrentLine: AnsiString;
498+
FOutput: String;
499+
CurrentLine: String;
500500
bAbort: boolean;
501501
begin
502502
FOutput := '';
@@ -596,6 +596,8 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
596596
end;
597597

598598
bAbort := False;
599+
SetLength(aBuf, 8192);
600+
var BufStr: string := '';
599601
repeat
600602
// Ask our caller if he wants us to quit
601603
if Assigned(CheckAbortFunc) then
@@ -604,15 +606,16 @@ function RunAndGetOutput(const Cmd, WorkDir: String;
604606
TerminateProcess(pi.hProcess, 1);
605607
Break;
606608
end;
607-
if (not ReadFile(hOutputRead, aBuf, SizeOf(aBuf) - 1, nRead, nil)) or (nRead = 0) then begin
609+
if (not ReadFile(hOutputRead, (@aBuf[0])^, SizeOf(aBuf) - 1, nRead, nil)) or (nRead = 0) then begin
608610
if GetLastError = ERROR_BROKEN_PIPE then
609611
Break; // pipe done - normal exit path
610612
end;
611-
aBuf[nRead] := #0;
612-
FOutput := FOutput + PAnsiChar(@aBuf[0]);
613+
// aBuf[nRead] := 0;
614+
BufStr := TEncoding.Default.GetString(aBuf, Low(aBuf), nRead);
615+
FOutput := FOutput + BufStr;
613616

614617
if Assigned(LineOutputFunc) then begin
615-
CurrentLine := CurrentLine + PAnsiChar(@aBuf[0]);
618+
CurrentLine := CurrentLine + BufStr;
616619
if CurrentLine[Length(CurrentLine)] = #10 then begin
617620
Delete(CurrentLine, Length(CurrentLine), 1);
618621
LineOutputFunc(CurrentLine);

0 commit comments

Comments
 (0)