7 Module implementing the Text Mime Types configuration page. |
7 Module implementing the Text Mime Types configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 |
11 |
12 from EricWidgets import EricMessageBox |
12 from eric7.EricWidgets import EricMessageBox |
13 |
13 |
14 from .ConfigurationPageBase import ConfigurationPageBase |
14 from .ConfigurationPageBase import ConfigurationPageBase |
15 from .Ui_MimeTypesPage import Ui_MimeTypesPage |
15 from .Ui_MimeTypesPage import Ui_MimeTypesPage |
16 |
16 |
17 import Preferences |
17 from eric7 import Preferences |
18 |
18 |
19 |
19 |
20 class MimeTypesPage(ConfigurationPageBase, Ui_MimeTypesPage): |
20 class MimeTypesPage(ConfigurationPageBase, Ui_MimeTypesPage): |
21 """ |
21 """ |
22 Class implementing the Text Mime Types configuration page. |
22 Class implementing the Text Mime Types configuration page. |