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