eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py

branch
eric7
changeset 8312
800c432b34c8
parent 8218
7c09585bd960
child 8318
962bce857696
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/Plugins/VcsPlugins/vcsMercurial/LargefilesExtension/LfConvertDataDialog.py	Sat May 15 18:45:04 2021 +0200
@@ -0,0 +1,83 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2014 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to enter the data for the repo conversion.
+"""
+
+import os
+
+from PyQt5.QtCore import pyqtSlot
+from PyQt5.QtWidgets import QDialog, QDialogButtonBox
+
+from E5Gui.E5PathPicker import E5PathPickerModes
+
+from .Ui_LfConvertDataDialog import Ui_LfConvertDataDialog
+
+from . import getDefaults
+
+import Utilities
+
+
+class LfConvertDataDialog(QDialog, Ui_LfConvertDataDialog):
+    """
+    Class implementing a dialog to enter the data for the repo conversion.
+    """
+    def __init__(self, currentPath, mode, parent=None):
+        """
+        Constructor
+        
+        @param currentPath directory name of the current project (string)
+        @param mode dialog mode (string, one of 'largefiles' or 'normal')
+        @param parent reference to the parent widget (QWidget)
+        """
+        super().__init__(parent)
+        self.setupUi(self)
+        
+        self.newProjectPicker.setMode(E5PathPickerModes.DirectoryMode)
+        
+        self.__defaults = getDefaults()
+        self.__currentPath = Utilities.toNativeSeparators(currentPath)
+        
+        self.currentProjectLabel.setPath(currentPath)
+        self.newProjectPicker.setText(os.path.dirname(currentPath))
+        
+        self.lfFileSizeSpinBox.setValue(self.__defaults["minsize"])
+        self.lfFilePatternsEdit.setText(" ".join(self.__defaults["pattern"]))
+        
+        if mode == 'normal':
+            self.lfFileSizeSpinBox.setEnabled(False)
+            self.lfFilePatternsEdit.setEnabled(False)
+        
+        msh = self.minimumSizeHint()
+        self.resize(max(self.width(), msh.width()), msh.height())
+    
+    @pyqtSlot(str)
+    def on_newProjectPicker_textChanged(self, txt):
+        """
+        Private slot to handle editing of the new project directory.
+        
+        @param txt new project directory name (string)
+        """
+        self.buttonBox.button(QDialogButtonBox.StandardButton.Ok).setEnabled(
+            txt and Utilities.toNativeSeparators(txt) != os.path.dirname(
+                self.__currentPath))
+    
+    def getData(self):
+        """
+        Public method to retrieve the entered data.
+        
+        @return tuple containing the new project directory name (string),
+            minimum file size (integer) and file patterns (list of string)
+        """
+        patterns = self.lfFilePatternsEdit.text().split()
+        if set(patterns) == set(self.__defaults["pattern"]):
+            patterns = []
+        
+        return (
+            self.newProjectPicker.text(),
+            self.lfFileSizeSpinBox.value(),
+            patterns,
+        )

eric ide

mercurial