7 Module implementing the Help Viewers configuration page. |
7 Module implementing the Help Viewers configuration page. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtWidgets import QButtonGroup |
10 from PyQt6.QtWidgets import QButtonGroup |
11 |
11 |
|
12 from eric7 import Preferences |
|
13 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
12 from eric7.Globals import getWebBrowserSupport |
14 from eric7.Globals import getWebBrowserSupport |
13 |
|
14 from eric7.EricWidgets.EricPathPicker import EricPathPickerModes |
|
15 |
15 |
16 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .ConfigurationPageBase import ConfigurationPageBase |
17 from .Ui_HelpViewersPage import Ui_HelpViewersPage |
17 from .Ui_HelpViewersPage import Ui_HelpViewersPage |
18 |
|
19 from eric7 import Preferences |
|
20 |
18 |
21 |
19 |
22 class HelpViewersPage(ConfigurationPageBase, Ui_HelpViewersPage): |
20 class HelpViewersPage(ConfigurationPageBase, Ui_HelpViewersPage): |
23 """ |
21 """ |
24 Class implementing the Help Viewers configuration page. |
22 Class implementing the Help Viewers configuration page. |