1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
""" The default action set for the refresh code plugin. """
# Enthought library imports.
from enthought.envisage.ui.action.api import Action, ActionSet
# This package
PKG = '.'.join(__name__.split('.')[:-1])
refresh_code = Action(
class_name = PKG + '.actions.RefreshCode',
path = 'MenuBar/Tools', group='additions'
)
class RefreshCodeActionSet(ActionSet):
""" The default action set for the refresh code plugin. """
actions = [refresh_code]
#### EOF ######################################################################
|