1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# (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
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.
# ------------------------------------------------------------------------
def perform(self, event):
""" Perform the action. """
window = event.window
manager = window.workbench.user_perspective_manager
# The perspective to delete.
perspective = window.active_perspective
# Make sure that the user isn't having second thoughts!
message = (
'Are you sure you want to delete the "%s" perspective?'
% perspective.name
)
answer = window.confirm(message, title="Confirm Delete")
if answer == YES:
# Set the active perspective to be the first remaining perspective.
#
# There is always a default NON-user perspective (even if no
# perspectives are explicitly defined) so we should never(!) not
# be able to find one!
window.active_perspective = self._get_next_perspective(window)
# Remove the perspective from the window.
window.perspectives.remove(perspective)
# Remove it from the user perspective manager.
manager.remove(perspective.id)
return
# ------------------------------------------------------------------------
# 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]
|