8 """ |
8 """ |
9 |
9 |
10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
12 |
12 |
13 from .Ui_E5ComboSelectionDialog import Ui_E5ComboSelectionDialog |
13 from .Ui_EricComboSelectionDialog import Ui_EricComboSelectionDialog |
14 |
14 |
15 |
15 |
16 class EricComboSelectionDialog(QDialog, Ui_E5ComboSelectionDialog): |
16 class EricComboSelectionDialog(QDialog, Ui_EricComboSelectionDialog): |
17 """ |
17 """ |
18 Class implementing a dialog to select one entry from a list of strings. |
18 Class implementing a dialog to select one entry from a list of strings. |
19 """ |
19 """ |
20 |
20 |
21 def __init__(self, entries, title="", message="", parent=None): |
21 def __init__(self, entries, title="", message="", parent=None): |