8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import QRegularExpression |
10 from PyQt6.QtCore import QRegularExpression |
11 from PyQt6.QtGui import QRegularExpressionValidator |
11 from PyQt6.QtGui import QRegularExpressionValidator |
12 from PyQt6.QtWidgets import ( |
12 from PyQt6.QtWidgets import ( |
|
13 QComboBox, |
|
14 QDialog, |
|
15 QHBoxLayout, |
|
16 QLabel, |
|
17 QLineEdit, |
|
18 QPushButton, |
|
19 QScrollArea, |
13 QSizePolicy, |
20 QSizePolicy, |
14 QSpacerItem, |
21 QSpacerItem, |
|
22 QVBoxLayout, |
15 QWidget, |
23 QWidget, |
16 QHBoxLayout, |
|
17 QLineEdit, |
|
18 QPushButton, |
|
19 QDialog, |
|
20 QScrollArea, |
|
21 QComboBox, |
|
22 QVBoxLayout, |
|
23 QLabel, |
|
24 ) |
24 ) |
25 |
25 |
26 from .Ui_PyRegExpWizardCharactersDialog import Ui_PyRegExpWizardCharactersDialog |
26 from .Ui_PyRegExpWizardCharactersDialog import Ui_PyRegExpWizardCharactersDialog |
27 |
27 |
28 |
28 |