10 import os |
10 import os |
11 import re |
11 import re |
12 import sys |
12 import sys |
13 import json |
13 import json |
14 |
14 |
15 from PyQt5.QtCore import QFileInfo, pyqtSlot, QProcess, QByteArray |
15 from PyQt6.QtCore import QFileInfo, pyqtSlot, QProcess, QByteArray |
16 from PyQt5.QtGui import QClipboard, QTextCursor |
16 from PyQt6.QtGui import QClipboard, QTextCursor |
17 from PyQt5.QtWidgets import ( |
17 from PyQt6.QtWidgets import ( |
18 QWidget, QDialog, QInputDialog, QApplication, QDialogButtonBox, |
18 QWidget, QDialog, QInputDialog, QApplication, QDialogButtonBox, |
19 QVBoxLayout, QTableWidgetItem |
19 QVBoxLayout, QTableWidgetItem |
20 ) |
20 ) |
21 |
21 |
22 from E5Gui import E5MessageBox, E5FileDialog |
22 from E5Gui import E5MessageBox, E5FileDialog |