Custom Tabs¶
-
class
UI4.Tabs.BaseTab(parent, flags=0, deprecatedBy=None)¶ Bases:
UI4.Widgets.BaseWidgets.BaseFrameBase class for all UI tabs.
Inherits from
BaseFrameto provide handling of custom callbacks for actions and key events that are associated with user-defined keyboard shortcuts, and provides functions for storing and restoring settings per tab when loading and saving tab layouts.Variables: - Icon – ✨ New in Katana 4.5: An icon to use next to the
title of a tab in the tab bar of a pane, and for menu items that
represent the tab type in the Tabs main menu and the Add Tab
pane menu, unless
MenuItemIconis defined. The icon for a tab type of a given name can be retrieved by callingUI4.App.Tabs.GetTabIcon. - MenuItemIcon – ✨ New in Katana 4.5: An icon to use for
menu items that represent the tab type in the Tabs main menu and
the Add Tab pane menu. If
MenuItemIconis not defined, butIconis defined, thenIconwill be used for menu items that represent the tab type. The menu item icon for a tab type of a given name can be retrieved by callingUI4.App.Tabs.GetTabMenuItemIcon. - tabClosed – Signal that is emitted when a tab is being closed. Can be used to deregister event handlers or free up allocated resources.
-
__init__(parent, flags=0, deprecatedBy=None)¶ Initializes an instance of the class.
Parameters: - parent (
QtWidgets.QWidgetorNone) – The parent widget to own the new instance. Passed verbatim to the base class initializer. - flags (
QtCore.Qt.WindowFlags) – The window flags to use in case no parent is given. Passed wrapped inQtCore.Qt.WindowFlags()to theBaseFramebase class initializer. - deprecatedBy (
strorNone) – The name of a type of tab that is to be used instead of an instance of a specific class that is derived from theBaseTabclass.
- parent (
-
applySettings(settings)¶ Applies the given settings to the tab.
Is called when creating a tab of the type represented by a class derived from
BaseTab.Parameters: settings ( dict) – A dictionary of settings to apply to this tab.Note: The default implementation does nothing.
-
closeEvent(event)¶ This event handler is called with the given event when the tab receives a window close request. A signal is emitted when the tab gets closed which would then a child widget could pick up to unregister any of its registered event handlers.
Parameters: event ( QtGui.QCloseEvent) – Event sent to widgets that the user wants to close.
-
getMenuBar()¶ Return type: QtWidgets.QMenuBarorNoneReturns: The tab’s menu bar, or Noneif the tab does not provide a menu bar.
-
getSettings()¶ Return type: dictReturns: A dictionary of settings that should be stored and restored as part of a tab layout. Note: The default implementation returns an empty dictionary.
-
getTabTitle()¶ Return type: strorNoneReturns: A specific title to use for this tab, or Noneto use a title that matches the type of the tab.
-
on_animation_finished()¶ Slot that is called when the animation for hiding the deprecation warning frame has finished.
Removes the deprecation warning frame from the tab’s layout and deletes it.
-
on_dismissButton_clicked()¶ Slot that is called when the B{Dismiss} button in the deprecation warning frame has been clicked.
Adds the title of this type of tab to the list of titles of tabs whose deprecation warnings have been dismissed that is stored in the user’s preferences.
-
on_replaceTabButton_clicked()¶ Slot that is called when the B{Replace} button has been clicked.
Replaces this tab with a tab of the type by which this type of tab has been deprecated.
-
showEvent(event)¶ Event handler for widget show events.
Parameters: event ( QtGui.QShowEvent) – An object containing details about the widget show event to process.
-
tabClosed¶
- Icon – ✨ New in Katana 4.5: An icon to use next to the
title of a tab in the tab bar of a pane, and for menu items that
represent the tab type in the Tabs main menu and the Add Tab
pane menu, unless