class openalea.oalab.plugin.oalab.paradigm.IParadigmApplet(session, controller, parent=None)[source]

Bases: openalea.core.interface.IInterface

actions()[source]

Returns a list ["Tab name", [list of actions] ] Where "list of action" is a 3-item list : groupname(unicode), action(QAction), button_type(bool: 0 big button, 1 small button)

Example:

def actions(self):
    return self._actions = [["Python IDE","Text Edit", self.actionUndo,0],
                            ["Python IDE","Text Edit", self.actionRedo,0]
                           ]
identifier = 'IParadigmApplet'
name = 'IParadigmApplet'

Previous topic

<no title>

Next topic

Applets

This Page