Source code for pyface.workbench.action.delete_user_perspective_action
# (C) Copyright 2005-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!
""" An action that deletes a user perspective. """
from pyface.api import YES
from .user_perspective_action import UserPerspectiveAction
[docs]class DeleteUserPerspectiveAction(UserPerspectiveAction):
""" An action that deletes a user perspective. """
# 'Action' interface ---------------------------------------------------
# The action's unique identifier (may be None).
id = "pyface.workbench.action.delete_user_perspective_action"
# The action's name (displayed on menus/tool bar tools etc).
name = "Delete Perspective"
# ------------------------------------------------------------------------
# 'Action' interface.
# ------------------------------------------------------------------------
# ------------------------------------------------------------------------
# Private interface.
# ------------------------------------------------------------------------
def _get_next_perspective(self, window):
""" Return the first perspective that is not the active one! """
if window.active_perspective is window.perspectives[0]:
index = 1
else:
index = 0
return window.perspectives[index]