eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py

branch
eric7
changeset 8312
800c432b34c8
parent 8218
7c09585bd960
child 8318
962bce857696
diff -r 4e8b98454baa -r 800c432b34c8 eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eric7/Plugins/VcsPlugins/vcsMercurial/QueuesExtension/HgQueuesGuardsSelectionDialog.py	Sat May 15 18:45:04 2021 +0200
@@ -0,0 +1,59 @@
+# -*- coding: utf-8 -*-
+
+# Copyright (c) 2011 - 2021 Detlev Offenbach <detlev@die-offenbachs.de>
+#
+
+"""
+Module implementing a dialog to select a list of guards.
+"""
+
+from PyQt5.QtWidgets import (
+    QDialog, QDialogButtonBox, QListWidgetItem, QAbstractItemView
+)
+
+from .Ui_HgQueuesGuardsSelectionDialog import Ui_HgQueuesGuardsSelectionDialog
+
+
+class HgQueuesGuardsSelectionDialog(QDialog, Ui_HgQueuesGuardsSelectionDialog):
+    """
+    Class implementing a dialog to select a list of guards.
+    """
+    def __init__(self, guards, activeGuards=None, listOnly=False, parent=None):
+        """
+        Constructor
+        
+        @param guards list of guards to select from (list of strings)
+        @param activeGuards list of active guards (list of strings)
+        @param listOnly flag indicating to only list the guards (boolean)
+        @param parent reference to the parent widget (QWidget)
+        """
+        super().__init__(parent)
+        self.setupUi(self)
+        
+        for guard in guards:
+            itm = QListWidgetItem(guard, self.guardsList)
+            if activeGuards is not None and guard in activeGuards:
+                font = itm.font()
+                font.setBold(True)
+                itm.setFont(font)
+        self.guardsList.sortItems()
+        
+        if listOnly:
+            self.buttonBox.button(
+                QDialogButtonBox.StandardButton.Cancel).hide()
+            self.guardsList.setSelectionMode(
+                QAbstractItemView.SelectionMode.NoSelection)
+            self.setWindowTitle(self.tr("Active Guards"))
+    
+    def getData(self):
+        """
+        Public method to retrieve the data.
+        
+        @return list of selected guards (list of strings)
+        """
+        guardsList = []
+        
+        for itm in self.guardsList.selectedItems():
+            guardsList.append(itm.text())
+        
+        return guardsList

eric ide

mercurial