Seregon/PkgToolBox

Toolbox for analyzing and editing pkg application files for psp,ps3, ps4 and ps5, includes the most useful functions you might need.

Python/57.3 KB/No license
Utilities/Extension/TreeView.py
PkgToolBox / Utilities / Extension / TreeView.py
1from PyQt5.QtWidgets import QTreeWidgetItem
2
3class TreeView:
4 @staticmethod
5 def get_all_nodes(node):
6 list_nodes = [node]
7 for i in range(node.childCount()):
8 list_nodes.extend(TreeView.get_all_nodes(node.child(i)))
9 return list_nodes