How to use the envisage.api.contributes_to function in envisage

To help you get started, we’ve selected a few envisage examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bpteague / cytoflow / cytoflowgui / op_plugins / xform_stat.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / flow_task.py View on Github external
    @contributes_to(PREFERENCES)
    def _get_preferences(self):
        filename = os.path.join(os.path.dirname(__file__), 'preferences.ini')
        return [ 'file://' + filename ]
github bpteague / cytoflow / cytoflowgui / op_plugins / binning.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / kmeans.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / i_op_plugin.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        """
        Gets the :mod:`envisage` plugin for this operation (usually `self`).
github bpteague / cytoflow / cytoflowgui / view_plugins / table.py View on Github external
    @contributes_to(VIEW_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / bleedthrough_linear.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / pca.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / gaussian_2d.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self
github bpteague / cytoflow / cytoflowgui / op_plugins / logicle.py View on Github external
    @contributes_to(OP_PLUGIN_EXT)
    def get_plugin(self):
        return self