Bases: openalea.core.interface.IInterface
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]
]