src/eric7/Plugins/VcsPlugins/vcsPySvn/Ui_SvnPropSetDialog.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/SvnPropSetDialog.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_SvnPropSetDialog(object):
13 def setupUi(self, SvnPropSetDialog):
14 SvnPropSetDialog.setObjectName("SvnPropSetDialog")
15 SvnPropSetDialog.resize(494, 385)
16 SvnPropSetDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(SvnPropSetDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.gridlayout = QtWidgets.QGridLayout()
20 self.gridlayout.setObjectName("gridlayout")
21 self.propTextEdit = QtWidgets.QTextEdit(parent=SvnPropSetDialog)
22 self.propTextEdit.setTabChangesFocus(True)
23 self.propTextEdit.setAcceptRichText(False)
24 self.propTextEdit.setObjectName("propTextEdit")
25 self.gridlayout.addWidget(self.propTextEdit, 1, 1, 1, 1)
26 self.textLabel1 = QtWidgets.QLabel(parent=SvnPropSetDialog)
27 self.textLabel1.setObjectName("textLabel1")
28 self.gridlayout.addWidget(self.textLabel1, 0, 0, 1, 1)
29 self.propNameEdit = QtWidgets.QLineEdit(parent=SvnPropSetDialog)
30 self.propNameEdit.setObjectName("propNameEdit")
31 self.gridlayout.addWidget(self.propNameEdit, 0, 1, 1, 1)
32 self.recurseCheckBox = QtWidgets.QCheckBox(parent=SvnPropSetDialog)
33 self.recurseCheckBox.setObjectName("recurseCheckBox")
34 self.gridlayout.addWidget(self.recurseCheckBox, 2, 0, 1, 2)
35 self.label = QtWidgets.QLabel(parent=SvnPropSetDialog)
36 self.label.setAlignment(QtCore.Qt.AlignmentFlag.AlignLeading|QtCore.Qt.AlignmentFlag.AlignLeft|QtCore.Qt.AlignmentFlag.AlignTop)
37 self.label.setObjectName("label")
38 self.gridlayout.addWidget(self.label, 1, 0, 1, 1)
39 self.vboxlayout.addLayout(self.gridlayout)
40 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnPropSetDialog)
41 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
42 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
43 self.buttonBox.setObjectName("buttonBox")
44 self.vboxlayout.addWidget(self.buttonBox)
45 self.textLabel1.setBuddy(self.propNameEdit)
46 self.label.setBuddy(self.propTextEdit)
47
48 self.retranslateUi(SvnPropSetDialog)
49 self.buttonBox.accepted.connect(SvnPropSetDialog.accept) # type: ignore
50 self.buttonBox.rejected.connect(SvnPropSetDialog.reject) # type: ignore
51 QtCore.QMetaObject.connectSlotsByName(SvnPropSetDialog)
52 SvnPropSetDialog.setTabOrder(self.propNameEdit, self.propTextEdit)
53 SvnPropSetDialog.setTabOrder(self.propTextEdit, self.recurseCheckBox)
54
55 def retranslateUi(self, SvnPropSetDialog):
56 _translate = QtCore.QCoreApplication.translate
57 SvnPropSetDialog.setWindowTitle(_translate("SvnPropSetDialog", "Set Subversion Property"))
58 self.propTextEdit.setToolTip(_translate("SvnPropSetDialog", "Enter text of the property"))
59 self.textLabel1.setText(_translate("SvnPropSetDialog", "Property &Name:"))
60 self.propNameEdit.setToolTip(_translate("SvnPropSetDialog", "Enter the name of the property to be set"))
61 self.recurseCheckBox.setToolTip(_translate("SvnPropSetDialog", "Select to apply the property recursively"))
62 self.recurseCheckBox.setText(_translate("SvnPropSetDialog", "Apply &recursively"))
63 self.label.setText(_translate("SvnPropSetDialog", "Property &Value:"))

eric ide

mercurial