Plugins/UiExtensionPlugins/PipInterface/PipPackagesInputDialog.py

Mon, 21 May 2018 16:53:11 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Mon, 21 May 2018 16:53:11 +0200
changeset 6301
f488d2cc5841
parent 6048
82ad8ec9548c
child 6327
a1716d9210f4
permissions
-rw-r--r--

pip interface: added TODO markers to support --user

# -*- coding: utf-8 -*-

# Copyright (c) 2015 - 2018 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a dialog to enter package specifications.
"""

from __future__ import unicode_literals

from PyQt5.QtCore import pyqtSlot
from PyQt5.QtWidgets import QDialog, QDialogButtonBox

from .Ui_PipPackagesInputDialog import Ui_PipPackagesInputDialog


# TODO: add checkbox to select an installation into 'user site'
class PipPackagesInputDialog(QDialog, Ui_PipPackagesInputDialog):
    """
    Class implementing a dialog to enter package specifications.
    """
    def __init__(self, plugin, title, parent=None):
        """
        Constructor
        
        @param plugin reference to the plugin object (ToolPipPlugin)
        @param title dialog title (string)
        @param parent reference to the parent widget (QWidget)
        """
        super(PipPackagesInputDialog, self).__init__(parent)
        self.setupUi(self)
        
        self.setWindowTitle(title)
        
        self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False)
        
        self.__default = self.tr("<Default>")
        pipExecutables = sorted(plugin.getPreferences("PipExecutables"))
        self.pipComboBox.addItem(self.__default)
        self.pipComboBox.addItems(pipExecutables)
        
        msh = self.minimumSizeHint()
        self.resize(max(self.width(), msh.width()), msh.height())
    
    @pyqtSlot(str)
    def on_packagesEdit_textChanged(self, txt):
        """
        Private slot handling entering package names.
        
        @param txt name of the requirements file (string)
        """
        self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(bool(txt))
    
    def getData(self):
        """
        Public method to get the entered data.
        
        @return tuple with the pip command (string) and the list of
            package specifications (list of string)
        """
        command = self.pipComboBox.currentText()
        if command == self.__default:
            command = ""
        packages = [p.strip() for p in self.packagesEdit.text().split()]
        
        return command, packages

eric ide

mercurial