--- title: Widgets - Custom Tools header-includes: --- This widget allows to define a set of third party applications that can be launched from Dexed. The tools are not just applications that are launched from the software. Since they support [symbolic strings](features_symbolic_strings.html) they can directly perform some actions on the current source file, in its directory, in the project directory and more. The tools can even be chained and piped between themselves. A few examples: - launch a console with its working directory set to the project file directory. - generate the documentation for all the project sources. - launch a custom build tool. - launch git gui directly on the current project. ![](img/custom_tools.png) Toolbar: - ![](icons/window/application_edit.png): Enables or disables edition. - ![](icons/window/application_add.png): Adds a new tool. - ![](icons/window/application_delete.png): Removes selected tool. - ![](icons/arrow/arrow_up.png) **/** ![](icons/arrow/arrow_down.png): Changes the position of the selected tool. - ![](icons/window/application_double.png): Clones the tool that's selected. - ![](icons/window/application_flash.png): Executes the tool that's selected, according to the options it's associated to. This also works by double-clicking the tool aliases. - ![](icons/other/cancel.png): Terminates the process create for the tool. 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. - **autoExecuteEvents**: Defines the events for which the tool is automatically executed. - **backGroundColor**: The color used to draw the item. - **clearMessages**: If the tool standard output is redirected to the [messages widget](widgets_messages.html) 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**. - **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.html). - **nextToolAlias**: Defines the alias of another tool that will be launched after this one returns. - **options**: Various options for the process to create. If you set **poUsesPipes** and **poStdErrToOutput** to true, then the standard output will be redirected to the message widget, category Misc. - **outputToNext**: If **popUsePipes** is set in the options and if the next tool is defined then the next tool will see its input stream filled with the output stream. - **parameters**: Defines the parameters, switches and options passed to the process. As usual, one item per line, no quotes. The items can contains [symbolic strings](features_symbolic_strings.html). The parameters can contain a special symbol, `<$1>`, which expands to the string passed to the dialog when **queryParameters** is checked. - **pipeInputKind**: Defines what will be piped to the tool standard input after it's been launched (editor content, current line or selection). - **queryParameters**: If checked then an input query dialog will be shown before executing the tool. It can be filled with more _--para --meters_. - **shortcut**: Defines the keystroke used to launch the tool. The shortcut can also be edited in the [options editor](widgets_options_editor.html). - **showWindow**: Defines how the tool window is displayed. Set to **swoHIDE** if the tool standard output is redirected. - **toolAlias**: The friendly name associated to the tool. - **workingDirectory**: The directory in which the tool starts. Not to mismatch with its path. The field can contain [symbolic strings](features_symbolic_strings.html).