Source code for envisage.ui.tasks.task_extension
# (C) Copyright 2007-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
# Enthought library imports.
from pyface.tasks.action.api import SchemaAddition
from traits.api import Callable, HasStrictTraits, List, Str
[docs]class TaskExtension(HasStrictTraits):
"""A bundle of items for extending a Task."""
#: The ID of the task to extend. If the ID is omitted, the extension
#: applies to all tasks.
task_id = Str
#: A list of menu bar and tool bar items to add to the set provided
#: by the task.
actions = List(SchemaAddition)
#: A list of dock pane factories that will extend the dock panes provided
#: by the task.
dock_pane_factories = List(Callable)