5 |
5 |
6 """ |
6 """ |
7 Module implementing a widget to manage the QtHelp documentation settings. |
7 Module implementing a widget to manage the QtHelp documentation settings. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot, pyqtSignal |
10 from PyQt6.QtCore import pyqtSignal, pyqtSlot |
11 from PyQt6.QtWidgets import QWidget, QListWidgetItem, QDialog |
11 from PyQt6.QtWidgets import QDialog, QListWidgetItem, QWidget |
12 |
12 |
|
13 from eric7.EricWidgets import EricFileDialog, EricMessageBox |
13 from eric7.EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets.EricApplication import ericApp |
14 from eric7.EricWidgets import EricMessageBox, EricFileDialog |
15 |
15 |
16 from .QtHelpDocumentationSettings import QtHelpDocumentationSettings |
16 from .Ui_QtHelpDocumentationSettingsWidget import Ui_QtHelpDocumentationSettingsWidget |
17 from .Ui_QtHelpDocumentationSettingsWidget import Ui_QtHelpDocumentationSettingsWidget |
17 |
|
18 from .QtHelpDocumentationSettings import QtHelpDocumentationSettings |
|
19 |
18 |
20 |
19 |
21 class QtHelpDocumentationSettingsWidget(QWidget, Ui_QtHelpDocumentationSettingsWidget): |
20 class QtHelpDocumentationSettingsWidget(QWidget, Ui_QtHelpDocumentationSettingsWidget): |
22 """ |
21 """ |
23 Class implementing a widget to manage the QtHelp documentation settings. |
22 Class implementing a widget to manage the QtHelp documentation settings. |