12 import re |
12 import re |
13 |
13 |
14 from PyQt6.QtCore import pyqtSlot |
14 from PyQt6.QtCore import pyqtSlot |
15 from PyQt6.QtGui import QClipboard, QTextCursor |
15 from PyQt6.QtGui import QClipboard, QTextCursor |
16 from PyQt6.QtWidgets import ( |
16 from PyQt6.QtWidgets import ( |
|
17 QApplication, |
|
18 QDialog, |
|
19 QDialogButtonBox, |
|
20 QInputDialog, |
|
21 QTableWidgetItem, |
|
22 QVBoxLayout, |
17 QWidget, |
23 QWidget, |
18 QDialog, |
|
19 QInputDialog, |
|
20 QApplication, |
|
21 QDialogButtonBox, |
|
22 QVBoxLayout, |
|
23 QTableWidgetItem, |
|
24 ) |
24 ) |
25 |
25 |
26 from eric7.EricWidgets import EricMessageBox, EricFileDialog |
26 from eric7 import Preferences, Utilities |
|
27 from eric7.EricGui import EricPixmapCache |
|
28 from eric7.EricWidgets import EricFileDialog, EricMessageBox |
27 from eric7.EricWidgets.EricMainWindow import EricMainWindow |
29 from eric7.EricWidgets.EricMainWindow import EricMainWindow |
28 |
30 |
29 from .Ui_PyRegExpWizardDialog import Ui_PyRegExpWizardDialog |
31 from .Ui_PyRegExpWizardDialog import Ui_PyRegExpWizardDialog |
30 |
|
31 from eric7.EricGui import EricPixmapCache |
|
32 |
|
33 from eric7 import Preferences, Utilities |
|
34 |
32 |
35 |
33 |
36 class PyRegExpWizardWidget(QWidget, Ui_PyRegExpWizardDialog): |
34 class PyRegExpWizardWidget(QWidget, Ui_PyRegExpWizardDialog): |
37 """ |
35 """ |
38 Class implementing the Python re wizard dialog. |
36 Class implementing the Python re wizard dialog. |