eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py

changeset 6942
2602857055c5
parent 6645
ad476851d7e0
child 7229
53054eb5b15a
diff -r f99d60d6b59b -r 2602857055c5 eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnTagDialog.py	Sun Apr 14 15:09:21 2019 +0200
@@ -0,0 +1,75 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2003 - 2019 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter the data for a tagging operation.
+"""
+
+from __future__ import unicode_literals
+
+from PyQt5.QtCore import pyqtSlot
+from PyQt5.QtWidgets import QDialog, QDialogButtonBox
+
+from .Ui_SvnTagDialog import Ui_SvnTagDialog
+
+
+class SvnTagDialog(QDialog, Ui_SvnTagDialog):
+    """
+    Class implementing a dialog to enter the data for a tagging operation.
+    """
+    def __init__(self, taglist, reposURL, standardLayout, parent=None):
+        """
+        Constructor
+        
+        @param taglist list of previously entered tags (list of strings)
+        @param reposURL repository path (string) or None
+        @param standardLayout flag indicating the layout of the
+            repository (boolean)
+        @param parent parent widget (QWidget)
+        """
+        super(SvnTagDialog, self).__init__(parent)
+        self.setupUi(self)
+       
+        self.okButton = self.buttonBox.button(QDialogButtonBox.Ok)
+        self.okButton.setEnabled(False)
+        
+        self.tagCombo.clear()
+        self.tagCombo.addItems(sorted(taglist, reverse=True))
+        
+        if reposURL is not None and reposURL != "":
+            self.tagCombo.setEditText(reposURL)
+        
+        if not standardLayout:
+            self.TagActionGroup.setEnabled(False)
+        
+        msh = self.minimumSizeHint()
+        self.resize(max(self.width(), msh.width()), msh.height())
+        
+    @pyqtSlot(str)
+    def on_tagCombo_editTextChanged(self, text):
+        """
+        Private method used to enable/disable the OK-button.
+        
+        @param text tag name entered in the combo (string)
+        """
+        self.okButton.setDisabled(text == "")
+    
+    def getParameters(self):
+        """
+        Public method to retrieve the tag data.
+        
+        @return tuple of string and int (tag, tag operation)
+        """
+        tag = self.tagCombo.currentText()
+        tagOp = 0
+        if self.createRegularButton.isChecked():
+            tagOp = 1
+        elif self.createBranchButton.isChecked():
+            tagOp = 2
+        elif self.deleteRegularButton.isChecked():
+            tagOp = 4
+        elif self.deleteBranchButton.isChecked():
+            tagOp = 8
+        return (tag, tagOp)

eric ide

mercurial