mirror of https://gitlab.com/basile.b/dexed.git
terminal, use ascii cc to clear temp line before auto checkdir
This commit is contained in:
parent
af4e2b93f1
commit
4c67e10673
|
@ -49,6 +49,8 @@ const
|
||||||
type
|
type
|
||||||
TGSpawnChildSetupFunc = procedure(user_data: Pointer); cdecl;
|
TGSpawnChildSetupFunc = procedure(user_data: Pointer); cdecl;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
PVteTerminal = ^TVteTerminal;
|
PVteTerminal = ^TVteTerminal;
|
||||||
TVteTerminal = record
|
TVteTerminal = record
|
||||||
widget: PGtkWidget;
|
widget: PGtkWidget;
|
||||||
|
@ -56,6 +58,8 @@ type
|
||||||
|
|
||||||
VTE_TERMINAL = PVteTerminal;
|
VTE_TERMINAL = PVteTerminal;
|
||||||
|
|
||||||
|
TVteSelectionFunc = function(terminal: PVteTerminal; column: glong; row: glong; data: Pointer): gboolean; cdecl;
|
||||||
|
|
||||||
var
|
var
|
||||||
vte_terminal_new: function: PGtkWidget; cdecl;
|
vte_terminal_new: function: PGtkWidget; cdecl;
|
||||||
|
|
||||||
|
@ -98,6 +102,12 @@ var
|
||||||
|
|
||||||
vte_terminal_get_column_count: function(terminal: PVteTerminal): glong; cdecl;
|
vte_terminal_get_column_count: function(terminal: PVteTerminal): glong; cdecl;
|
||||||
|
|
||||||
|
vte_terminal_get_cursor_position: procedure(terminal: PVteTerminal; column: Pglong; row: Pglong); cdecl;
|
||||||
|
|
||||||
|
vte_terminal_get_text_range: function (terminal: PVteTerminal;
|
||||||
|
start_row: glong; start_col: glong; end_row: glong; end_col: glong;
|
||||||
|
is_selected: TVteSelectionFunc; user_data: Pointer; attributes: PGArray): PChar; cdecl;
|
||||||
|
|
||||||
function Gtk2TermLoad: Boolean;
|
function Gtk2TermLoad: Boolean;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
@ -152,6 +162,10 @@ begin
|
||||||
'vte_terminal_get_row_count');
|
'vte_terminal_get_row_count');
|
||||||
@vte_terminal_get_column_count:= GetProcAddress(Lib,
|
@vte_terminal_get_column_count:= GetProcAddress(Lib,
|
||||||
'vte_terminal_get_column_count');
|
'vte_terminal_get_column_count');
|
||||||
|
@vte_terminal_get_cursor_position:= GetProcAddress(Lib,
|
||||||
|
'vte_terminal_get_cursor_position');
|
||||||
|
@vte_terminal_get_text_range:= GetProcAddress(Lib,
|
||||||
|
'vte_terminal_get_text_range');
|
||||||
|
|
||||||
// assume all or none
|
// assume all or none
|
||||||
Loaded := @vte_terminal_new <> nil;
|
Loaded := @vte_terminal_new <> nil;
|
||||||
|
|
|
@ -17,6 +17,19 @@ uses
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
|
TASCIIControlCharacter = (
|
||||||
|
HOME = 1,
|
||||||
|
LEFT = 2,
|
||||||
|
ETX = 3, // interrupt, clear temp line
|
||||||
|
SUPR = 4,
|
||||||
|
&END = 5,
|
||||||
|
RIGHT = 6,
|
||||||
|
BS = 8,
|
||||||
|
LF = 10,
|
||||||
|
VT = 11, // delete from cursor pos to end of line
|
||||||
|
CR = 13
|
||||||
|
);
|
||||||
|
|
||||||
TTerminal = class(TCustomControl)
|
TTerminal = class(TCustomControl)
|
||||||
private
|
private
|
||||||
FInfo: Pointer;
|
FInfo: Pointer;
|
||||||
|
@ -51,8 +64,11 @@ type
|
||||||
procedure Reparent;
|
procedure Reparent;
|
||||||
// Sends a command, as it would be manually typed. Line feed is automatically added.
|
// Sends a command, as it would be manually typed. Line feed is automatically added.
|
||||||
procedure Command(const data: string);
|
procedure Command(const data: string);
|
||||||
|
procedure SendControlChar(const cc: TASCIIControlCharacter);
|
||||||
procedure copyToClipboard();
|
procedure copyToClipboard();
|
||||||
procedure pasteFromClipboard();
|
procedure pasteFromClipboard();
|
||||||
|
function getLine(const line: integer): string;
|
||||||
|
function getCursorPosition: TPoint;
|
||||||
published
|
published
|
||||||
{$ifdef windows}
|
{$ifdef windows}
|
||||||
property terminalProgram: string read fTermProgram write fTermProgram;
|
property terminalProgram: string read fTermProgram write fTermProgram;
|
||||||
|
@ -303,6 +319,17 @@ begin
|
||||||
{$endif}
|
{$endif}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TTerminal.SendControlChar(const cc: TASCIIControlCharacter);
|
||||||
|
var
|
||||||
|
c: char;
|
||||||
|
begin
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
c := Char(cc);
|
||||||
|
if assigned(fTerminalHanlde) and assigned(vte_terminal_feed_child) then
|
||||||
|
vte_terminal_feed_child(fTerminalHanlde, @c, 1);
|
||||||
|
{$endif}
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TTerminal.copyToClipboard();
|
procedure TTerminal.copyToClipboard();
|
||||||
begin
|
begin
|
||||||
{$ifdef hasgtk2term}
|
{$ifdef hasgtk2term}
|
||||||
|
@ -319,6 +346,30 @@ begin
|
||||||
{$endif}
|
{$endif}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
function clbckTrueSel(terminal: PVteTerminal; column: glong; row: glong; data: Pointer): gboolean; cdecl;
|
||||||
|
begin
|
||||||
|
result := True;
|
||||||
|
end;
|
||||||
|
{$endif}
|
||||||
|
|
||||||
|
function TTerminal.getLine(const line: integer): string;
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
var
|
||||||
|
c: glong;
|
||||||
|
a: PGArray = nil;
|
||||||
|
{$endif}
|
||||||
|
begin
|
||||||
|
result := '';
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
if assigned(fTerminalHanlde) and assigned(vte_terminal_get_text_range) then
|
||||||
|
begin
|
||||||
|
c := vte_terminal_get_column_count(fTerminalHanlde);
|
||||||
|
result := vte_terminal_get_text_range(fTerminalHanlde, line, 0, line, c, @clbckTrueSel, nil, a);
|
||||||
|
end;
|
||||||
|
{$endif}
|
||||||
|
end;
|
||||||
|
|
||||||
function TerminalAvailable: Boolean;
|
function TerminalAvailable: Boolean;
|
||||||
begin
|
begin
|
||||||
{$ifdef hasgtk2term}
|
{$ifdef hasgtk2term}
|
||||||
|
@ -371,6 +422,25 @@ procedure TTerminal.Paint;
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function TTerminal.getCursorPosition: TPoint;
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
var
|
||||||
|
col: glong = 0;
|
||||||
|
row: glong = 0;
|
||||||
|
{$endif}
|
||||||
|
begin
|
||||||
|
{$ifdef hasgtk2term}
|
||||||
|
result.x:=0;
|
||||||
|
result.y:=0;
|
||||||
|
if assigned(fTerminalHanlde) and assigned(vte_terminal_get_cursor_position) then
|
||||||
|
begin
|
||||||
|
vte_terminal_get_cursor_position(fTerminalHanlde, @col, @row);
|
||||||
|
result.x:= col;
|
||||||
|
result.y:= row;
|
||||||
|
end;
|
||||||
|
{$endif}
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TTerminal.setScrollBackLines(value: LongWord);
|
procedure TTerminal.setScrollBackLines(value: LongWord);
|
||||||
{$ifdef hasgtk2term}
|
{$ifdef hasgtk2term}
|
||||||
var
|
var
|
||||||
|
|
|
@ -76,8 +76,9 @@ type
|
||||||
private
|
private
|
||||||
fTerm: TTerminal;
|
fTerm: TTerminal;
|
||||||
fOpts: TTerminalOptions;
|
fOpts: TTerminalOptions;
|
||||||
fLastCd: string;
|
fLastCheckedDirectory: string;
|
||||||
fNeedApplyChanges: boolean;
|
fNeedApplyChanges: boolean;
|
||||||
|
procedure checkDirectory(const dir: string);
|
||||||
|
|
||||||
procedure docNew(document: TDexedMemo);
|
procedure docNew(document: TDexedMemo);
|
||||||
procedure docFocused(document: TDexedMemo);
|
procedure docFocused(document: TDexedMemo);
|
||||||
|
@ -277,6 +278,16 @@ begin
|
||||||
fNeedApplyChanges := true;
|
fNeedApplyChanges := true;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TTermWidget.checkDirectory(const dir: string);
|
||||||
|
begin
|
||||||
|
fLastCheckedDirectory := dir;
|
||||||
|
fTerm.SendControlChar(TASCIIControlCharacter.HOME);
|
||||||
|
fTerm.SendControlChar(TASCIIControlCharacter.VT);
|
||||||
|
fNeedApplyChanges := true;
|
||||||
|
fOpts.applyChanges;
|
||||||
|
fTerm.Command('cd ' + dir);
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TTermWidget.SetVisible(Value: boolean);
|
procedure TTermWidget.SetVisible(Value: boolean);
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
|
@ -313,14 +324,8 @@ end;
|
||||||
procedure TTermWidget.mnexDirectoryChanged(const directory: string);
|
procedure TTermWidget.mnexDirectoryChanged(const directory: string);
|
||||||
begin
|
begin
|
||||||
if fOpts.followExplorer and directory.dirExists and
|
if fOpts.followExplorer and directory.dirExists and
|
||||||
not SameText(directory, fLastCd) then
|
not SameText(directory, fLastCheckedDirectory) then
|
||||||
begin
|
checkDirectory(directory);
|
||||||
fLastCd := directory;
|
|
||||||
fTerm.Restart;
|
|
||||||
fNeedApplyChanges := true;
|
|
||||||
fOpts.applyChanges;
|
|
||||||
fTerm.Command('cd ' + directory);
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTermWidget.docNew(document: TDexedMemo);
|
procedure TTermWidget.docNew(document: TDexedMemo);
|
||||||
|
@ -332,14 +337,8 @@ var
|
||||||
s: string;
|
s: string;
|
||||||
begin
|
begin
|
||||||
s := document.fileName.extractFileDir;
|
s := document.fileName.extractFileDir;
|
||||||
if fOpts.followEditors and s.fileExists and not SameText(s, fLastCd) then
|
if fOpts.followProjects and s.dirExists and not SameText(s, fLastCheckedDirectory) then
|
||||||
begin
|
checkDirectory(s);
|
||||||
fLastCd := s;
|
|
||||||
fTerm.Restart;
|
|
||||||
fNeedApplyChanges := true;
|
|
||||||
fOpts.applyChanges;
|
|
||||||
fTerm.Command('cd ' + s);
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTermWidget.docChanged(document: TDexedMemo);
|
procedure TTermWidget.docChanged(document: TDexedMemo);
|
||||||
|
@ -367,14 +366,8 @@ var
|
||||||
s: string;
|
s: string;
|
||||||
begin
|
begin
|
||||||
s := project.fileName.extractFileDir;
|
s := project.fileName.extractFileDir;
|
||||||
if fOpts.followProjects and s.dirExists and not SameText(s, fLastCd) then
|
if fOpts.followProjects and s.dirExists and not SameText(s, fLastCheckedDirectory) then
|
||||||
begin
|
checkDirectory(s);
|
||||||
fLastCd := s;
|
|
||||||
fTerm.Restart;
|
|
||||||
fNeedApplyChanges := true;
|
|
||||||
fOpts.applyChanges;
|
|
||||||
fTerm.Command('cd ' + s);
|
|
||||||
end;
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTermWidget.projCompiling(project: ICommonProject);
|
procedure TTermWidget.projCompiling(project: ICommonProject);
|
||||||
|
|
Loading…
Reference in New Issue