|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnOptionsDialog.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_SvnOptionsDialog(object): |
|
13 def setupUi(self, SvnOptionsDialog): |
|
14 SvnOptionsDialog.setObjectName("SvnOptionsDialog") |
|
15 SvnOptionsDialog.resize(565, 149) |
|
16 SvnOptionsDialog.setSizeGripEnabled(True) |
|
17 self.gridLayout = QtWidgets.QGridLayout(SvnOptionsDialog) |
|
18 self.gridLayout.setObjectName("gridLayout") |
|
19 self.textLabel1 = QtWidgets.QLabel(parent=SvnOptionsDialog) |
|
20 self.textLabel1.setObjectName("textLabel1") |
|
21 self.gridLayout.addWidget(self.textLabel1, 0, 0, 1, 1) |
|
22 self.protocolCombo = QtWidgets.QComboBox(parent=SvnOptionsDialog) |
|
23 self.protocolCombo.setObjectName("protocolCombo") |
|
24 self.gridLayout.addWidget(self.protocolCombo, 0, 1, 1, 1) |
|
25 self.vcsUrlLabel = QtWidgets.QLabel(parent=SvnOptionsDialog) |
|
26 self.vcsUrlLabel.setObjectName("vcsUrlLabel") |
|
27 self.gridLayout.addWidget(self.vcsUrlLabel, 1, 0, 1, 1) |
|
28 self.vcsUrlPicker = EricPathPicker(parent=SvnOptionsDialog) |
|
29 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred) |
|
30 sizePolicy.setHorizontalStretch(0) |
|
31 sizePolicy.setVerticalStretch(0) |
|
32 sizePolicy.setHeightForWidth(self.vcsUrlPicker.sizePolicy().hasHeightForWidth()) |
|
33 self.vcsUrlPicker.setSizePolicy(sizePolicy) |
|
34 self.vcsUrlPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus) |
|
35 self.vcsUrlPicker.setObjectName("vcsUrlPicker") |
|
36 self.gridLayout.addWidget(self.vcsUrlPicker, 1, 1, 1, 1) |
|
37 self.TextLabel5 = QtWidgets.QLabel(parent=SvnOptionsDialog) |
|
38 self.TextLabel5.setObjectName("TextLabel5") |
|
39 self.gridLayout.addWidget(self.TextLabel5, 2, 0, 1, 1) |
|
40 self.vcsLogEdit = QtWidgets.QLineEdit(parent=SvnOptionsDialog) |
|
41 self.vcsLogEdit.setObjectName("vcsLogEdit") |
|
42 self.gridLayout.addWidget(self.vcsLogEdit, 2, 1, 1, 1) |
|
43 self.layoutCheckBox = QtWidgets.QCheckBox(parent=SvnOptionsDialog) |
|
44 self.layoutCheckBox.setChecked(True) |
|
45 self.layoutCheckBox.setObjectName("layoutCheckBox") |
|
46 self.gridLayout.addWidget(self.layoutCheckBox, 3, 0, 1, 2) |
|
47 self.buttonBox = QtWidgets.QDialogButtonBox(parent=SvnOptionsDialog) |
|
48 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
49 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
50 self.buttonBox.setObjectName("buttonBox") |
|
51 self.gridLayout.addWidget(self.buttonBox, 4, 0, 1, 2) |
|
52 self.textLabel1.setBuddy(self.protocolCombo) |
|
53 self.vcsUrlLabel.setBuddy(self.vcsUrlPicker) |
|
54 self.TextLabel5.setBuddy(self.vcsLogEdit) |
|
55 |
|
56 self.retranslateUi(SvnOptionsDialog) |
|
57 self.buttonBox.accepted.connect(SvnOptionsDialog.accept) # type: ignore |
|
58 self.buttonBox.rejected.connect(SvnOptionsDialog.reject) # type: ignore |
|
59 QtCore.QMetaObject.connectSlotsByName(SvnOptionsDialog) |
|
60 SvnOptionsDialog.setTabOrder(self.protocolCombo, self.vcsUrlPicker) |
|
61 SvnOptionsDialog.setTabOrder(self.vcsUrlPicker, self.vcsLogEdit) |
|
62 SvnOptionsDialog.setTabOrder(self.vcsLogEdit, self.layoutCheckBox) |
|
63 |
|
64 def retranslateUi(self, SvnOptionsDialog): |
|
65 _translate = QtCore.QCoreApplication.translate |
|
66 SvnOptionsDialog.setWindowTitle(_translate("SvnOptionsDialog", "Repository Infos")) |
|
67 SvnOptionsDialog.setWhatsThis(_translate("SvnOptionsDialog", "<b>Repository Infos Dialog</b>\n" |
|
68 "<p>Enter the various infos into the entry fields. These values are used to generate a new project in the repository. If the checkbox is selected, the URL must end in the project name. A directory tree with project/tags, project/branches and project/trunk will be generated in the repository. If the checkbox is not selected, the URL must contain the complete path in the repository.</p>\n" |
|
69 "<p>For remote repositories the URL must contain the hostname.</p>")) |
|
70 self.textLabel1.setText(_translate("SvnOptionsDialog", "&Protocol:")) |
|
71 self.protocolCombo.setToolTip(_translate("SvnOptionsDialog", "Select the protocol to access the repository")) |
|
72 self.vcsUrlLabel.setText(_translate("SvnOptionsDialog", "&URL:")) |
|
73 self.vcsUrlPicker.setToolTip(_translate("SvnOptionsDialog", "Enter the url path of the module in the repository (without protocol part)")) |
|
74 self.vcsUrlPicker.setWhatsThis(_translate("SvnOptionsDialog", "<b>URL</b><p>Enter the URL to the module. For a repository with standard layout, this must not contain the trunk, tags or branches part.</p>")) |
|
75 self.TextLabel5.setText(_translate("SvnOptionsDialog", "Log &Message:")) |
|
76 self.vcsLogEdit.setToolTip(_translate("SvnOptionsDialog", "Enter the log message for the new project.")) |
|
77 self.vcsLogEdit.setWhatsThis(_translate("SvnOptionsDialog", "<b>Log Message</b>\n" |
|
78 "<p>Enter the log message to be used for the new project.</p>")) |
|
79 self.vcsLogEdit.setText(_translate("SvnOptionsDialog", "new project started")) |
|
80 self.layoutCheckBox.setToolTip(_translate("SvnOptionsDialog", "Select, if the standard repository layout (projectdir/trunk, projectdir/tags, projectdir/branches) should be generated")) |
|
81 self.layoutCheckBox.setText(_translate("SvnOptionsDialog", "Create standard repository &layout")) |
|
82 self.layoutCheckBox.setShortcut(_translate("SvnOptionsDialog", "Alt+L")) |
|
83 from eric7.EricWidgets.EricPathPicker import EricPathPicker |