Source code for schrodinger.application.jaguar.gui.ui.input_sub_tabs.charge_constraints_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/charge_constraints.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.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.new_btn = QtWidgets.QPushButton(Form) self.new_btn.setObjectName("new_btn") self.horizontalLayout.addWidget(self.new_btn) spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.verticalLayout.addLayout(self.horizontalLayout) self.table_view = ChargeConstraintsTableView(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.new_btn.setText(_translate("Form", "New Constraint"))
from schrodinger.application.jaguar.gui.tabs.sub_tab_widgets.charge_constraints_widgets import ChargeConstraintsTableView