src/eric7/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py

branch
eric7
changeset 9209
b99e7fd55fd3
parent 8881
54e42bc2437a
child 9221
bf71ee032bb4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitCherryPickDialog.py	Thu Jul 07 11:23:56 2022 +0200
@@ -0,0 +1,56 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2014 - 2022 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter cherry-pick data.
+"""
+
+from PyQt6.QtCore import pyqtSlot
+from PyQt6.QtWidgets import QDialog, QDialogButtonBox
+
+from .Ui_GitCherryPickDialog import Ui_GitCherryPickDialog
+
+
+class GitCherryPickDialog(QDialog, Ui_GitCherryPickDialog):
+    """
+    Class implementing a dialog to enter cherry-pick data.
+    """
+    def __init__(self, commits=None, parent=None):
+        """
+        Constructor
+        
+        @param commits list of commits to show in the commits pane (list of
+            strings)
+        @param parent reference to the parent widget (QWidget)
+        """
+        super().__init__(parent)
+        self.setupUi(self)
+        
+        if commits:
+            self.commitsEdit.setPlainText("\n".join(commits))
+       
+        self.on_commitsEdit_textChanged()
+    
+    @pyqtSlot()
+    def on_commitsEdit_textChanged(self):
+        """
+        Private slot to react upon changes of commits.
+        """
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(
+            self.commitsEdit.toPlainText() != "")
+    
+    def getData(self):
+        """
+        Public method to retrieve the entered data.
+        
+        @return tuple with list of commits, a flag indicating to append
+            cherry-pick info to the commit message, a flag indicating to append
+            a signed-off-by line to the commit message and a flag indicating to
+            not commit the action (list of strings, boolean, boolean, boolean)
+        """
+        return (self.commitsEdit.toPlainText().strip().splitlines(),
+                self.appendCheckBox.isChecked(),
+                self.signoffCheckBox.isChecked(),
+                self.nocommitCheckBox.isChecked())

eric ide

mercurial