mirror of https://gitlab.com/basile.b/dexed.git
167 lines
4.1 KiB
Plaintext
167 lines
4.1 KiB
Plaintext
unit ce_procinput;
|
|
|
|
{$I ce_defines.inc}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls,
|
|
Menus, StdCtrls, Buttons, ce_widget, process, ce_common, ce_interfaces,
|
|
ce_observer, ce_mru, ce_sharedres;
|
|
|
|
type
|
|
|
|
{ TCEProcInputWidget }
|
|
|
|
TCEProcInputWidget = class(TCEWidget, ICEProcInputHandler)
|
|
btnClose: TBitBtn;
|
|
btnSend: TBitBtn;
|
|
Panel1: TPanel;
|
|
txtInp: TEdit;
|
|
txtExeName: TStaticText;
|
|
procedure btnCloseClick(Sender: TObject);
|
|
procedure btnSendClick(Sender: TObject);
|
|
procedure txtInpKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
|
private
|
|
fMruPos: Integer;
|
|
fMru: TCEMRUList;
|
|
fProc: TProcess;
|
|
procedure sendInput;
|
|
//
|
|
function singleServiceName: string;
|
|
procedure addProcess(aProcess: TProcess);
|
|
procedure removeProcess(aProcess: TProcess);
|
|
function process(): TProcess;
|
|
public
|
|
constructor create(aOwner: TComponent); override;
|
|
destructor destroy; override;
|
|
end;
|
|
|
|
implementation
|
|
{$R *.lfm}
|
|
|
|
uses
|
|
ce_symstring, LCLType;
|
|
|
|
const
|
|
OptsFname = 'procinput.txt';
|
|
|
|
{$REGION Standard Comp/Obj -----------------------------------------------------}
|
|
constructor TCEProcInputWidget.create(aOwner: TComponent);
|
|
var
|
|
fname: string;
|
|
begin
|
|
inherited;
|
|
fMru := TCEMRUList.Create;
|
|
fMru.maxCount := 25;
|
|
EntitiesConnector.addSingleService(self);
|
|
fname := getCoeditDocPath + OptsFname;
|
|
if OptsFname.fileExists then
|
|
fMru.LoadFromFile(fname);
|
|
if fMru.Count = 0 then
|
|
fMru.Insert(0, '(your input here)');
|
|
AssignPng(btnClose, 'pencil_delete');
|
|
AssignPng(btnSend, 'pencil_go');
|
|
end;
|
|
|
|
destructor TCEProcInputWidget.destroy;
|
|
begin
|
|
// note that mru list max count is not saved.
|
|
fMru.SaveToFile(getCoeditDocPath + OptsFname);
|
|
fMru.Free;
|
|
inherited;
|
|
end;
|
|
{$ENDREGION --------------------------------------------------------------------}
|
|
|
|
{$REGION ICEProcInputHandler ---------------------------------------------------}
|
|
function TCEProcInputWidget.singleServiceName: string;
|
|
begin
|
|
exit('ICEProcInputHandler');
|
|
end;
|
|
|
|
procedure TCEProcInputWidget.addProcess(aProcess: TProcess);
|
|
begin
|
|
Panel1.Enabled:=false;
|
|
|
|
// TODO-cfeature: process list, imply that each TCESynMemo must have its own runnable TProcess
|
|
// currently they share the CEMainForm.fRunProc variable.
|
|
if fProc.isNotNil then
|
|
if fProc.Running then
|
|
fProc.Terminate(0);
|
|
|
|
txtExeName.Caption := 'no process';
|
|
fProc := nil;
|
|
if aProcess.isNil then
|
|
exit;
|
|
if not (poUsePipes in aProcess.Options) then
|
|
exit;
|
|
fProc := aProcess;
|
|
if fProc.isNotNil then Panel1.Enabled:=true;
|
|
txtExeName.Caption := shortenPath(fProc.Executable);
|
|
end;
|
|
|
|
procedure TCEProcInputWidget.removeProcess(aProcess: TProcess);
|
|
begin
|
|
if fProc = aProcess then
|
|
addProcess(nil);
|
|
end;
|
|
|
|
function TCEProcInputWidget.process(): TProcess;
|
|
begin
|
|
exit(fProc);
|
|
end;
|
|
{$ENDREGION}
|
|
|
|
{$REGION Process input things --------------------------------------------------}
|
|
procedure TCEProcInputWidget.sendInput;
|
|
var
|
|
inp: string;
|
|
begin
|
|
if fProc.Input.isNil or (fProc.Input.Handle = INVALID_HANDLE_VALUE) then
|
|
exit;
|
|
|
|
fMru.Insert(0,txtInp.Text);
|
|
fMruPos := 0;
|
|
if txtInp.Text <> '' then
|
|
inp := symbolExpander.get(txtInp.Text) + lineEnding
|
|
else
|
|
inp := txtInp.Text + lineEnding;
|
|
fProc.Input.Write(inp[1], inp.length);
|
|
txtInp.Text := '';
|
|
end;
|
|
|
|
procedure TCEProcInputWidget.btnSendClick(Sender: TObject);
|
|
begin
|
|
if fProc.isNotNil then
|
|
sendInput;
|
|
end;
|
|
|
|
procedure TCEProcInputWidget.btnCloseClick(Sender: TObject);
|
|
begin
|
|
if fProc.isNotNil and fProc.Input.isNotNil and
|
|
(fProc.Input.Handle <> INVALID_HANDLE_VALUE) then
|
|
fProc.CloseInput;
|
|
end;
|
|
|
|
procedure TCEProcInputWidget.txtInpKeyDown(Sender: TObject; var Key: Word;
|
|
Shift: TShiftState);
|
|
begin
|
|
case Key of
|
|
VK_RETURN:
|
|
if fProc.isNotNil then sendInput;
|
|
VK_UP: begin
|
|
fMruPos += 1;
|
|
if fMruPos > fMru.Count-1 then fMruPos := 0;
|
|
txtInp.Text := fMru[fMruPos];
|
|
end;
|
|
VK_DOWN: begin
|
|
fMruPos -= 1;
|
|
if fMruPos < 0 then fMruPos := fMru.Count-1;
|
|
txtInp.Text := fMru[fMruPos];
|
|
end;
|
|
end;
|
|
end;
|
|
{$ENDREGION --------------------------------------------------------------------}
|
|
|
|
end.
|