5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to manage the QtHelp filters. |
7 Module implementing a dialog to manage the QtHelp filters. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtGui import * |
10 from PyQt4.QtCore import pyqtSlot, Qt |
11 from PyQt4.QtCore import * |
11 from PyQt4.QtGui import QDialog, QTreeWidgetItem, QListWidgetItem, QInputDialog, QLineEdit |
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 |