mirror of https://gitlab.com/basile.b/dexed.git
tools, add the autoExecuteEvents property
This commit is contained in:
parent
3339404419
commit
e4dc6bf981
|
@ -36,6 +36,7 @@ Toolbar:
|
||||||
A tool can be selected from the left side of the widget. If selected, a property inspector displays the options that can be edited:
|
A tool can be selected from the left side of the widget. If selected, a property inspector displays the options that can be edited:
|
||||||
|
|
||||||
- **askConfirmation**: Asks for a confirmation before executing the tool.
|
- **askConfirmation**: Asks for a confirmation before executing the tool.
|
||||||
|
- **autoExecuteEvents**: Defines the events for which the tool is automatically executed.
|
||||||
- **clearMessages**: If the tool standard output is redirected to the [messages widget](widgets_messages) then the previous messages are cleared before the execution. The output is redirected to the messages when **popUsePipes** is set and if **nextToolAlias** is empty.
|
- **clearMessages**: If the tool standard output is redirected to the [messages widget](widgets_messages) then the previous messages are cleared before the execution. The output is redirected to the messages when **popUsePipes** is set and if **nextToolAlias** is empty.
|
||||||
- **editorToInput**: Deprecated, see **pipeInputKind**.
|
- **editorToInput**: Deprecated, see **pipeInputKind**.
|
||||||
- **executable**: The tool file name. If the system cannot find its path in the environment variables then it must be included. The field can include [symbolic strings](features_symbolic_strings).
|
- **executable**: The tool file name. If the system cannot find its path in the environment variables then it must be included. The field can include [symbolic strings](features_symbolic_strings).
|
||||||
|
|
123
src/u_tools.pas
123
src/u_tools.pas
|
@ -15,6 +15,21 @@ type
|
||||||
|
|
||||||
TPipeInputKind = (pikNone, pikEditor, pikSelection, pikLine);
|
TPipeInputKind = (pikNone, pikEditor, pikSelection, pikLine);
|
||||||
|
|
||||||
|
// Enymerates the events for which a tool can be auto-executed.
|
||||||
|
// warning: TToolsEditorWidget uses the enum members as string literals to update the array of tools
|
||||||
|
TAutoExecuteEvent = (
|
||||||
|
// autoexecute if a project is focused
|
||||||
|
aeProjectFocused,
|
||||||
|
// autoexecute if a project will close
|
||||||
|
aeProjectClosing,
|
||||||
|
// autoexecute if a document is focused
|
||||||
|
aeDocumentFocused,
|
||||||
|
// autoexecute if a document will close
|
||||||
|
aeDocumentClosing
|
||||||
|
);
|
||||||
|
|
||||||
|
TAutoExecuteEvents = set of TAutoExecuteEvent;
|
||||||
|
|
||||||
TToolItem = class(TCollectionItem)
|
TToolItem = class(TCollectionItem)
|
||||||
private
|
private
|
||||||
fToolItems: TToolItems;
|
fToolItems: TToolItems;
|
||||||
|
@ -35,6 +50,7 @@ type
|
||||||
fSymStringExpander: ISymStringExpander;
|
fSymStringExpander: ISymStringExpander;
|
||||||
fPipeInputKind: TPipeInputKind;
|
fPipeInputKind: TPipeInputKind;
|
||||||
fAskConfirmation: boolean;
|
fAskConfirmation: boolean;
|
||||||
|
fAutoExecuteEvents: TAutoExecuteEvents;
|
||||||
procedure setParameters(value: TStringList);
|
procedure setParameters(value: TStringList);
|
||||||
procedure processOutput(sender: TObject);
|
procedure processOutput(sender: TObject);
|
||||||
procedure setToolAlias(value: string);
|
procedure setToolAlias(value: string);
|
||||||
|
@ -52,6 +68,7 @@ type
|
||||||
property outputToNext: boolean read fOutputToNext write fOutputToNext;
|
property outputToNext: boolean read fOutputToNext write fOutputToNext;
|
||||||
property pipeInputKind: TPipeInputKind read fPipeInputKind write fPipeInputKind;
|
property pipeInputKind: TPipeInputKind read fPipeInputKind write fPipeInputKind;
|
||||||
property askConfirmation: boolean read fAskConfirmation write fAskConfirmation;
|
property askConfirmation: boolean read fAskConfirmation write fAskConfirmation;
|
||||||
|
property autoExecuteEvents: TAutoExecuteEvents read fAutoExecuteEvents write fAutoExecuteEvents;
|
||||||
public
|
public
|
||||||
constructor create(ACollection: TCollection); override;
|
constructor create(ACollection: TCollection); override;
|
||||||
destructor destroy; override;
|
destructor destroy; override;
|
||||||
|
@ -65,23 +82,32 @@ type
|
||||||
function findTool(const value: string): TToolItem;
|
function findTool(const value: string): TToolItem;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TTools = class(TWritableLfmTextComponent, IEditableShortCut, IDocumentObserver)
|
TTools = class(TWritableLfmTextComponent, IEditableShortCut, IDocumentObserver, IProjectObserver, IFPObserver)
|
||||||
private
|
private
|
||||||
fTools: TToolItems;
|
fTools: TToolItems;
|
||||||
fShctCount: Integer;
|
fShctCount: Integer;
|
||||||
fDoc: TDexedMemo;
|
fDoc: TDexedMemo;
|
||||||
fMenu: TMenuItem;
|
fMenu: TMenuItem;
|
||||||
fReadOnly: boolean;
|
fReadOnly: boolean;
|
||||||
|
fEventSensitiveTools: array [TAutoExecuteEvent] of array of TToolItem;
|
||||||
function getTool(index: Integer): TToolItem;
|
function getTool(index: Integer): TToolItem;
|
||||||
procedure setTools(value: TToolItems);
|
procedure setTools(value: TToolItems);
|
||||||
//
|
procedure FPOObservedChanged(ASender: TObject; Operation: TFPObservedOperation; Data : Pointer);
|
||||||
|
|
||||||
procedure executeToolFromMenu(sender: TObject);
|
procedure executeToolFromMenu(sender: TObject);
|
||||||
//
|
|
||||||
procedure docNew(document: TDexedMemo);
|
procedure docNew(document: TDexedMemo);
|
||||||
procedure docFocused(document: TDexedMemo);
|
procedure docFocused(document: TDexedMemo);
|
||||||
procedure docChanged(document: TDexedMemo);
|
procedure docChanged(document: TDexedMemo);
|
||||||
procedure docClosing(document: TDexedMemo);
|
procedure docClosing(document: TDexedMemo);
|
||||||
//
|
|
||||||
|
procedure projNew(project: ICommonProject);
|
||||||
|
procedure projChanged(project: ICommonProject);
|
||||||
|
procedure projClosing(project: ICommonProject);
|
||||||
|
procedure projFocused(project: ICommonProject);
|
||||||
|
procedure projCompiling(project: ICommonProject);
|
||||||
|
procedure projCompiled(project: ICommonProject; success: boolean);
|
||||||
|
|
||||||
function scedWantFirst: boolean;
|
function scedWantFirst: boolean;
|
||||||
function scedWantNext(out category, identifier: string; out aShortcut: TShortcut): boolean;
|
function scedWantNext(out category, identifier: string; out aShortcut: TShortcut): boolean;
|
||||||
procedure scedSendItem(const category, identifier: string; aShortcut: TShortcut);
|
procedure scedSendItem(const category, identifier: string; aShortcut: TShortcut);
|
||||||
|
@ -92,16 +118,15 @@ type
|
||||||
public
|
public
|
||||||
constructor create(aOwner: TComponent); override;
|
constructor create(aOwner: TComponent); override;
|
||||||
destructor destroy; override;
|
destructor destroy; override;
|
||||||
//
|
|
||||||
procedure updateMenu;
|
procedure updateMenu;
|
||||||
|
procedure updateEventSensitiveTools;
|
||||||
function addTool: TToolItem;
|
function addTool: TToolItem;
|
||||||
procedure executeTool(tool: TToolItem); overload;
|
procedure executeTool(tool: TToolItem); overload;
|
||||||
procedure executeTool(index: Integer); overload;
|
procedure executeTool(index: Integer); overload;
|
||||||
property tool[index: integer]: TToolItem read getTool; default;
|
property tool[index: integer]: TToolItem read getTool; default;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
//TODO-crefactor: either set the tools as a service of merge the tools collection& tool editor in a single unit.
|
|
||||||
|
|
||||||
var
|
var
|
||||||
CustomTools: TTools;
|
CustomTools: TTools;
|
||||||
|
|
||||||
|
@ -113,7 +138,7 @@ uses
|
||||||
const
|
const
|
||||||
toolsFname = 'tools.txt';
|
toolsFname = 'tools.txt';
|
||||||
|
|
||||||
{$REGION TToolItem -----------------------------------------------------------}
|
{$REGION TToolItem -------------------------------------------------------------}
|
||||||
function TToolItems.findTool(const value: string): TToolItem;
|
function TToolItems.findTool(const value: string): TToolItem;
|
||||||
var
|
var
|
||||||
item: TCollectionItem;
|
item: TCollectionItem;
|
||||||
|
@ -299,7 +324,8 @@ begin
|
||||||
fname := getDocPath + toolsFname;
|
fname := getDocPath + toolsFname;
|
||||||
if fname.fileExists then
|
if fname.fileExists then
|
||||||
loadFromFile(fname);
|
loadFromFile(fname);
|
||||||
|
updateEventSensitiveTools;
|
||||||
|
fTools.FPOAttachObserver(self);
|
||||||
EntitiesConnector.addObserver(self);
|
EntitiesConnector.addObserver(self);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
@ -314,7 +340,7 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
{$REGION IMainMenuProvider ---------------------------------------------------}
|
{$REGION IMainMenuProvider -----------------------------------------------------}
|
||||||
procedure TTools.updateMenu;
|
procedure TTools.updateMenu;
|
||||||
var
|
var
|
||||||
mnu: IMainMenu = nil;
|
mnu: IMainMenu = nil;
|
||||||
|
@ -349,7 +375,7 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
{$REGION IEditableShortCut ---------------------------------------------------}
|
{$REGION IEditableShortCut -----------------------------------------------------}
|
||||||
function TTools.scedWantFirst: boolean;
|
function TTools.scedWantFirst: boolean;
|
||||||
begin
|
begin
|
||||||
result := fTools.Count > 0;
|
result := fTools.Count > 0;
|
||||||
|
@ -384,15 +410,53 @@ begin
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
{$REGION IDocumentObserver ---------------------------------------------------}
|
{$REGION IProjectObserver ------------------------------------------------------}
|
||||||
|
procedure TTools.projNew(project: ICommonProject);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.projChanged(project: ICommonProject);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.projClosing(project: ICommonProject);
|
||||||
|
var
|
||||||
|
t: TToolItem;
|
||||||
|
begin
|
||||||
|
for t in fEventSensitiveTools[aeProjectClosing] do
|
||||||
|
t.execute(nil);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.projFocused(project: ICommonProject);
|
||||||
|
var
|
||||||
|
t: TToolItem;
|
||||||
|
begin
|
||||||
|
for t in fEventSensitiveTools[aeProjectFocused] do
|
||||||
|
t.execute(nil);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.projCompiling(project: ICommonProject);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.projCompiled(project: ICommonProject; success: boolean);
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
{$ENDREGION}
|
||||||
|
|
||||||
|
{$REGION IDocumentObserver -----------------------------------------------------}
|
||||||
procedure TTools.docNew(document: TDexedMemo);
|
procedure TTools.docNew(document: TDexedMemo);
|
||||||
begin
|
begin
|
||||||
fDoc := document;
|
fDoc := document;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTools.docFocused(document: TDexedMemo);
|
procedure TTools.docFocused(document: TDexedMemo);
|
||||||
|
var
|
||||||
|
t: TToolItem;
|
||||||
begin
|
begin
|
||||||
fDoc := document;
|
fDoc := document;
|
||||||
|
for t in fEventSensitiveTools[aeDocumentFocused] do
|
||||||
|
t.execute(nil);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTools.docChanged(document: TDexedMemo);
|
procedure TTools.docChanged(document: TDexedMemo);
|
||||||
|
@ -400,9 +464,13 @@ begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTools.docClosing(document: TDexedMemo);
|
procedure TTools.docClosing(document: TDexedMemo);
|
||||||
|
var
|
||||||
|
t: TToolItem;
|
||||||
begin
|
begin
|
||||||
if fDoc <> document then
|
if fDoc <> document then
|
||||||
exit;
|
exit;
|
||||||
|
for t in fEventSensitiveTools[aeDocumentClosing] do
|
||||||
|
t.execute(nil);
|
||||||
fDoc := nil;
|
fDoc := nil;
|
||||||
end;
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
@ -411,6 +479,15 @@ end;
|
||||||
procedure TTools.setTools(value: TToolItems);
|
procedure TTools.setTools(value: TToolItems);
|
||||||
begin
|
begin
|
||||||
fTools.Assign(value);
|
fTools.Assign(value);
|
||||||
|
updateEventSensitiveTools();
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TTools.FPOObservedChanged(ASender: TObject; Operation: TFPObservedOperation;
|
||||||
|
Data : Pointer);
|
||||||
|
begin
|
||||||
|
if operation = ooFree then
|
||||||
|
exit;
|
||||||
|
updateEventSensitiveTools();
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TTools.getTool(index: Integer): TToolItem;
|
function TTools.getTool(index: Integer): TToolItem;
|
||||||
|
@ -450,6 +527,28 @@ begin
|
||||||
exit;
|
exit;
|
||||||
executeTool(tool[index]);
|
executeTool(tool[index]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TTools.updateEventSensitiveTools;
|
||||||
|
var
|
||||||
|
i: integer;
|
||||||
|
j: integer;
|
||||||
|
e: TAutoExecuteEvent;
|
||||||
|
t: TToolItem;
|
||||||
|
begin
|
||||||
|
for e := low(TAutoExecuteEvent) to high(TAutoExecuteEvent) do
|
||||||
|
setlength(fEventSensitiveTools[e], 0);
|
||||||
|
for i:= 0 to fTools.Count-1 do
|
||||||
|
begin
|
||||||
|
t := getTool(i);
|
||||||
|
for e := low(TAutoExecuteEvent) to high(TAutoExecuteEvent) do
|
||||||
|
if e in t.autoExecuteEvents then
|
||||||
|
begin
|
||||||
|
j := length(fEventSensitiveTools[e]);
|
||||||
|
setLength(fEventSensitiveTools[e], j + 1);
|
||||||
|
fEventSensitiveTools[e, j] := t;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
{$ENDREGION}
|
{$ENDREGION}
|
||||||
|
|
||||||
initialization
|
initialization
|
||||||
|
|
|
@ -84,6 +84,7 @@ begin
|
||||||
for i := 0 to CustomTools.tools.Count-1 do
|
for i := 0 to CustomTools.tools.Count-1 do
|
||||||
lstTools.Items[i] := CustomTools[i].toolAlias;
|
lstTools.Items[i] := CustomTools[i].toolAlias;
|
||||||
CustomTools.updateMenu;
|
CustomTools.updateMenu;
|
||||||
|
CustomTools.updateEventSensitiveTools;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TToolsEditorWidget.lstToolsSelectionChange(Sender: TObject;
|
procedure TToolsEditorWidget.lstToolsSelectionChange(Sender: TObject;
|
||||||
|
@ -98,10 +99,14 @@ procedure TToolsEditorWidget.propsEdModified(Sender: TObject);
|
||||||
begin
|
begin
|
||||||
if propsEd.ItemIndex = -1 then
|
if propsEd.ItemIndex = -1 then
|
||||||
exit;
|
exit;
|
||||||
|
case propsEd.Rows[propsEd.ItemIndex].Name of
|
||||||
if (propsEd.Rows[propsEd.ItemIndex].Name = 'toolAlias')
|
'toolAlias': updateToolList;
|
||||||
or (propsEd.Rows[propsEd.ItemIndex].Name = 'shortcut') then
|
'shortcut' : updateToolList;
|
||||||
updateToolList;
|
'aeProjectFocused' : CustomTools.updateEventSensitiveTools;
|
||||||
|
'aeProjectClosing' : CustomTools.updateEventSensitiveTools;
|
||||||
|
'aeDocumentFocused' : CustomTools.updateEventSensitiveTools;
|
||||||
|
'aeDocumentClosing' : CustomTools.updateEventSensitiveTools;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TToolsEditorWidget.BtnAddToolClick(Sender: TObject);
|
procedure TToolsEditorWidget.BtnAddToolClick(Sender: TObject);
|
||||||
|
@ -154,6 +159,7 @@ begin
|
||||||
clearInspector;
|
clearInspector;
|
||||||
CustomTools.tools.Delete(lstTools.ItemIndex);
|
CustomTools.tools.Delete(lstTools.ItemIndex);
|
||||||
rebuildToolList;
|
rebuildToolList;
|
||||||
|
CustomTools.updateEventSensitiveTools;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TToolsEditorWidget.btnMoveUpClick(Sender: TObject);
|
procedure TToolsEditorWidget.btnMoveUpClick(Sender: TObject);
|
||||||
|
|
Loading…
Reference in New Issue