787 # Create AST viewer |
787 # Create AST viewer |
788 logging.debug("Creating Python AST Viewer") |
788 logging.debug("Creating Python AST Viewer") |
789 from .PythonAstViewer import PythonAstViewer |
789 from .PythonAstViewer import PythonAstViewer |
790 self.__astViewer = PythonAstViewer(self.viewmanager, splitter) |
790 self.__astViewer = PythonAstViewer(self.viewmanager, splitter) |
791 splitter.addWidget(self.__astViewer) |
791 splitter.addWidget(self.__astViewer) |
|
792 |
|
793 # Create DIS viewer |
|
794 logging.debug("Creating Python Disassembly Viewer") |
|
795 from .PythonDisViewer import PythonDisViewer |
|
796 self.__disViewer = PythonDisViewer(self.viewmanager, splitter) |
|
797 splitter.addWidget(self.__disViewer) |
792 |
798 |
793 # Create layout with toolbox windows embedded in dock windows |
799 # Create layout with toolbox windows embedded in dock windows |
794 if self.__layoutType == "Toolboxes": |
800 if self.__layoutType == "Toolboxes": |
795 logging.debug("Creating toolboxes...") |
801 logging.debug("Creating toolboxes...") |
796 self.__createToolboxesLayout(debugServer) |
802 self.__createToolboxesLayout(debugServer) |