diff -r 4a6257252525 -r dc20bde4af90 PipInterface/PipPackagesWidget.py --- a/PipInterface/PipPackagesWidget.py Sat Feb 23 15:02:24 2019 +0100 +++ b/PipInterface/PipPackagesWidget.py Sat Feb 23 15:31:47 2019 +0100 @@ -29,7 +29,6 @@ from .Pip import Pip -# TODO: use icons for action buttons class PipPackagesWidget(QWidget, Ui_PipPackagesWidget): """ Class implementing the pip packages management widget. @@ -68,7 +67,16 @@ self.pipMenuButton.setAutoRaise(True) self.pipMenuButton.setShowMenuInside(True) + self.refreshButton.setIcon(UI.PixmapCache.getIcon("reload")) + self.upgradeButton.setIcon(UI.PixmapCache.getIcon("1uparrow")) + self.upgradeAllButton.setIcon(UI.PixmapCache.getIcon("2uparrow")) + self.uninstallButton.setIcon(UI.PixmapCache.getIcon("minus")) + self.showPackageDetailsButton.setIcon(UI.PixmapCache.getIcon("info")) self.searchToggleButton.setIcon(UI.PixmapCache.getIcon("find")) + self.searchButton.setIcon(UI.PixmapCache.getIcon("findNext")) + self.installButton.setIcon(UI.PixmapCache.getIcon("plus")) + self.installUserSiteButton.setIcon(UI.PixmapCache.getIcon("addUser")) + self.showDetailsButton.setIcon(UI.PixmapCache.getIcon("info")) self.__pip = Pip(self) self.__client = E5XmlRpcClient(self.__pip.getIndexUrlXml(), self)