src/eric7/Plugins/VcsPlugins/vcsSubversion/Ui_SvnCommandDialog.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/SvnCommandDialog.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_SvnCommandDialog(object):
13 def setupUi(self, SvnCommandDialog):
14 SvnCommandDialog.setObjectName("SvnCommandDialog")
15 SvnCommandDialog.resize(628, 129)
16 self.gridLayout = QtWidgets.QGridLayout(SvnCommandDialog)
17 self.gridLayout.setObjectName("gridLayout")
18 self.textLabel1 = QtWidgets.QLabel(parent=SvnCommandDialog)
19 self.textLabel1.setToolTip("")
20 self.textLabel1.setObjectName("textLabel1")
21 self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 1)
22 self.commandCombo = QtWidgets.QComboBox(parent=SvnCommandDialog)
23 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
24 sizePolicy.setHorizontalStretch(0)
25 sizePolicy.setVerticalStretch(0)
26 sizePolicy.setHeightForWidth(self.commandCombo.sizePolicy().hasHeightForWidth())
27 self.commandCombo.setSizePolicy(sizePolicy)
28 self.commandCombo.setEditable(True)
29 self.commandCombo.setInsertPolicy(QtWidgets.QComboBox.InsertPolicy.InsertAtTop)
30 self.commandCombo.setDuplicatesEnabled(False)
31 self.commandCombo.setObjectName("commandCombo")
32 self.gridLayout.addWidget(self.commandCombo, 0, 1, 1, 1)
33 self.textLabel2 = QtWidgets.QLabel(parent=SvnCommandDialog)
34 self.textLabel2.setObjectName("textLabel2")
35 self.gridLayout.addWidget(self.textLabel2, 1, 0, 1, 1)
36 self.workdirPicker = EricComboPathPicker(parent=SvnCommandDialog)
37 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
38 sizePolicy.setHorizontalStretch(0)
39 sizePolicy.setVerticalStretch(0)
40 sizePolicy.setHeightForWidth(self.workdirPicker.sizePolicy().hasHeightForWidth())
41 self.workdirPicker.setSizePolicy(sizePolicy)
42 self.workdirPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.WheelFocus)
43 self.workdirPicker.setObjectName("workdirPicker")
44 self.gridLayout.addWidget(self.workdirPicker, 1, 1, 1, 1)
45 self.textLabel3 = QtWidgets.QLabel(parent=SvnCommandDialog)
46 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Preferred)
47 sizePolicy.setHorizontalStretch(0)
48 sizePolicy.setVerticalStretch(0)
49 sizePolicy.setHeightForWidth(self.textLabel3.sizePolicy().hasHeightForWidth())
50 self.textLabel3.setSizePolicy(sizePolicy)
51 self.textLabel3.setObjectName("textLabel3")
52 self.gridLayout.addWidget(self.textLabel3, 2, 0, 1, 1)
53 self.projectDirLabel = QtWidgets.QLabel(parent=SvnCommandDialog)
54 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
55 sizePolicy.setHorizontalStretch(0)
56 sizePolicy.setVerticalStretch(0)
57 sizePolicy.setHeightForWidth(self.projectDirLabel.sizePolicy().hasHeightForWidth())
58 self.projectDirLabel.setSizePolicy(sizePolicy)
59 self.projectDirLabel.setObjectName("projectDirLabel")
60 self.gridLayout.addWidget(self.projectDirLabel, 2, 1, 1, 1)
61 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnCommandDialog)
62 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
63 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
64 self.buttonBox.setObjectName("buttonBox")
65 self.gridLayout.addWidget(self.buttonBox, 3, 0, 1, 2)
66
67 self.retranslateUi(SvnCommandDialog)
68 self.buttonBox.accepted.connect(SvnCommandDialog.accept) # type: ignore
69 self.buttonBox.rejected.connect(SvnCommandDialog.reject) # type: ignore
70 QtCore.QMetaObject.connectSlotsByName(SvnCommandDialog)
71 SvnCommandDialog.setTabOrder(self.commandCombo, self.workdirPicker)
72
73 def retranslateUi(self, SvnCommandDialog):
74 _translate = QtCore.QCoreApplication.translate
75 SvnCommandDialog.setWindowTitle(_translate("SvnCommandDialog", "Subversion Command"))
76 self.textLabel1.setText(_translate("SvnCommandDialog", "Subversion Command:"))
77 self.commandCombo.setToolTip(_translate("SvnCommandDialog", "Enter the Subversion command to be executed with all necessary parameters"))
78 self.commandCombo.setWhatsThis(_translate("SvnCommandDialog", "<b>Subversion Command</b>\n"
79 "<p>Enter the Subversion command to be executed including all necessary \n"
80 "parameters. If a parameter of the commandline includes a space you have to \n"
81 "surround this parameter by single or double quotes. Do not include the name \n"
82 "of the subversion client executable (i.e. svn).</p>"))
83 self.textLabel2.setText(_translate("SvnCommandDialog", "Working Directory:<br>(optional)"))
84 self.workdirPicker.setToolTip(_translate("SvnCommandDialog", "Enter the working directory for the Subversion command"))
85 self.workdirPicker.setWhatsThis(_translate("SvnCommandDialog", "<b>Working directory</b>\n"
86 "<p>Enter the working directory for the Subversion command.\n"
87 "This is an optional entry. The button to the right will open a \n"
88 "directory selection dialog.</p>"))
89 self.textLabel3.setText(_translate("SvnCommandDialog", "Project Directory:"))
90 self.projectDirLabel.setToolTip(_translate("SvnCommandDialog", "This shows the root directory of the current project."))
91 self.projectDirLabel.setText(_translate("SvnCommandDialog", "project directory"))
92 from eric7.EricWidgets.EricPathPicker import EricComboPathPicker

eric ide

mercurial