Source code for schrodinger.application.jaguar.gui.ui.input_sub_tabs.basis_set_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/jaguar/gui/ui/input_sub_tabs/basis_set.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(463, 296) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.pick_atom_cb = QtWidgets.QCheckBox(Form) self.pick_atom_cb.setObjectName("pick_atom_cb") self.verticalLayout.addWidget(self.pick_atom_cb) self.table_view = BasisSetTableView(Form) self.table_view.setObjectName("table_view") self.verticalLayout.addWidget(self.table_view) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.pick_atom_cb.setText(_translate("Form", "Pick atoms"))
from ...tabs.sub_tab_widgets.basis_set_widgets import BasisSetTableView