def create_viewer_tree(self): """ Method to create a tree with two columns (pipeline name - viewers) that will summarize all the available quality control nodes """ # Create the tree widget self.viewer_tree = QtGui.QTreeWidget(parent=self) # Initialize the tree widget self.viewer_tree.setColumnCount(2) self.viewer_tree.headerItem().setText(0, "Pipeline Name") self.viewer_tree.headerItem().setText(1, "Viewers")
def create_board_tree(self): """ Method to create a tree with five columns (processings - status - execution time - memory - logs) that will summarize all the available quality control nodes """ # Create the tree widget self.board_tree = QtGui.QTreeWidget(parent=self) # Initialize the tree widget self.board_tree.setColumnCount(5) self.board_tree.headerItem().setText(0, "Processings") self.board_tree.headerItem().setText(1, "Status") self.board_tree.headerItem().setText(2, "Execution Time") self.board_tree.headerItem().setText(3, "Memory") self.board_tree.headerItem().setText(4, "Logs")