5 |
5 |
6 |
6 |
7 """ |
7 """ |
8 Module implementing the Plugin Details Dialog. |
8 Module implementing the Plugin Details Dialog. |
9 """ |
9 """ |
|
10 |
|
11 from __future__ import unicode_literals # __IGNORE_WARNING__ |
10 |
12 |
11 from PyQt4.QtGui import QDialog |
13 from PyQt4.QtGui import QDialog |
12 from PyQt4.QtCore import pyqtSlot |
14 from PyQt4.QtCore import pyqtSlot |
13 |
15 |
14 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog |
16 from .Ui_PluginDetailsDialog import Ui_PluginDetailsDialog |
23 Constructor |
25 Constructor |
24 |
26 |
25 @param details dictionary containing the info to be displayed |
27 @param details dictionary containing the info to be displayed |
26 @param parent parent of this dialog (QWidget) |
28 @param parent parent of this dialog (QWidget) |
27 """ |
29 """ |
28 super().__init__(parent) |
30 super(PluginDetailsDialog, self).__init__(parent) |
29 self.setupUi(self) |
31 self.setupUi(self) |
30 |
32 |
31 self.__autoactivate = details["autoactivate"] |
33 self.__autoactivate = details["autoactivate"] |
32 self.__active = details["active"] |
34 self.__active = details["active"] |
33 |
35 |