Place holder for help file in ANSI file viewer
This commit is contained in:
parent
12935b69fb
commit
739afa9bd9
|
@ -1345,7 +1345,7 @@ Begin
|
||||||
Session.io.AnsiClear;
|
Session.io.AnsiClear;
|
||||||
|
|
||||||
If UseFull Then
|
If UseFull Then
|
||||||
AnsiViewer (Session.Theme.ViewerBar, 'ansigalv;' + CurPath + DirList[CurPos]^.Desc)
|
AnsiViewer (Session.Theme.ViewerBar, 'ansigalv;dummy;' + CurPath + DirList[CurPos]^.Desc)
|
||||||
Else Begin
|
Else Begin
|
||||||
Session.io.OutFile (CurPath + DirList[CurPos]^.Desc, False, Speed);
|
Session.io.OutFile (CurPath + DirList[CurPos]^.Desc, False, Speed);
|
||||||
Session.io.PauseScreen;
|
Session.io.PauseScreen;
|
||||||
|
@ -1448,6 +1448,7 @@ Var
|
||||||
Ch : Char;
|
Ch : Char;
|
||||||
FN : String;
|
FN : String;
|
||||||
Template : String;
|
Template : String;
|
||||||
|
HelpFile : String;
|
||||||
Str : String;
|
Str : String;
|
||||||
Sauce : RecSauceInfo;
|
Sauce : RecSauceInfo;
|
||||||
|
|
||||||
|
@ -1455,18 +1456,21 @@ Var
|
||||||
Var
|
Var
|
||||||
Per : SmallInt;
|
Per : SmallInt;
|
||||||
Begin
|
Begin
|
||||||
|
If Session.io.ScreenInfo[3].X <> 0 Then Begin
|
||||||
Session.io.AnsiGotoXY (Session.io.ScreenInfo[3].X, Session.io.ScreenInfo[4].Y);
|
Session.io.AnsiGotoXY (Session.io.ScreenInfo[3].X, Session.io.ScreenInfo[4].Y);
|
||||||
Session.io.OutRaw (Session.io.DrawPercent(Bar, TopLine + WinSize - 1, Ansi.Lines, Per));
|
Session.io.OutRaw (Session.io.DrawPercent(Bar, TopLine + WinSize - 1, Ansi.Lines, Per));
|
||||||
Session.io.AnsiGotoXY (Session.io.ScreenInfo[4].X, Session.io.ScreenInfo[4].Y);
|
Session.io.AnsiGotoXY (Session.io.ScreenInfo[4].X, Session.io.ScreenInfo[4].Y);
|
||||||
Session.io.AnsiColor (Session.io.Screeninfo[4].A);
|
Session.io.AnsiColor (Session.io.Screeninfo[4].A);
|
||||||
Session.io.OutRaw (strPadL(strI2S(Per), 3, ' '));
|
Session.io.OutRaw (strPadL(strI2S(Per), 3, ' '));
|
||||||
|
End;
|
||||||
|
|
||||||
Ansi.DrawPage (Session.io.ScreenInfo[1].Y, Session.io.ScreenInfo[2].Y, TopLine);
|
Ansi.DrawPage (Session.io.ScreenInfo[1].Y, Session.io.ScreenInfo[2].Y, TopLine);
|
||||||
End;
|
End;
|
||||||
|
|
||||||
Begin
|
Begin
|
||||||
Template := strWordGet(1, Data, ';');
|
Template := strWordGet(1, Data, ';');
|
||||||
FN := strWordGet(2, Data, ';');
|
HelpFile := strWordGet(2, Data, ';');
|
||||||
|
FN := strWordGet(3, Data, ';');
|
||||||
|
|
||||||
If Pos(PathChar, FN) = 0 Then
|
If Pos(PathChar, FN) = 0 Then
|
||||||
FN := Session.Theme.TextPath + FN;
|
FN := Session.Theme.TextPath + FN;
|
||||||
|
@ -1503,12 +1507,13 @@ Begin
|
||||||
Close (AFile);
|
Close (AFile);
|
||||||
|
|
||||||
Session.io.AllowArrow := True;
|
Session.io.AllowArrow := True;
|
||||||
|
Session.io.ScreenInfo[3].X := 0;
|
||||||
|
|
||||||
Session.io.OutFile(Template, False, 0);
|
Session.io.OutFile(Template, False, 0);
|
||||||
|
|
||||||
WinSize := Session.io.ScreenInfo[2].Y - Session.io.ScreenInfo[1].Y + 1;
|
WinSize := Session.io.ScreenInfo[2].Y - Session.io.ScreenInfo[1].Y + 1;
|
||||||
|
|
||||||
If strUpper(strWordGet(3, Data, ';')) = 'END' Then Begin
|
If strUpper(strWordGet(4, Data, ';')) = 'END' Then Begin
|
||||||
TopLine := Ansi.Lines - WinSize + 1;
|
TopLine := Ansi.Lines - WinSize + 1;
|
||||||
|
|
||||||
If TopLine < 1 Then TopLine := 1;
|
If TopLine < 1 Then TopLine := 1;
|
||||||
|
|
Loading…
Reference in New Issue