|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnSwitchDialog.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_SvnSwitchDialog(object): |
|
13 def setupUi(self, SvnSwitchDialog): |
|
14 SvnSwitchDialog.setObjectName("SvnSwitchDialog") |
|
15 SvnSwitchDialog.resize(391, 146) |
|
16 SvnSwitchDialog.setSizeGripEnabled(True) |
|
17 self.gridlayout = QtWidgets.QGridLayout(SvnSwitchDialog) |
|
18 self.gridlayout.setObjectName("gridlayout") |
|
19 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnSwitchDialog) |
|
20 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
21 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
22 self.buttonBox.setObjectName("buttonBox") |
|
23 self.gridlayout.addWidget(self.buttonBox, 2, 0, 1, 2) |
|
24 self.TextLabel1 = QtWidgets.QLabel(parent=SvnSwitchDialog) |
|
25 self.TextLabel1.setObjectName("TextLabel1") |
|
26 self.gridlayout.addWidget(self.TextLabel1, 0, 0, 1, 1) |
|
27 self.tagCombo = QtWidgets.QComboBox(parent=SvnSwitchDialog) |
|
28 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) |
|
29 sizePolicy.setHorizontalStretch(0) |
|
30 sizePolicy.setVerticalStretch(0) |
|
31 sizePolicy.setHeightForWidth(self.tagCombo.sizePolicy().hasHeightForWidth()) |
|
32 self.tagCombo.setSizePolicy(sizePolicy) |
|
33 self.tagCombo.setEditable(True) |
|
34 self.tagCombo.setDuplicatesEnabled(False) |
|
35 self.tagCombo.setObjectName("tagCombo") |
|
36 self.gridlayout.addWidget(self.tagCombo, 0, 1, 1, 1) |
|
37 self.TagTypeGroup = QtWidgets.QGroupBox(parent=SvnSwitchDialog) |
|
38 self.TagTypeGroup.setObjectName("TagTypeGroup") |
|
39 self.vboxlayout = QtWidgets.QVBoxLayout(self.TagTypeGroup) |
|
40 self.vboxlayout.setObjectName("vboxlayout") |
|
41 self.regularButton = QtWidgets.QRadioButton(parent=self.TagTypeGroup) |
|
42 self.regularButton.setChecked(True) |
|
43 self.regularButton.setObjectName("regularButton") |
|
44 self.vboxlayout.addWidget(self.regularButton) |
|
45 self.branchButton = QtWidgets.QRadioButton(parent=self.TagTypeGroup) |
|
46 self.branchButton.setObjectName("branchButton") |
|
47 self.vboxlayout.addWidget(self.branchButton) |
|
48 self.gridlayout.addWidget(self.TagTypeGroup, 1, 1, 1, 1) |
|
49 |
|
50 self.retranslateUi(SvnSwitchDialog) |
|
51 self.buttonBox.accepted.connect(SvnSwitchDialog.accept) # type: ignore |
|
52 self.buttonBox.rejected.connect(SvnSwitchDialog.reject) # type: ignore |
|
53 QtCore.QMetaObject.connectSlotsByName(SvnSwitchDialog) |
|
54 SvnSwitchDialog.setTabOrder(self.tagCombo, self.regularButton) |
|
55 SvnSwitchDialog.setTabOrder(self.regularButton, self.branchButton) |
|
56 |
|
57 def retranslateUi(self, SvnSwitchDialog): |
|
58 _translate = QtCore.QCoreApplication.translate |
|
59 SvnSwitchDialog.setWindowTitle(_translate("SvnSwitchDialog", "Subversion Switch")) |
|
60 self.TextLabel1.setText(_translate("SvnSwitchDialog", "Tag Name:")) |
|
61 self.tagCombo.setToolTip(_translate("SvnSwitchDialog", "Enter the name of the tag")) |
|
62 self.tagCombo.setWhatsThis(_translate("SvnSwitchDialog", "<b>Tag Name</b>\n" |
|
63 "<p>Enter the name of the tag to be switched to.\n" |
|
64 "In order to switch to the trunk version leave it empty.</p>")) |
|
65 self.TagTypeGroup.setTitle(_translate("SvnSwitchDialog", "Tag Type")) |
|
66 self.regularButton.setToolTip(_translate("SvnSwitchDialog", "Select for a regular tag")) |
|
67 self.regularButton.setWhatsThis(_translate("SvnSwitchDialog", "<b>Regular Tag</b>\n" |
|
68 "<p>Select this entry for a regular tag.</p>")) |
|
69 self.regularButton.setText(_translate("SvnSwitchDialog", "Regular Tag")) |
|
70 self.branchButton.setToolTip(_translate("SvnSwitchDialog", "Select for a branch tag")) |
|
71 self.branchButton.setWhatsThis(_translate("SvnSwitchDialog", "<b>Branch Tag</b>\n" |
|
72 "<p>Select this entry for a branch tag.</p>")) |
|
73 self.branchButton.setText(_translate("SvnSwitchDialog", "Branch Tag")) |