5 |
5 |
6 """ |
6 """ |
7 Module implementing the Web Browser configuration page. |
7 Module implementing the Web Browser configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, QLocale |
10 from PyQt6.QtCore import QLocale, pyqtSlot |
|
11 |
|
12 from eric7 import Preferences |
|
13 from eric7.EricGui import EricPixmapCache |
11 |
14 |
12 from .ConfigurationPageBase import ConfigurationPageBase |
15 from .ConfigurationPageBase import ConfigurationPageBase |
13 from .Ui_WebBrowserPage import Ui_WebBrowserPage |
16 from .Ui_WebBrowserPage import Ui_WebBrowserPage |
14 |
|
15 from eric7.EricGui import EricPixmapCache |
|
16 from eric7 import Preferences |
|
17 |
17 |
18 |
18 |
19 class WebBrowserPage(ConfigurationPageBase, Ui_WebBrowserPage): |
19 class WebBrowserPage(ConfigurationPageBase, Ui_WebBrowserPage): |
20 """ |
20 """ |
21 Class implementing the Web Browser configuration page. |
21 Class implementing the Web Browser configuration page. |