Tue, 10 Dec 2024 15:49:00 +0100
Updated copyright for 2025.
# Form implementation generated from reading ui file 'ProjectPyramid/PyramidDialog.ui' # # Created by: PyQt6 UI code generator 6.7.1 # # 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_PyramidDialog(object): def setupUi(self, PyramidDialog): PyramidDialog.setObjectName("PyramidDialog") PyramidDialog.resize(650, 550) PyramidDialog.setSizeGripEnabled(True) self.vboxlayout = QtWidgets.QVBoxLayout(PyramidDialog) self.vboxlayout.setContentsMargins(11, 11, 11, 11) self.vboxlayout.setSpacing(6) self.vboxlayout.setObjectName("vboxlayout") self.outputGroup = QtWidgets.QGroupBox(parent=PyramidDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(2) sizePolicy.setHeightForWidth(self.outputGroup.sizePolicy().hasHeightForWidth()) self.outputGroup.setSizePolicy(sizePolicy) self.outputGroup.setObjectName("outputGroup") self.vboxlayout1 = QtWidgets.QVBoxLayout(self.outputGroup) self.vboxlayout1.setContentsMargins(11, 11, 11, 11) self.vboxlayout1.setSpacing(6) self.vboxlayout1.setObjectName("vboxlayout1") self.resultbox = QtWidgets.QTextEdit(parent=self.outputGroup) self.resultbox.setReadOnly(True) self.resultbox.setAcceptRichText(False) self.resultbox.setObjectName("resultbox") self.vboxlayout1.addWidget(self.resultbox) self.vboxlayout.addWidget(self.outputGroup) self.errorGroup = QtWidgets.QGroupBox(parent=PyramidDialog) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Preferred, QtWidgets.QSizePolicy.Policy.Expanding) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(1) sizePolicy.setHeightForWidth(self.errorGroup.sizePolicy().hasHeightForWidth()) self.errorGroup.setSizePolicy(sizePolicy) self.errorGroup.setObjectName("errorGroup") self.vboxlayout2 = QtWidgets.QVBoxLayout(self.errorGroup) self.vboxlayout2.setContentsMargins(11, 11, 11, 11) self.vboxlayout2.setSpacing(6) self.vboxlayout2.setObjectName("vboxlayout2") self.errors = QtWidgets.QTextEdit(parent=self.errorGroup) self.errors.setReadOnly(True) self.errors.setAcceptRichText(False) self.errors.setObjectName("errors") self.vboxlayout2.addWidget(self.errors) self.vboxlayout.addWidget(self.errorGroup) self.inputGroup = QtWidgets.QGroupBox(parent=PyramidDialog) self.inputGroup.setObjectName("inputGroup") self.gridlayout = QtWidgets.QGridLayout(self.inputGroup) self.gridlayout.setContentsMargins(11, 11, 11, 11) self.gridlayout.setSpacing(6) self.gridlayout.setObjectName("gridlayout") spacerItem = QtWidgets.QSpacerItem(327, 29, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum) self.gridlayout.addItem(spacerItem, 1, 1, 1, 1) self.sendButton = QtWidgets.QPushButton(parent=self.inputGroup) self.sendButton.setObjectName("sendButton") self.gridlayout.addWidget(self.sendButton, 1, 2, 1, 1) self.input = QtWidgets.QLineEdit(parent=self.inputGroup) self.input.setObjectName("input") self.gridlayout.addWidget(self.input, 0, 0, 1, 3) self.passwordCheckBox = QtWidgets.QCheckBox(parent=self.inputGroup) self.passwordCheckBox.setObjectName("passwordCheckBox") self.gridlayout.addWidget(self.passwordCheckBox, 1, 0, 1, 1) self.vboxlayout.addWidget(self.inputGroup) self.buttonBox = QtWidgets.QDialogButtonBox(parent=PyramidDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") self.vboxlayout.addWidget(self.buttonBox) self.retranslateUi(PyramidDialog) QtCore.QMetaObject.connectSlotsByName(PyramidDialog) PyramidDialog.setTabOrder(self.resultbox, self.errors) PyramidDialog.setTabOrder(self.errors, self.input) PyramidDialog.setTabOrder(self.input, self.passwordCheckBox) PyramidDialog.setTabOrder(self.passwordCheckBox, self.sendButton) PyramidDialog.setTabOrder(self.sendButton, self.buttonBox) def retranslateUi(self, PyramidDialog): _translate = QtCore.QCoreApplication.translate PyramidDialog.setWindowTitle(_translate("PyramidDialog", "Pyramid")) self.outputGroup.setTitle(_translate("PyramidDialog", "Output")) self.errorGroup.setTitle(_translate("PyramidDialog", "Errors")) self.inputGroup.setTitle(_translate("PyramidDialog", "Input")) self.sendButton.setToolTip(_translate("PyramidDialog", "Press to send the input to the Pyramid process")) self.sendButton.setText(_translate("PyramidDialog", "&Send")) self.sendButton.setShortcut(_translate("PyramidDialog", "Alt+S")) self.input.setToolTip(_translate("PyramidDialog", "Enter data to be sent to the Pyramid process")) self.passwordCheckBox.setToolTip(_translate("PyramidDialog", "Select to switch the input field to password mode")) self.passwordCheckBox.setText(_translate("PyramidDialog", "&Password Mode")) self.passwordCheckBox.setShortcut(_translate("PyramidDialog", "Alt+P"))