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, |
|
20 QSizePolicy, |
|
21 QSpacerItem, |
|
22 QVBoxLayout, |
13 QWidget, |
23 QWidget, |
14 QDialog, |
|
15 QVBoxLayout, |
|
16 QHBoxLayout, |
|
17 QScrollArea, |
|
18 QPushButton, |
|
19 QSpacerItem, |
|
20 QSizePolicy, |
|
21 QComboBox, |
|
22 QLineEdit, |
|
23 QLabel, |
|
24 ) |
24 ) |
25 |
25 |
26 from .Ui_QRegularExpressionWizardCharactersDialog import ( |
26 from .Ui_QRegularExpressionWizardCharactersDialog import ( |
27 Ui_QRegularExpressionWizardCharactersDialog, |
27 Ui_QRegularExpressionWizardCharactersDialog, |
28 ) |
28 ) |