Source code for schrodinger.application.msv.gui.dialogs.edit_min_max_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/msv/gui/dialogs/edit_min_max.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(120, 96) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setObjectName("verticalLayout") self.gridLayout = QtWidgets.QGridLayout() self.gridLayout.setObjectName("gridLayout") self.min_lbl = QtWidgets.QLabel(Form) self.min_lbl.setObjectName("min_lbl") self.gridLayout.addWidget(self.min_lbl, 0, 0, 1, 1) self.max_lbl = QtWidgets.QLabel(Form) self.max_lbl.setObjectName("max_lbl") self.gridLayout.addWidget(self.max_lbl, 1, 0, 1, 1) self.min_le = QtWidgets.QLineEdit(Form) self.min_le.setObjectName("min_le") self.gridLayout.addWidget(self.min_le, 0, 1, 1, 1) self.max_le = QtWidgets.QLineEdit(Form) self.max_le.setObjectName("max_le") self.gridLayout.addWidget(self.max_le, 1, 1, 1, 1) self.verticalLayout.addLayout(self.gridLayout) self.horizontalLayout = QtWidgets.QHBoxLayout() self.horizontalLayout.setObjectName("horizontalLayout") self.detect_lbl = QtWidgets.QLabel(Form) self.detect_lbl.setObjectName("detect_lbl") self.horizontalLayout.addWidget(self.detect_lbl) spacerItem = QtWidgets.QSpacerItem(0, 0, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum) self.horizontalLayout.addItem(spacerItem) self.accept_btn = QtWidgets.QToolButton(Form) self.accept_btn.setText("") self.accept_btn.setObjectName("accept_btn") self.horizontalLayout.addWidget(self.accept_btn) self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.min_lbl.setText(_translate("Form", "Min:")) self.max_lbl.setText(_translate("Form", "Max:"))