11 import fnmatch |
11 import fnmatch |
12 import copy |
12 import copy |
13 import collections |
13 import collections |
14 import json |
14 import json |
15 |
15 |
16 from PyQt5.QtCore import pyqtSlot, Qt, QTimer, QCoreApplication |
16 from PyQt6.QtCore import pyqtSlot, Qt, QTimer, QCoreApplication |
17 from PyQt5.QtGui import QIcon |
17 from PyQt6.QtGui import QIcon |
18 from PyQt5.QtWidgets import ( |
18 from PyQt6.QtWidgets import ( |
19 QDialog, QTreeWidgetItem, QAbstractButton, QDialogButtonBox, QApplication, |
19 QDialog, QTreeWidgetItem, QAbstractButton, QDialogButtonBox, QApplication, |
20 QHeaderView, QListWidgetItem, QInputDialog, QLineEdit |
20 QHeaderView, QListWidgetItem, QInputDialog, QLineEdit |
21 ) |
21 ) |
22 |
22 |
23 from E5Gui.E5Application import e5App |
23 from E5Gui.E5Application import e5App |