|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsMercurial/ShelveExtension/HgShelvesSelectionDialog.ui' |
|
2 # |
|
3 # Created by: PyQt6 UI code generator 6.7.0 |
|
4 # |
|
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
|
6 # run again. Do not edit this file unless you know what you are doing. |
|
7 |
|
8 |
|
9 from PyQt6 import QtCore, QtGui, QtWidgets |
|
10 |
|
11 |
|
12 class Ui_HgShelvesSelectionDialog(object): |
|
13 def setupUi(self, HgShelvesSelectionDialog): |
|
14 HgShelvesSelectionDialog.setObjectName("HgShelvesSelectionDialog") |
|
15 HgShelvesSelectionDialog.resize(400, 300) |
|
16 HgShelvesSelectionDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(HgShelvesSelectionDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.message = QtWidgets.QLabel(parent=HgShelvesSelectionDialog) |
|
20 self.message.setText("") |
|
21 self.message.setObjectName("message") |
|
22 self.verticalLayout.addWidget(self.message) |
|
23 self.shelvesList = QtWidgets.QListWidget(parent=HgShelvesSelectionDialog) |
|
24 self.shelvesList.setAlternatingRowColors(True) |
|
25 self.shelvesList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection) |
|
26 self.shelvesList.setObjectName("shelvesList") |
|
27 self.verticalLayout.addWidget(self.shelvesList) |
|
28 self.buttonBox = QtWidgets.QDialogButtonBox(parent=HgShelvesSelectionDialog) |
|
29 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
30 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
31 self.buttonBox.setObjectName("buttonBox") |
|
32 self.verticalLayout.addWidget(self.buttonBox) |
|
33 |
|
34 self.retranslateUi(HgShelvesSelectionDialog) |
|
35 self.buttonBox.accepted.connect(HgShelvesSelectionDialog.accept) # type: ignore |
|
36 self.buttonBox.rejected.connect(HgShelvesSelectionDialog.reject) # type: ignore |
|
37 QtCore.QMetaObject.connectSlotsByName(HgShelvesSelectionDialog) |
|
38 HgShelvesSelectionDialog.setTabOrder(self.shelvesList, self.buttonBox) |
|
39 |
|
40 def retranslateUi(self, HgShelvesSelectionDialog): |
|
41 _translate = QtCore.QCoreApplication.translate |
|
42 HgShelvesSelectionDialog.setWindowTitle(_translate("HgShelvesSelectionDialog", "Mercurial Shelve Selection")) |
|
43 self.shelvesList.setSortingEnabled(True) |