11 from PyQt4.QtGui import QDialog |
11 from PyQt4.QtGui import QDialog |
12 from PyQt4.QtCore import pyqtSlot |
12 from PyQt4.QtCore import pyqtSlot |
13 |
13 |
14 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog |
14 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog |
15 |
15 |
|
16 |
16 class PluginDetailsDialog(QDialog, Ui_PluginDetailsDialog): |
17 class PluginDetailsDialog(QDialog, Ui_PluginDetailsDialog): |
17 """ |
18 """ |
18 Class implementing the Plugin Details Dialog. |
19 Class implementing the Plugin Details Dialog. |
19 """ |
20 """ |
20 def __init__(self, details, parent = None): |
21 def __init__(self, details, parent=None): |
21 """ |
22 """ |
22 Constructor |
23 Constructor |
23 |
24 |
24 @param details dictionary containing the info to be displayed |
25 @param details dictionary containing the info to be displayed |
25 @param parent parent of this dialog (QWidget) |
26 @param parent parent of this dialog (QWidget) |