src/eric7/Plugins/VcsPlugins/vcsGit/Ui_GitOptionsDialog.py

Fri, 07 Jun 2024 11:11:57 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 07 Jun 2024 11:11:57 +0200
branch
eric7
changeset 10745
2921faddeaec
parent 10743
5d3a5a05114e
permissions
-rw-r--r--

Regenerated the Ui_*.py files with project relative paths.

# Form implementation generated from reading ui file 'src/eric7/Plugins/VcsPlugins/vcsGit/GitOptionsDialog.ui'
#
# Created by: PyQt6 UI code generator 6.7.0
#
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt6 import QtCore, QtGui, QtWidgets


class Ui_GitOptionsDialog(object):
    def setupUi(self, GitOptionsDialog):
        GitOptionsDialog.setObjectName("GitOptionsDialog")
        GitOptionsDialog.resize(565, 78)
        GitOptionsDialog.setSizeGripEnabled(True)
        self.verticalLayout = QtWidgets.QVBoxLayout(GitOptionsDialog)
        self.verticalLayout.setObjectName("verticalLayout")
        self.horizontalLayout = QtWidgets.QHBoxLayout()
        self.horizontalLayout.setObjectName("horizontalLayout")
        self.TextLabel5 = QtWidgets.QLabel(parent=GitOptionsDialog)
        self.TextLabel5.setObjectName("TextLabel5")
        self.horizontalLayout.addWidget(self.TextLabel5)
        self.vcsLogEdit = QtWidgets.QLineEdit(parent=GitOptionsDialog)
        self.vcsLogEdit.setObjectName("vcsLogEdit")
        self.horizontalLayout.addWidget(self.vcsLogEdit)
        self.verticalLayout.addLayout(self.horizontalLayout)
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitOptionsDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
        self.buttonBox.setObjectName("buttonBox")
        self.verticalLayout.addWidget(self.buttonBox)
        self.TextLabel5.setBuddy(self.vcsLogEdit)

        self.retranslateUi(GitOptionsDialog)
        self.buttonBox.accepted.connect(GitOptionsDialog.accept) # type: ignore
        self.buttonBox.rejected.connect(GitOptionsDialog.reject) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(GitOptionsDialog)

    def retranslateUi(self, GitOptionsDialog):
        _translate = QtCore.QCoreApplication.translate
        GitOptionsDialog.setWindowTitle(_translate("GitOptionsDialog", "Initial Commit"))
        GitOptionsDialog.setWhatsThis(_translate("GitOptionsDialog", "<b>Initial Commit Dialog</b>\n"
"<p>Enter the message for the initial commit.</p>"))
        self.TextLabel5.setText(_translate("GitOptionsDialog", "Commit &Message:"))
        self.vcsLogEdit.setToolTip(_translate("GitOptionsDialog", "Enter the log message for the new project."))
        self.vcsLogEdit.setWhatsThis(_translate("GitOptionsDialog", "<b>Log Message</b>\n"
"<p>Enter the log message to be used for the new project.</p>"))
        self.vcsLogEdit.setText(_translate("GitOptionsDialog", "new project started"))

eric ide

mercurial