5671 def __activateShell(self): |
5671 def __activateShell(self): |
5672 """ |
5672 """ |
5673 Private slot to handle the activation of the Shell window. |
5673 Private slot to handle the activation of the Shell window. |
5674 """ |
5674 """ |
5675 if self.__layoutType == "Toolboxes": |
5675 if self.__layoutType == "Toolboxes": |
5676 self.__shellParent.show() |
5676 self.hToolboxDock.show() |
5677 self.__shellParent.widget().setCurrentWidget(self.shellAssembly) |
5677 self.hToolboxDock.setCurrentWidget(self.shellAssembly) |
5678 elif self.__layoutType == "Sidebars": |
5678 elif self.__layoutType == "Sidebars": |
5679 self.__shellParent.show() |
5679 self.bottomSidebar.show() |
5680 self.__shellParent.setCurrentWidget(self.shellAssembly) |
5680 self.bottomSidebar.setCurrentWidget(self.shellAssembly) |
5681 self.shell.setFocus(Qt.FocusReason.ActiveWindowFocusReason) |
5681 self.shell.setFocus(Qt.FocusReason.ActiveWindowFocusReason) |
5682 |
5682 |
5683 def __activateLogViewer(self): |
5683 def __activateLogViewer(self): |
5684 """ |
5684 """ |
5685 Private slot to handle the activation of the Log Viewer. |
5685 Private slot to handle the activation of the Log Viewer. |