Developing Custom Plugins

Shift Plugins are developed as custom PySide2 classes inheriting from QtWidgets.QWidget.

Writing a Plugin Class

The plugin widget class instances will always be parented to Shift's Main Window. This facilitates access to objects like the current board, the current workflow, operators, or workflow variables. To learn more about how to integrate a custom plugin into Shift, please refer to Shift's API, especially to the application's main widget shift.ui.widgets.main.ShiftWindow.

Shift's native plugins code, together with a template file can be found in the shift/plugins folder. These should serve as a reference for implementing your custom logic and integrating it correctly inside Shift.

Advanced users can code their own way through the Shift Python API, however it is strongly recommended to follow these design principles:

  • Store the widget parent in a class property. After the initialization of the widget class, Shift will change the parenting hierarchy. For this reason it is strongly suggested to store the parent object in the plugin class constructor. At initialization time, the parent will correspond to the ShiftWindow object.
class MainWidget(QtWidgets.QWidget):
    """Main plugin widget.

    @param parent shift.ui.widgets.main.ShiftWindow: The Shift main window.

    """
    def __init__(self, parent=None):
        super(MainWidget, self).__init__(parent)

        #Store the ShiftWindow inside a class property
        self.mainWindow = parent
  • Wrap all the Qt signal connection calls to the board in a dedicated method (see the MainWidget._connectBoardSignals in the pluginTemplate.py example file). As each workflow board propagates its own Qt signals, connections must be performed for all existing boards and new ones.
def _connectBoardSignals(self):
    """Standard method to connect to the current board signals."""

    # The signals to be connected from the board...e.g.
    self.mainWindow.getActiveBoard().workflowExecuted.connect(self._updateContent)

This method should be executed for all existing and new board tabs for the plugin to correctly interact with Shift. The ideal way to do that is to use this method as a Qt slot and connect it to the following signals at the end of the plugin class constructor logic:

def __init__(self, parent=None):

    [...]

    self.mainWindow.getBoardTabsWidget().currentChanged.connect(self._connectBoardSignals)
    self.mainWindow.newBoardCreated.connect(self._connectBoardSignals)
    self._connectBoardSignals()

This will automatically connect the board signals to the currently active one and brand new ones.

Adding the Plugin to Shift

The first step to add the plugin to the Shift UI is to create a json file containing the information needed by Shift to source all of the custom plugin classes. This file should be formatted in the following way:

{
  "Operators List": {
    "menu": "Tools",
    "path": "./operatorsList.py",
    "class": "OperatorsList",
    "allowMultiple": false
  },
  "Variables Browser": {
    "menu": "Tools",
    "path": "./variablesBrowser.py",
    "class": "VariablesBrowser",
    "allowMultiple": false
  }
}

Each plugin main entry name will define the name displayed by the plugin menu entry in the top bar menu. Then for each plugin entry will need:

  • Menu: The name of the top menu entry that the plugin should be added to.
  • Path: The absolute or relative path to the Python file containing the plugin class.
  • Class: The name of the plugin class to be imported.
  • AllowMultiple: If only one instance of the plugin can be opened (true) or if it can be opened multiple times (false). If this entry is not defined in the json then, by default, multiple instances of the plugin can be opened.

Shift allows users to add their custom plugins even to native menus. If a new menu name is requested, it will be added to the UI automatically.

Once the json file is created and populated, the plugin can be sourced by appending the path to the plugins.json file to the SHIFT_PLUGIN_PATH environment variable before starting Shift:

SHIFT_PLUGIN_PATH : "<path_to_the_plugins_json>/plugins.json"

Inbibo Logo

consultancy, automation and digital creatures

65 Compton Street, London, United Kingdom, EC1V 0BN

info@inbibo.co.uk

Information

Products

© 2024 Inbibo LTD. - All rights reserved - Design & Development: def:studio