src/eric7/Plugins/VcsPlugins/vcsPySvn/Ui_SvnChangeListsDialog.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/vcsPySvn/SvnChangeListsDialog.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_SvnChangeListsDialog(object):
13 def setupUi(self, SvnChangeListsDialog):
14 SvnChangeListsDialog.setObjectName("SvnChangeListsDialog")
15 SvnChangeListsDialog.resize(519, 494)
16 SvnChangeListsDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(SvnChangeListsDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=SvnChangeListsDialog)
20 self.label.setObjectName("label")
21 self.verticalLayout.addWidget(self.label)
22 self.changeLists = QtWidgets.QListWidget(parent=SvnChangeListsDialog)
23 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
24 sizePolicy.setHorizontalStretch(0)
25 sizePolicy.setVerticalStretch(1)
26 sizePolicy.setHeightForWidth(self.changeLists.sizePolicy().hasHeightForWidth())
27 self.changeLists.setSizePolicy(sizePolicy)
28 self.changeLists.setAlternatingRowColors(True)
29 self.changeLists.setObjectName("changeLists")
30 self.verticalLayout.addWidget(self.changeLists)
31 self.filesLabel = QtWidgets.QLabel(parent=SvnChangeListsDialog)
32 self.filesLabel.setText("")
33 self.filesLabel.setWordWrap(True)
34 self.filesLabel.setObjectName("filesLabel")
35 self.verticalLayout.addWidget(self.filesLabel)
36 self.filesList = QtWidgets.QListWidget(parent=SvnChangeListsDialog)
37 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
38 sizePolicy.setHorizontalStretch(0)
39 sizePolicy.setVerticalStretch(2)
40 sizePolicy.setHeightForWidth(self.filesList.sizePolicy().hasHeightForWidth())
41 self.filesList.setSizePolicy(sizePolicy)
42 self.filesList.setAlternatingRowColors(True)
43 self.filesList.setObjectName("filesList")
44 self.verticalLayout.addWidget(self.filesList)
45 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnChangeListsDialog)
46 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
47 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close)
48 self.buttonBox.setObjectName("buttonBox")
49 self.verticalLayout.addWidget(self.buttonBox)
50
51 self.retranslateUi(SvnChangeListsDialog)
52 self.buttonBox.accepted.connect(SvnChangeListsDialog.accept) # type: ignore
53 self.buttonBox.rejected.connect(SvnChangeListsDialog.reject) # type: ignore
54 QtCore.QMetaObject.connectSlotsByName(SvnChangeListsDialog)
55 SvnChangeListsDialog.setTabOrder(self.changeLists, self.filesList)
56 SvnChangeListsDialog.setTabOrder(self.filesList, self.buttonBox)
57
58 def retranslateUi(self, SvnChangeListsDialog):
59 _translate = QtCore.QCoreApplication.translate
60 SvnChangeListsDialog.setWindowTitle(_translate("SvnChangeListsDialog", "Subversion Change Lists"))
61 self.label.setText(_translate("SvnChangeListsDialog", "Change Lists:"))
62 self.changeLists.setWhatsThis(_translate("SvnChangeListsDialog", "<b>Change Lists</b>\n"
63 "<p>Select a change list here to see the associated files in the list below.</p>"))
64 self.filesList.setWhatsThis(_translate("SvnChangeListsDialog", "<b>Files</b>\n"
65 "<p>This shows a list of files associated with the change list selected above.</p>"))

eric ide

mercurial