11 from PyQt4.QtCore import * |
11 from PyQt4.QtCore import * |
12 from PyQt4.QtHelp import QHelpEngineCore |
12 from PyQt4.QtHelp import QHelpEngineCore |
13 |
13 |
14 from .Ui_QtHelpFiltersDialog import Ui_QtHelpFiltersDialog |
14 from .Ui_QtHelpFiltersDialog import Ui_QtHelpFiltersDialog |
15 |
15 |
|
16 |
16 class QtHelpFiltersDialog(QDialog, Ui_QtHelpFiltersDialog): |
17 class QtHelpFiltersDialog(QDialog, Ui_QtHelpFiltersDialog): |
17 """ |
18 """ |
18 Class implementing a dialog to manage the QtHelp filters |
19 Class implementing a dialog to manage the QtHelp filters |
19 """ |
20 """ |
20 def __init__(self, engine, parent = None): |
21 def __init__(self, engine, parent=None): |
21 """ |
22 """ |
22 Constructor |
23 Constructor |
23 |
24 |
24 @param engine reference to the help engine (QHelpEngine) |
25 @param engine reference to the help engine (QHelpEngine) |
25 @param parent reference to the parent widget (QWidget) |
26 @param parent reference to the parent widget (QWidget) |