10 import os |
10 import os |
11 import re |
11 import re |
12 |
12 |
13 from PyQt4.QtCore import QFileInfo, pyqtSlot, qVersion |
13 from PyQt4.QtCore import QFileInfo, pyqtSlot, qVersion |
14 try: |
14 try: |
15 from PyQt5.QtCore import QRegularExpression |
15 from PyQt4.QtCore import QRegularExpression |
16 AVAILABLE = True |
16 AVAILABLE = True |
17 except ImportError: |
17 except ImportError: |
18 AVAILABLE = False |
18 AVAILABLE = False |
19 from PyQt4.QtGui import QWidget, QDialog, QInputDialog, QApplication, QClipboard, \ |
19 from PyQt4.QtGui import QWidget, QDialog, QInputDialog, QApplication, QClipboard, \ |
20 QTextCursor, QDialogButtonBox, QVBoxLayout, QTableWidgetItem |
20 QTextCursor, QDialogButtonBox, QVBoxLayout, QTableWidgetItem |