Source code for schrodinger.application.jaguar.gui.ui.molecule_std_bottom_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/jaguar/gui/ui/molecule_std_bottom.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(448, 78) self.horizontalLayout = QtWidgets.QHBoxLayout(Form) self.horizontalLayout.setObjectName("horizontalLayout") self.molecule_std_bottom_frame = QtWidgets.QFrame(Form) self.molecule_std_bottom_frame.setFrameShape(QtWidgets.QFrame.NoFrame) self.molecule_std_bottom_frame.setFrameShadow(QtWidgets.QFrame.Plain) self.molecule_std_bottom_frame.setObjectName("molecule_std_bottom_frame") self.verticalLayout = QtWidgets.QVBoxLayout(self.molecule_std_bottom_frame) self.verticalLayout.setContentsMargins(0, 0, 0, 0) self.verticalLayout.setObjectName("verticalLayout") self.basis_selector = BasisSelector(self.molecule_std_bottom_frame) self.basis_selector.setObjectName("basis_selector") self.verticalLayout.addWidget(self.basis_selector) self.horizontalLayout.addWidget(self.molecule_std_bottom_frame) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form"))
from ..basis_selector import BasisSelector