src/eric7/Plugins/VcsPlugins/vcsGit/Ui_GitListDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsGit/GitListDialog.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_GitListDialog(object):
13 def setupUi(self, GitListDialog):
14 GitListDialog.setObjectName("GitListDialog")
15 GitListDialog.resize(400, 300)
16 GitListDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(GitListDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=GitListDialog)
20 self.label.setObjectName("label")
21 self.verticalLayout.addWidget(self.label)
22 self.selectionList = QtWidgets.QListWidget(parent=GitListDialog)
23 self.selectionList.setAlternatingRowColors(True)
24 self.selectionList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
25 self.selectionList.setObjectName("selectionList")
26 self.verticalLayout.addWidget(self.selectionList)
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitListDialog)
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
30 self.buttonBox.setObjectName("buttonBox")
31 self.verticalLayout.addWidget(self.buttonBox)
32
33 self.retranslateUi(GitListDialog)
34 self.buttonBox.accepted.connect(GitListDialog.accept) # type: ignore
35 self.buttonBox.rejected.connect(GitListDialog.reject) # type: ignore
36 QtCore.QMetaObject.connectSlotsByName(GitListDialog)
37
38 def retranslateUi(self, GitListDialog):
39 _translate = QtCore.QCoreApplication.translate
40 GitListDialog.setWindowTitle(_translate("GitListDialog", "Git Select"))
41 self.label.setText(_translate("GitListDialog", "Select from the list:"))

eric ide

mercurial