|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Plugins/VcsPlugins/vcsMercurial/HgOptionsDialog.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_HgOptionsDialog(object): |
|
13 def setupUi(self, HgOptionsDialog): |
|
14 HgOptionsDialog.setObjectName("HgOptionsDialog") |
|
15 HgOptionsDialog.resize(565, 78) |
|
16 HgOptionsDialog.setSizeGripEnabled(True) |
|
17 self.verticalLayout = QtWidgets.QVBoxLayout(HgOptionsDialog) |
|
18 self.verticalLayout.setObjectName("verticalLayout") |
|
19 self.horizontalLayout = QtWidgets.QHBoxLayout() |
|
20 self.horizontalLayout.setObjectName("horizontalLayout") |
|
21 self.TextLabel5 = QtWidgets.QLabel(parent=HgOptionsDialog) |
|
22 self.TextLabel5.setObjectName("TextLabel5") |
|
23 self.horizontalLayout.addWidget(self.TextLabel5) |
|
24 self.vcsLogEdit = QtWidgets.QLineEdit(parent=HgOptionsDialog) |
|
25 self.vcsLogEdit.setObjectName("vcsLogEdit") |
|
26 self.horizontalLayout.addWidget(self.vcsLogEdit) |
|
27 self.verticalLayout.addLayout(self.horizontalLayout) |
|
28 self.buttonBox = QtWidgets.QDialogButtonBox(parent=HgOptionsDialog) |
|
29 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
30 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
31 self.buttonBox.setObjectName("buttonBox") |
|
32 self.verticalLayout.addWidget(self.buttonBox) |
|
33 self.TextLabel5.setBuddy(self.vcsLogEdit) |
|
34 |
|
35 self.retranslateUi(HgOptionsDialog) |
|
36 self.buttonBox.accepted.connect(HgOptionsDialog.accept) # type: ignore |
|
37 self.buttonBox.rejected.connect(HgOptionsDialog.reject) # type: ignore |
|
38 QtCore.QMetaObject.connectSlotsByName(HgOptionsDialog) |
|
39 |
|
40 def retranslateUi(self, HgOptionsDialog): |
|
41 _translate = QtCore.QCoreApplication.translate |
|
42 HgOptionsDialog.setWindowTitle(_translate("HgOptionsDialog", "Initial Commit")) |
|
43 HgOptionsDialog.setWhatsThis(_translate("HgOptionsDialog", "<b>Initial Commit Dialog</b>\n" |
|
44 "<p>Enter the message for the initial commit.</p>")) |
|
45 self.TextLabel5.setText(_translate("HgOptionsDialog", "Commit &Message:")) |
|
46 self.vcsLogEdit.setToolTip(_translate("HgOptionsDialog", "Enter the log message for the new project.")) |
|
47 self.vcsLogEdit.setWhatsThis(_translate("HgOptionsDialog", "<b>Log Message</b>\n" |
|
48 "<p>Enter the log message to be used for the new project.</p>")) |
|
49 self.vcsLogEdit.setText(_translate("HgOptionsDialog", "new project started")) |