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

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/jaguar/gui/ui/input_pka_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(500, 229) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.conf_searches_cb = QtWidgets.QCheckBox(Form) self.conf_searches_cb.setChecked(True) self.conf_searches_cb.setObjectName("conf_searches_cb") self.verticalLayout.addWidget(self.conf_searches_cb) self.horizontalLayout_2 = QtWidgets.QHBoxLayout() self.horizontalLayout_2.setObjectName("horizontalLayout_2") spacerItem = QtWidgets.QSpacerItem(10, 20, QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_2.addItem(spacerItem) self.perform_search_frame = QtWidgets.QFrame(Form) self.perform_search_frame.setEnabled(True) self.perform_search_frame.setObjectName("perform_search_frame") self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.perform_search_frame) self.verticalLayout_2.setObjectName("verticalLayout_2") self.horizontalLayout_8 = QtWidgets.QHBoxLayout() self.horizontalLayout_8.setContentsMargins(-1, -1, -1, 0) self.horizontalLayout_8.setSpacing(0) self.horizontalLayout_8.setObjectName("horizontalLayout_8") self.label = QtWidgets.QLabel(self.perform_search_frame) self.label.setObjectName("label") self.horizontalLayout_8.addWidget(self.label) self.accuracy_fast_rb = QtWidgets.QRadioButton(self.perform_search_frame) self.accuracy_fast_rb.setChecked(True) self.accuracy_fast_rb.setObjectName("accuracy_fast_rb") self.horizontalLayout_8.addWidget(self.accuracy_fast_rb) self.accuracy_thorough_rb = QtWidgets.QRadioButton(self.perform_search_frame) self.accuracy_thorough_rb.setObjectName("accuracy_thorough_rb") self.horizontalLayout_8.addWidget(self.accuracy_thorough_rb) spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_8.addItem(spacerItem1) self.verticalLayout_2.addLayout(self.horizontalLayout_8) self.horizontalLayout_6 = QtWidgets.QHBoxLayout() self.horizontalLayout_6.setContentsMargins(-1, -1, -1, 3) self.horizontalLayout_6.setObjectName("horizontalLayout_6") self.max_num_conf_lbl = QtWidgets.QLabel(self.perform_search_frame) self.max_num_conf_lbl.setObjectName("max_num_conf_lbl") self.horizontalLayout_6.addWidget(self.max_num_conf_lbl) self.max_num_conf_sb = QtWidgets.QSpinBox(self.perform_search_frame) self.max_num_conf_sb.setProperty("value", 5) self.max_num_conf_sb.setObjectName("max_num_conf_sb") self.horizontalLayout_6.addWidget(self.max_num_conf_sb) spacerItem2 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_6.addItem(spacerItem2) self.verticalLayout_2.addLayout(self.horizontalLayout_6) self.horizontalLayout_7 = QtWidgets.QHBoxLayout() self.horizontalLayout_7.setObjectName("horizontalLayout_7") self.conf_energy_win_lbl = QtWidgets.QLabel(self.perform_search_frame) self.conf_energy_win_lbl.setObjectName("conf_energy_win_lbl") self.horizontalLayout_7.addWidget(self.conf_energy_win_lbl) self.conf_energy_win_le = QtWidgets.QLineEdit(self.perform_search_frame) self.conf_energy_win_le.setInputMethodHints(QtCore.Qt.ImhDigitsOnly) self.conf_energy_win_le.setInputMask("") self.conf_energy_win_le.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) self.conf_energy_win_le.setObjectName("conf_energy_win_le") self.horizontalLayout_7.addWidget(self.conf_energy_win_le) self.kcal_mol_lbl = QtWidgets.QLabel(self.perform_search_frame) self.kcal_mol_lbl.setObjectName("kcal_mol_lbl") self.horizontalLayout_7.addWidget(self.kcal_mol_lbl) spacerItem3 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout_7.addItem(spacerItem3) self.verticalLayout_2.addLayout(self.horizontalLayout_7) self.horizontalLayout_2.addWidget(self.perform_search_frame) self.verticalLayout.addLayout(self.horizontalLayout_2) self.zwitterion_cb = QtWidgets.QCheckBox(Form) self.zwitterion_cb.setObjectName("zwitterion_cb") self.verticalLayout.addWidget(self.zwitterion_cb) self.retranslateUi(Form) self.conf_searches_cb.toggled['bool'].connect(self.perform_search_frame.setEnabled) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.conf_searches_cb.setText(_translate("Form", "Perform conformational searches on input structures (requires MacroModel)")) self.label.setText(_translate("Form", "Accuracy:")) self.accuracy_fast_rb.setText(_translate("Form", "Fast")) self.accuracy_thorough_rb.setText(_translate("Form", "Thorough")) self.max_num_conf_lbl.setText(_translate("Form", "Max number of conformers to use for each species:")) self.conf_energy_win_lbl.setText(_translate("Form", "Conformational energy window:")) self.conf_energy_win_le.setText(_translate("Form", "12.0")) self.kcal_mol_lbl.setText(_translate("Form", "kcal/mol")) self.zwitterion_cb.setText(_translate("Form", "Allow use of zwitterion functional groups"))