Sat, 26 Apr 2025 12:34:32 +0200
MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.
# Form implementation generated from reading ui file 'src/eric7/Plugins/VcsPlugins/vcsGit/GitBranchPushDialog.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_GitBranchPushDialog(object): def setupUi(self, GitBranchPushDialog): GitBranchPushDialog.setObjectName("GitBranchPushDialog") GitBranchPushDialog.resize(497, 107) GitBranchPushDialog.setSizeGripEnabled(True) self.gridLayout = QtWidgets.QGridLayout(GitBranchPushDialog) self.gridLayout.setObjectName("gridLayout") self.label = QtWidgets.QLabel(parent=GitBranchPushDialog) self.label.setObjectName("label") self.gridLayout.addWidget(self.label, 0, 0, 1, 1) self.branchComboBox = QtWidgets.QComboBox(parent=GitBranchPushDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.branchComboBox.sizePolicy().hasHeightForWidth()) self.branchComboBox.setSizePolicy(sizePolicy) self.branchComboBox.setObjectName("branchComboBox") self.gridLayout.addWidget(self.branchComboBox, 0, 1, 1, 1) self.label_2 = QtWidgets.QLabel(parent=GitBranchPushDialog) self.label_2.setObjectName("label_2") self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1) self.remoteComboBox = QtWidgets.QComboBox(parent=GitBranchPushDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(self.remoteComboBox.sizePolicy().hasHeightForWidth()) self.remoteComboBox.setSizePolicy(sizePolicy) self.remoteComboBox.setObjectName("remoteComboBox") self.gridLayout.addWidget(self.remoteComboBox, 1, 1, 1, 1) self.buttonBox = QtWidgets.QDialogButtonBox(parent=GitBranchPushDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok) self.buttonBox.setObjectName("buttonBox") self.gridLayout.addWidget(self.buttonBox, 2, 0, 1, 2) self.retranslateUi(GitBranchPushDialog) self.buttonBox.accepted.connect(GitBranchPushDialog.accept) # type: ignore self.buttonBox.rejected.connect(GitBranchPushDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(GitBranchPushDialog) GitBranchPushDialog.setTabOrder(self.branchComboBox, self.remoteComboBox) def retranslateUi(self, GitBranchPushDialog): _translate = QtCore.QCoreApplication.translate GitBranchPushDialog.setWindowTitle(_translate("GitBranchPushDialog", "Git Push Branch")) self.label.setText(_translate("GitBranchPushDialog", "Branch Name:")) self.branchComboBox.setToolTip(_translate("GitBranchPushDialog", "Select the branch")) self.label_2.setText(_translate("GitBranchPushDialog", "Remote Name:")) self.remoteComboBox.setToolTip(_translate("GitBranchPushDialog", "Select the remote repository"))