759 # Create the code documentation viewer |
759 # Create the code documentation viewer |
760 logging.debug("Creating Code Documentation Viewer...") |
760 logging.debug("Creating Code Documentation Viewer...") |
761 from .CodeDocumentationViewer import CodeDocumentationViewer |
761 from .CodeDocumentationViewer import CodeDocumentationViewer |
762 self.codeDocumentationViewer = CodeDocumentationViewer(self) |
762 self.codeDocumentationViewer = CodeDocumentationViewer(self) |
763 self.rToolbox.addItem(self.codeDocumentationViewer, |
763 self.rToolbox.addItem(self.codeDocumentationViewer, |
764 UI.PixmapCache.getIcon("codeDocuViewer.png"), |
764 UI.PixmapCache.getIcon("codeDocuViewer.png"), |
765 self.tr("Code Documentation Viewer")) |
765 self.tr("Code Documentation Viewer")) |
766 |
766 |
767 # Create the debug viewer maybe without the embedded shell |
767 # Create the debug viewer maybe without the embedded shell |
768 logging.debug("Creating Debug Viewer...") |
768 logging.debug("Creating Debug Viewer...") |
769 from Debugger.DebugViewer import DebugViewer |
769 from Debugger.DebugViewer import DebugViewer |
906 logging.debug("Creating Code Documentation Viewer...") |
906 logging.debug("Creating Code Documentation Viewer...") |
907 from .CodeDocumentationViewer import CodeDocumentationViewer |
907 from .CodeDocumentationViewer import CodeDocumentationViewer |
908 self.codeDocumentationViewer = CodeDocumentationViewer(self) |
908 self.codeDocumentationViewer = CodeDocumentationViewer(self) |
909 self.rightSidebar.addTab( |
909 self.rightSidebar.addTab( |
910 self.codeDocumentationViewer, |
910 self.codeDocumentationViewer, |
911 UI.PixmapCache.getIcon("codeDocuViewer.png"), |
911 UI.PixmapCache.getIcon("codeDocuViewer.png"), |
912 self.tr("Code Documentation Viewer")) |
912 self.tr("Code Documentation Viewer")) |
913 |
913 |
914 # Create the debug viewer maybe without the embedded shell |
914 # Create the debug viewer maybe without the embedded shell |
915 logging.debug("Creating Debug Viewer...") |
915 logging.debug("Creating Debug Viewer...") |
916 from Debugger.DebugViewer import DebugViewer |
916 from Debugger.DebugViewer import DebugViewer |