5 |
5 |
6 """ |
6 """ |
7 Module implementing the Help web browser configuration page. |
7 Module implementing the Help web browser configuration page. |
8 """ |
8 """ |
9 |
9 |
|
10 from __future__ import unicode_literals # __IGNORE_WARNING__ |
|
11 |
10 from PyQt4.QtCore import pyqtSlot, QLocale |
12 from PyQt4.QtCore import pyqtSlot, QLocale |
11 from PyQt4.QtNetwork import QNetworkRequest |
13 from PyQt4.QtNetwork import QNetworkRequest |
12 from PyQt4.QtWebKit import QWebSettings |
14 from PyQt4.QtWebKit import QWebSettings |
13 |
15 |
14 from .ConfigurationPageBase import ConfigurationPageBase |
16 from .ConfigurationPageBase import ConfigurationPageBase |
26 """ |
28 """ |
27 Constructor |
29 Constructor |
28 |
30 |
29 @param configDialog reference to the configuration dialog (ConfigurationDialog) |
31 @param configDialog reference to the configuration dialog (ConfigurationDialog) |
30 """ |
32 """ |
31 super().__init__() |
33 super(HelpWebBrowserPage, self).__init__() |
32 self.setupUi(self) |
34 self.setupUi(self) |
33 self.setObjectName("HelpWebBrowserPage") |
35 self.setObjectName("HelpWebBrowserPage") |
34 |
36 |
35 self.__configDlg = configDialog |
37 self.__configDlg = configDialog |
36 mw = configDialog.parent().parent() |
38 mw = configDialog.parent().parent() |