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

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/jaguar/gui/ui/scan_tab_nextgeom.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(653, 73) self.horizontalLayout = QtWidgets.QHBoxLayout(Form) self.horizontalLayout.setObjectName("horizontalLayout") self.nextgeom_lbl = QtWidgets.QLabel(Form) self.nextgeom_lbl.setObjectName("nextgeom_lbl") self.horizontalLayout.addWidget(self.nextgeom_lbl) self.nextgeom_previous_rb = QtWidgets.QRadioButton(Form) self.nextgeom_previous_rb.setObjectName("nextgeom_previous_rb") self.nextgeom_btngrp = QtWidgets.QButtonGroup(Form) self.nextgeom_btngrp.setObjectName("nextgeom_btngrp") self.nextgeom_btngrp.addButton(self.nextgeom_previous_rb) self.horizontalLayout.addWidget(self.nextgeom_previous_rb) self.nextgeom_init_rb = QtWidgets.QRadioButton(Form) self.nextgeom_init_rb.setObjectName("nextgeom_init_rb") self.nextgeom_btngrp.addButton(self.nextgeom_init_rb) self.horizontalLayout.addWidget(self.nextgeom_init_rb) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.nextgeom_lbl.setText(_translate("Form", "Generate starting geometries from:")) self.nextgeom_previous_rb.setText(_translate("Form", "previous optimized geometry")) self.nextgeom_init_rb.setText(_translate("Form", "initial geometry without relaxation"))