Source code for schrodinger.application.msv.gui.dialogs.structure_align_results_dialog_ui

# -*- coding: utf-8 -*-

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/msv/gui/dialogs/structure_align_results_dialog.ui'
#
# Created by: PyQt5 UI code generator 5.15.4
#
# WARNING: Any manual changes made to this file will be lost when pyuic5 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt5 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.description_lbl = QtWidgets.QLabel(Form) self.description_lbl.setText("") self.description_lbl.setWordWrap(True) self.description_lbl.setObjectName("description_lbl") self.verticalLayout.addWidget(self.description_lbl) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.label_3 = QtWidgets.QLabel(Form) self.label_3.setObjectName("label_3") self.horizontalLayout.addWidget(self.label_3) self.ref_structure_lbl = QtWidgets.QLabel(Form) self.ref_structure_lbl.setText("") self.ref_structure_lbl.setObjectName("ref_structure_lbl") self.horizontalLayout.addWidget(self.ref_structure_lbl) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) self.result_plptw = PLPTableWidget(Form) self.result_plptw.setObjectName("result_plptw") self.verticalLayout.addWidget(self.result_plptw) self.rmsd_cb = QtWidgets.QCheckBox(Form) self.rmsd_cb.setObjectName("rmsd_cb") self.verticalLayout.addWidget(self.rmsd_cb) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.label_3.setText(_translate("Form", "Reference structure:")) self.rmsd_cb.setText(_translate("Form", "Add RMSD property to Project Table"))
from schrodinger.ui.qt.mapperwidgets.plptable import PLPTableWidget