7 Module implementing a configuration dialog for the tools menu. |
7 Module implementing a configuration dialog for the tools menu. |
8 """ |
8 """ |
9 |
9 |
10 import copy |
10 import copy |
11 |
11 |
12 from PyQt5.QtCore import Qt, pyqtSlot |
12 from PyQt6.QtCore import Qt, pyqtSlot |
13 from PyQt5.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
15 from E5Gui import E5MessageBox |
15 from E5Gui import E5MessageBox |
16 |
16 |
17 from .Ui_ToolGroupConfigurationDialog import Ui_ToolGroupConfigurationDialog |
17 from .Ui_ToolGroupConfigurationDialog import Ui_ToolGroupConfigurationDialog |
18 |
18 |