src/eric7/Plugins/VcsPlugins/vcsSubversion/Ui_SvnUrlSelectionDialog.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/SvnUrlSelectionDialog.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_SvnUrlSelectionDialog(object):
13 def setupUi(self, SvnUrlSelectionDialog):
14 SvnUrlSelectionDialog.setObjectName("SvnUrlSelectionDialog")
15 SvnUrlSelectionDialog.resize(542, 195)
16 SvnUrlSelectionDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(SvnUrlSelectionDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.urlGroup1 = QtWidgets.QGroupBox(parent=SvnUrlSelectionDialog)
20 self.urlGroup1.setObjectName("urlGroup1")
21 self.hboxlayout = QtWidgets.QHBoxLayout(self.urlGroup1)
22 self.hboxlayout.setObjectName("hboxlayout")
23 self.repoRootLabel1 = QtWidgets.QLabel(parent=self.urlGroup1)
24 self.repoRootLabel1.setObjectName("repoRootLabel1")
25 self.hboxlayout.addWidget(self.repoRootLabel1)
26 self.typeCombo1 = QtWidgets.QComboBox(parent=self.urlGroup1)
27 self.typeCombo1.setObjectName("typeCombo1")
28 self.hboxlayout.addWidget(self.typeCombo1)
29 self.labelCombo1 = QtWidgets.QComboBox(parent=self.urlGroup1)
30 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
31 sizePolicy.setHorizontalStretch(0)
32 sizePolicy.setVerticalStretch(0)
33 sizePolicy.setHeightForWidth(self.labelCombo1.sizePolicy().hasHeightForWidth())
34 self.labelCombo1.setSizePolicy(sizePolicy)
35 self.labelCombo1.setEditable(True)
36 self.labelCombo1.setObjectName("labelCombo1")
37 self.hboxlayout.addWidget(self.labelCombo1)
38 self.vboxlayout.addWidget(self.urlGroup1)
39 self.urlGroup2 = QtWidgets.QGroupBox(parent=SvnUrlSelectionDialog)
40 self.urlGroup2.setObjectName("urlGroup2")
41 self.hboxlayout1 = QtWidgets.QHBoxLayout(self.urlGroup2)
42 self.hboxlayout1.setObjectName("hboxlayout1")
43 self.repoRootLabel2 = QtWidgets.QLabel(parent=self.urlGroup2)
44 self.repoRootLabel2.setObjectName("repoRootLabel2")
45 self.hboxlayout1.addWidget(self.repoRootLabel2)
46 self.typeCombo2 = QtWidgets.QComboBox(parent=self.urlGroup2)
47 self.typeCombo2.setObjectName("typeCombo2")
48 self.hboxlayout1.addWidget(self.typeCombo2)
49 self.labelCombo2 = QtWidgets.QComboBox(parent=self.urlGroup2)
50 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
51 sizePolicy.setHorizontalStretch(0)
52 sizePolicy.setVerticalStretch(0)
53 sizePolicy.setHeightForWidth(self.labelCombo2.sizePolicy().hasHeightForWidth())
54 self.labelCombo2.setSizePolicy(sizePolicy)
55 self.labelCombo2.setEditable(True)
56 self.labelCombo2.setObjectName("labelCombo2")
57 self.hboxlayout1.addWidget(self.labelCombo2)
58 self.vboxlayout.addWidget(self.urlGroup2)
59 self.summaryCheckBox = QtWidgets.QCheckBox(parent=SvnUrlSelectionDialog)
60 self.summaryCheckBox.setObjectName("summaryCheckBox")
61 self.vboxlayout.addWidget(self.summaryCheckBox)
62 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnUrlSelectionDialog)
63 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
64 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
65 self.buttonBox.setObjectName("buttonBox")
66 self.vboxlayout.addWidget(self.buttonBox)
67
68 self.retranslateUi(SvnUrlSelectionDialog)
69 self.buttonBox.accepted.connect(SvnUrlSelectionDialog.accept) # type: ignore
70 self.buttonBox.rejected.connect(SvnUrlSelectionDialog.reject) # type: ignore
71 QtCore.QMetaObject.connectSlotsByName(SvnUrlSelectionDialog)
72 SvnUrlSelectionDialog.setTabOrder(self.typeCombo1, self.labelCombo1)
73 SvnUrlSelectionDialog.setTabOrder(self.labelCombo1, self.typeCombo2)
74 SvnUrlSelectionDialog.setTabOrder(self.typeCombo2, self.labelCombo2)
75 SvnUrlSelectionDialog.setTabOrder(self.labelCombo2, self.summaryCheckBox)
76 SvnUrlSelectionDialog.setTabOrder(self.summaryCheckBox, self.buttonBox)
77
78 def retranslateUi(self, SvnUrlSelectionDialog):
79 _translate = QtCore.QCoreApplication.translate
80 SvnUrlSelectionDialog.setWindowTitle(_translate("SvnUrlSelectionDialog", "Subversion Diff"))
81 self.urlGroup1.setTitle(_translate("SvnUrlSelectionDialog", "Repository URL 1"))
82 self.typeCombo1.setToolTip(_translate("SvnUrlSelectionDialog", "Select the URL type"))
83 self.labelCombo1.setToolTip(_translate("SvnUrlSelectionDialog", "Enter the label name or path"))
84 self.urlGroup2.setTitle(_translate("SvnUrlSelectionDialog", "Repository URL 2"))
85 self.typeCombo2.setToolTip(_translate("SvnUrlSelectionDialog", "Select the URL type"))
86 self.labelCombo2.setToolTip(_translate("SvnUrlSelectionDialog", "Enter the label name or path"))
87 self.summaryCheckBox.setToolTip(_translate("SvnUrlSelectionDialog", "Select to just show a summary of differences"))
88 self.summaryCheckBox.setText(_translate("SvnUrlSelectionDialog", "Summary only"))

eric ide

mercurial