Source code for schrodinger.ui.qt.tasks.config_dialog_ui

# Form implementation generated from reading ui file '/Users/eltanawy/builds/2022-4/source/mmshare/python/modules/schrodinger/ui/qt/tasks/config_dialog.ui'
#
# Created by: PyQt6 UI code generator 6.3.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


[docs]class Ui_Form(object):
[docs] def setupUi(self, Form): Form.setObjectName("Form") Form.resize(400, 300) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.output_group = QtWidgets.QGroupBox(Form) self.output_group.setObjectName("output_group") self.output_layout = QtWidgets.QVBoxLayout(self.output_group) self.output_layout.setObjectName("output_layout") self.incorp_layout = QtWidgets.QHBoxLayout() self.incorp_layout.setObjectName("incorp_layout") self.label = QtWidgets.QLabel(self.output_group) self.label.setObjectName("label") self.incorp_layout.addWidget(self.label) self.output_layout.addLayout(self.incorp_layout) self.verticalLayout.addWidget(self.output_group) self.job_group = QtWidgets.QGroupBox(Form) self.job_group.setObjectName("job_group") self.job_layout = QtWidgets.QVBoxLayout(self.job_group) self.job_layout.setObjectName("job_layout") self.jobname_layout = QtWidgets.QHBoxLayout() self.jobname_layout.setObjectName("jobname_layout") self.label_2 = QtWidgets.QLabel(self.job_group) self.label_2.setObjectName("label_2") self.jobname_layout.addWidget(self.label_2) self.job_layout.addLayout(self.jobname_layout) self.verticalLayout.addWidget(self.job_group) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.output_group.setTitle(_translate("Form", "Output")) self.label.setText(_translate("Form", "Incorporate:")) self.job_group.setTitle(_translate("Form", "Job")) self.label_2.setText(_translate("Form", "Job name:"))