Source code for schrodinger.application.msv.gui.homology_modeling.homology_modeling_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/msv/gui/homology_modeling/homology_modeling.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(342, 127) Form.setStyleSheet("") self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.layout = QtWidgets.QHBoxLayout() self.layout.setObjectName("layout") self.label = QtWidgets.QLabel(Form) self.label.setObjectName("label") self.layout.addWidget(self.label) self.mode_combo = MappableComboBox(Form) self.mode_combo.setObjectName("mode_combo") self.layout.addWidget(self.mode_combo) self.verticalLayout.addLayout(self.layout) self.step_layout = QtWidgets.QVBoxLayout() self.step_layout.setObjectName("step_layout") self.verticalLayout.addLayout(self.step_layout) spacerItem = QtWidgets.QSpacerItem(20, 40, QtWidgets.QSizePolicy.Minimum, QtWidgets.QSizePolicy.Expanding) self.verticalLayout.addItem(spacerItem) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.label.setText(_translate("Form", "Use:"))
from schrodinger.ui.qt.mapperwidgets import MappableComboBox