5 |
5 |
6 """ |
6 """ |
7 Module implementing the templates properties dialog. |
7 Module implementing the templates properties dialog. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, Qt, QRegularExpression |
10 from PyQt6.QtCore import QRegularExpression, Qt, pyqtSlot |
11 from PyQt6.QtGui import QRegularExpressionValidator |
11 from PyQt6.QtGui import QRegularExpressionValidator |
12 from PyQt6.QtWidgets import QDialog |
12 from PyQt6.QtWidgets import QDialog |
13 |
13 |
|
14 from eric7 import Preferences |
|
15 from eric7.EricWidgets import EricMessageBox |
|
16 |
14 from .Ui_TemplatePropertiesDialog import Ui_TemplatePropertiesDialog |
17 from .Ui_TemplatePropertiesDialog import Ui_TemplatePropertiesDialog |
15 |
|
16 from eric7.EricWidgets import EricMessageBox |
|
17 |
|
18 from eric7 import Preferences |
|
19 |
18 |
20 |
19 |
21 class TemplatePropertiesDialog(QDialog, Ui_TemplatePropertiesDialog): |
20 class TemplatePropertiesDialog(QDialog, Ui_TemplatePropertiesDialog): |
22 """ |
21 """ |
23 Class implementing the templates properties dialog. |
22 Class implementing the templates properties dialog. |