src/eric7/Templates/TemplatePropertiesDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9482
a2bc06a54d9d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
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.

eric ide

mercurial