Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py

changeset 0
de9c2efb9d02
child 12
1d8dd9706f46
diff -r 000000000000 -r de9c2efb9d02 Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py	Mon Dec 28 16:03:33 2009 +0000
@@ -0,0 +1,79 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2003 - 2009 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter the data for a copy operation.
+"""
+
+import os.path
+
+from PyQt4.QtCore import *
+from PyQt4.QtGui import *
+
+from E4Gui.E4Completers import E4FileCompleter, E4DirCompleter
+
+from Ui_SvnCopyDialog import Ui_SvnCopyDialog
+
+class SvnCopyDialog(QDialog, Ui_SvnCopyDialog):
+    """
+    Class implementing a dialog to enter the data for a copy operation.
+    """
+    def __init__(self, source, parent = None, move = False, force = False):
+        """
+        Constructor
+        
+        @param source name of the source file/directory (string)
+        @param parent parent widget (QWidget)
+        @param move flag indicating a move operation
+        @param force flag indicating a forced operation (boolean)
+        """
+        QDialog.__init__(self, parent)
+        self.setupUi(self)
+       
+        self.source = source
+        if os.path.isdir(self.source):
+            self.targetCompleter = E4DirCompleter(self.targetEdit)
+        else:
+            self.targetCompleter = E4FileCompleter(self.targetEdit)
+        
+        if move:
+            self.setWindowTitle(self.trUtf8('Subversion Move'))
+        else:
+            self.forceCheckBox.setEnabled(False)
+        self.forceCheckBox.setChecked(force)
+        
+        self.sourceEdit.setText(source)
+        
+    def getData(self):
+        """
+        Public method to retrieve the copy data.
+        
+        @return the target name (string) and a flag indicating
+            the operation should be enforced (boolean)
+        """
+        return self.targetEdit.text(), self.forceCheckBox.isChecked()
+        
+    @pyqtSlot()
+    def on_dirButton_clicked(self):
+        """
+        Private slot to handle the button press for selecting the target via a 
+        selection dialog.
+        """
+        if os.path.isdir(self.source):
+            target = QFileDialog.getExistingDirectory(\
+                None,
+                self.trUtf8("Select target"),
+                self.targetEdit.text(),
+                QFileDialog.Options(QFileDialog.ShowDirsOnly))
+        else:
+            target = QFileDialog.getSaveFileName(\
+                None,
+                self.trUtf8("Select target"),
+                self.targetEdit.text(),
+                "",
+                QFileDialog.Options(QFileDialog.DontConfirmOverwrite))
+        
+        if target:
+            self.targetEdit.setText(target)

eric ide

mercurial