src/eric7/Documentation/Source/eric7.PipInterface.PipPackagesWidget.html

branch
eric7
changeset 11128
04a9579c9c54
parent 11093
e8932a99beb4
equal deleted inserted replaced
11127:1bbaf3add61a 11128:04a9579c9c54
226 <tr> 226 <tr>
227 <td><a href="#PipPackagesWidget.__repairPip">__repairPip</a></td> 227 <td><a href="#PipPackagesWidget.__repairPip">__repairPip</a></td>
228 <td>Private slot to repair the pip installation of the selected environment.</td> 228 <td>Private slot to repair the pip installation of the selected environment.</td>
229 </tr> 229 </tr>
230 <tr> 230 <tr>
231 <td><a href="#PipPackagesWidget.__resetPackageSearchHighlight">__resetPackageSearchHighlight</a></td>
232 <td>Private method to reset the package search marker of an individual item.</td>
233 </tr>
234 <tr>
235 <td><a href="#PipPackagesWidget.__resetPackageSearchHighlights">__resetPackageSearchHighlights</a></td>
236 <td>Private method to reset the package search markers.</td>
237 </tr>
238 <tr>
231 <td><a href="#PipPackagesWidget.__selectedUpdateableItems">__selectedUpdateableItems</a></td> 239 <td><a href="#PipPackagesWidget.__selectedUpdateableItems">__selectedUpdateableItems</a></td>
232 <td>Private method to get a list of selected items that can be updated.</td> 240 <td>Private method to get a list of selected items that can be updated.</td>
233 </tr> 241 </tr>
234 <tr> 242 <tr>
243 <td><a href="#PipPackagesWidget.__setPackageSearchHighlights">__setPackageSearchHighlights</a></td>
244 <td>Private method to highlight the given package items.</td>
245 </tr>
246 <tr>
235 <td><a href="#PipPackagesWidget.__showCacheInfo">__showCacheInfo</a></td> 247 <td><a href="#PipPackagesWidget.__showCacheInfo">__showCacheInfo</a></td>
236 <td>Private slot to show information about the cache.</td> 248 <td>Private slot to show information about the cache.</td>
237 </tr> 249 </tr>
238 <tr> 250 <tr>
239 <td><a href="#PipPackagesWidget.__showCacheList">__showCacheList</a></td> 251 <td><a href="#PipPackagesWidget.__showCacheList">__showCacheList</a></td>
340 <td>Private slot handling the switching of the local mode.</td> 352 <td>Private slot handling the switching of the local mode.</td>
341 </tr> 353 </tr>
342 <tr> 354 <tr>
343 <td><a href="#PipPackagesWidget.on_notRequiredCheckBox_clicked">on_notRequiredCheckBox_clicked</a></td> 355 <td><a href="#PipPackagesWidget.on_notRequiredCheckBox_clicked">on_notRequiredCheckBox_clicked</a></td>
344 <td>Private slot handling the switching of the 'not required' mode.</td> 356 <td>Private slot handling the switching of the 'not required' mode.</td>
357 </tr>
358 <tr>
359 <td><a href="#PipPackagesWidget.on_packageSearchEdit_textChanged">on_packageSearchEdit_textChanged</a></td>
360 <td>Private slot to search packages in the dependencies tree.</td>
345 </tr> 361 </tr>
346 <tr> 362 <tr>
347 <td><a href="#PipPackagesWidget.on_packagesList_itemActivated">on_packagesList_itemActivated</a></td> 363 <td><a href="#PipPackagesWidget.on_packagesList_itemActivated">on_packagesList_itemActivated</a></td>
348 <td>Private slot reacting on a package item being activated.</td> 364 <td>Private slot reacting on a package item being activated.</td>
349 </tr> 365 </tr>
738 <p> 754 <p>
739 Private slot to repair the pip installation of the selected 755 Private slot to repair the pip installation of the selected
740 environment. 756 environment.
741 </p> 757 </p>
742 758
759 <a NAME="PipPackagesWidget.__resetPackageSearchHighlight" ID="PipPackagesWidget.__resetPackageSearchHighlight"></a>
760 <h4>PipPackagesWidget.__resetPackageSearchHighlight</h4>
761 <b>__resetPackageSearchHighlight</b>(<i>packageItem</i>)
762 <p>
763 Private method to reset the package search marker of an individual item.
764 </p>
765
766 <dl>
767
768 <dt><i>packageItem</i> (QTreeWidgetItem)</dt>
769 <dd>
770 reference to the package item
771 </dd>
772 </dl>
773 <a NAME="PipPackagesWidget.__resetPackageSearchHighlights" ID="PipPackagesWidget.__resetPackageSearchHighlights"></a>
774 <h4>PipPackagesWidget.__resetPackageSearchHighlights</h4>
775 <b>__resetPackageSearchHighlights</b>(<i>parent=None</i>)
776 <p>
777 Private method to reset the package search markers.
778 </p>
779
780 <dl>
781
782 <dt><i>parent</i> (QTreeWidgetItem (optional))</dt>
783 <dd>
784 reference to the parent item (defaults to None)
785 </dd>
786 </dl>
743 <a NAME="PipPackagesWidget.__selectedUpdateableItems" ID="PipPackagesWidget.__selectedUpdateableItems"></a> 787 <a NAME="PipPackagesWidget.__selectedUpdateableItems" ID="PipPackagesWidget.__selectedUpdateableItems"></a>
744 <h4>PipPackagesWidget.__selectedUpdateableItems</h4> 788 <h4>PipPackagesWidget.__selectedUpdateableItems</h4>
745 <b>__selectedUpdateableItems</b>(<i></i>) 789 <b>__selectedUpdateableItems</b>(<i></i>)
746 <p> 790 <p>
747 Private method to get a list of selected items that can be updated. 791 Private method to get a list of selected items that can be updated.
757 <dt>Return Type:</dt> 801 <dt>Return Type:</dt>
758 <dd> 802 <dd>
759 list of QTreeWidgetItem 803 list of QTreeWidgetItem
760 </dd> 804 </dd>
761 </dl> 805 </dl>
806 <a NAME="PipPackagesWidget.__setPackageSearchHighlights" ID="PipPackagesWidget.__setPackageSearchHighlights"></a>
807 <h4>PipPackagesWidget.__setPackageSearchHighlights</h4>
808 <b>__setPackageSearchHighlights</b>(<i>packageItems</i>)
809 <p>
810 Private method to highlight the given package items.
811 </p>
812
813 <dl>
814
815 <dt><i>packageItems</i> (list of QTreeWidgetItem)</dt>
816 <dd>
817 list of package dependency items to be highlighted
818 </dd>
819 </dl>
762 <a NAME="PipPackagesWidget.__showCacheInfo" ID="PipPackagesWidget.__showCacheInfo"></a> 820 <a NAME="PipPackagesWidget.__showCacheInfo" ID="PipPackagesWidget.__showCacheInfo"></a>
763 <h4>PipPackagesWidget.__showCacheInfo</h4> 821 <h4>PipPackagesWidget.__showCacheInfo</h4>
764 <b>__showCacheInfo</b>(<i></i>) 822 <b>__showCacheInfo</b>(<i></i>)
765 <p> 823 <p>
766 Private slot to show information about the cache. 824 Private slot to show information about the cache.
1100 <b>on_notRequiredCheckBox_clicked</b>(<i></i>) 1158 <b>on_notRequiredCheckBox_clicked</b>(<i></i>)
1101 <p> 1159 <p>
1102 Private slot handling the switching of the 'not required' mode. 1160 Private slot handling the switching of the 'not required' mode.
1103 </p> 1161 </p>
1104 1162
1163 <a NAME="PipPackagesWidget.on_packageSearchEdit_textChanged" ID="PipPackagesWidget.on_packageSearchEdit_textChanged"></a>
1164 <h4>PipPackagesWidget.on_packageSearchEdit_textChanged</h4>
1165 <b>on_packageSearchEdit_textChanged</b>(<i>package</i>)
1166 <p>
1167 Private slot to search packages in the dependencies tree.
1168 </p>
1169
1170 <dl>
1171
1172 <dt><i>package</i> (str)</dt>
1173 <dd>
1174 package text to search for
1175 </dd>
1176 </dl>
1105 <a NAME="PipPackagesWidget.on_packagesList_itemActivated" ID="PipPackagesWidget.on_packagesList_itemActivated"></a> 1177 <a NAME="PipPackagesWidget.on_packagesList_itemActivated" ID="PipPackagesWidget.on_packagesList_itemActivated"></a>
1106 <h4>PipPackagesWidget.on_packagesList_itemActivated</h4> 1178 <h4>PipPackagesWidget.on_packagesList_itemActivated</h4>
1107 <b>on_packagesList_itemActivated</b>(<i>item, column</i>) 1179 <b>on_packagesList_itemActivated</b>(<i>item, column</i>)
1108 <p> 1180 <p>
1109 Private slot reacting on a package item being activated. 1181 Private slot reacting on a package item being activated.

eric ide

mercurial