113 Private slot to show details about a plugin. |
113 Private slot to show details about a plugin. |
114 |
114 |
115 @param item reference to the selected item (QTreeWidgetItem) |
115 @param item reference to the selected item (QTreeWidgetItem) |
116 @param column column number (integer) |
116 @param column column number (integer) |
117 """ |
117 """ |
|
118 from .PluginDetailsDialog import PluginDetailsDialog |
|
119 |
118 moduleName = item.text(0) |
120 moduleName = item.text(0) |
119 details = self.pm.getPluginDetails(moduleName) |
121 details = self.pm.getPluginDetails(moduleName) |
120 if details is None: |
122 if details is None: |
121 pass |
123 pass |
122 else: |
124 else: |
123 from .PluginDetailsDialog import PluginDetailsDialog |
|
124 |
|
125 dlg = PluginDetailsDialog(details, self) |
125 dlg = PluginDetailsDialog(details, self) |
126 dlg.show() |
126 dlg.show() |
127 |
127 |
128 def __showDetails(self): |
128 def __showDetails(self): |
129 """ |
129 """ |