src/eric7/Plugins/VcsPlugins/vcsSubversion/Ui_SvnDialog.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/vcsSubversion/SvnDialog.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_SvnDialog(object):
13 def setupUi(self, SvnDialog):
14 SvnDialog.setObjectName("SvnDialog")
15 SvnDialog.resize(593, 499)
16 SvnDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(SvnDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.outputGroup = QtWidgets.QGroupBox(parent=SvnDialog)
20 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding)
21 sizePolicy.setHorizontalStretch(0)
22 sizePolicy.setVerticalStretch(2)
23 sizePolicy.setHeightForWidth(self.outputGroup.sizePolicy().hasHeightForWidth())
24 self.outputGroup.setSizePolicy(sizePolicy)
25 self.outputGroup.setObjectName("outputGroup")
26 self.vboxlayout1 = QtWidgets.QVBoxLayout(self.outputGroup)
27 self.vboxlayout1.setObjectName("vboxlayout1")
28 self.resultbox = QtWidgets.QTextEdit(parent=self.outputGroup)
29 self.resultbox.setReadOnly(True)
30 self.resultbox.setAcceptRichText(False)
31 self.resultbox.setObjectName("resultbox")
32 self.vboxlayout1.addWidget(self.resultbox)
33 self.vboxlayout.addWidget(self.outputGroup)
34 self.errorGroup = QtWidgets.QGroupBox(parent=SvnDialog)
35 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding)
36 sizePolicy.setHorizontalStretch(0)
37 sizePolicy.setVerticalStretch(1)
38 sizePolicy.setHeightForWidth(self.errorGroup.sizePolicy().hasHeightForWidth())
39 self.errorGroup.setSizePolicy(sizePolicy)
40 self.errorGroup.setObjectName("errorGroup")
41 self.vboxlayout2 = QtWidgets.QVBoxLayout(self.errorGroup)
42 self.vboxlayout2.setObjectName("vboxlayout2")
43 self.errors = QtWidgets.QTextEdit(parent=self.errorGroup)
44 self.errors.setReadOnly(True)
45 self.errors.setAcceptRichText(False)
46 self.errors.setObjectName("errors")
47 self.vboxlayout2.addWidget(self.errors)
48 self.vboxlayout.addWidget(self.errorGroup)
49 self.inputGroup = QtWidgets.QGroupBox(parent=SvnDialog)
50 self.inputGroup.setObjectName("inputGroup")
51 self.gridlayout = QtWidgets.QGridLayout(self.inputGroup)
52 self.gridlayout.setObjectName("gridlayout")
53 spacerItem = QtWidgets.QSpacerItem(327, 29, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
54 self.gridlayout.addItem(spacerItem, 1, 1, 1, 1)
55 self.sendButton = QtWidgets.QPushButton(parent=self.inputGroup)
56 self.sendButton.setObjectName("sendButton")
57 self.gridlayout.addWidget(self.sendButton, 1, 2, 1, 1)
58 self.input = QtWidgets.QLineEdit(parent=self.inputGroup)
59 self.input.setObjectName("input")
60 self.gridlayout.addWidget(self.input, 0, 0, 1, 3)
61 self.passwordCheckBox = QtWidgets.QCheckBox(parent=self.inputGroup)
62 self.passwordCheckBox.setObjectName("passwordCheckBox")
63 self.gridlayout.addWidget(self.passwordCheckBox, 1, 0, 1, 1)
64 self.vboxlayout.addWidget(self.inputGroup)
65 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnDialog)
66 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
67 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close)
68 self.buttonBox.setObjectName("buttonBox")
69 self.vboxlayout.addWidget(self.buttonBox)
70
71 self.retranslateUi(SvnDialog)
72 QtCore.QMetaObject.connectSlotsByName(SvnDialog)
73 SvnDialog.setTabOrder(self.resultbox, self.errors)
74 SvnDialog.setTabOrder(self.errors, self.input)
75 SvnDialog.setTabOrder(self.input, self.passwordCheckBox)
76 SvnDialog.setTabOrder(self.passwordCheckBox, self.sendButton)
77 SvnDialog.setTabOrder(self.sendButton, self.buttonBox)
78
79 def retranslateUi(self, SvnDialog):
80 _translate = QtCore.QCoreApplication.translate
81 SvnDialog.setWindowTitle(_translate("SvnDialog", "Subversion"))
82 self.outputGroup.setTitle(_translate("SvnDialog", "Output"))
83 self.errorGroup.setTitle(_translate("SvnDialog", "Errors"))
84 self.inputGroup.setTitle(_translate("SvnDialog", "Input"))
85 self.sendButton.setToolTip(_translate("SvnDialog", "Press to send the input to the subversion process"))
86 self.sendButton.setText(_translate("SvnDialog", "&Send"))
87 self.sendButton.setShortcut(_translate("SvnDialog", "Alt+S"))
88 self.input.setToolTip(_translate("SvnDialog", "Enter data to be sent to the subversion process"))
89 self.passwordCheckBox.setToolTip(_translate("SvnDialog", "Select to switch the input field to password mode"))
90 self.passwordCheckBox.setText(_translate("SvnDialog", "&Password Mode"))
91 self.passwordCheckBox.setShortcut(_translate("SvnDialog", "Alt+P"))

eric ide

mercurial