Source code for schrodinger.ui.qt.fp_selector_widget_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/ui/qt/fp_selector_widget.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(342, 27) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(Form.sizePolicy().hasHeightForWidth()) Form.setSizePolicy(sizePolicy) self.horizontalLayout = QtWidgets.QHBoxLayout(Form) self.horizontalLayout.setContentsMargins(0, 0, 0, 0) self.horizontalLayout.setObjectName("horizontalLayout") self.fp_cb = QtWidgets.QCheckBox(Form) self.fp_cb.setObjectName("fp_cb") self.horizontalLayout.addWidget(self.fp_cb) self.fp_lbl = QtWidgets.QLabel(Form) self.fp_lbl.setTextFormat(QtCore.Qt.PlainText) self.fp_lbl.setObjectName("fp_lbl") self.horizontalLayout.addWidget(self.fp_lbl) self.fp_btn = LinkButtonWithPopUp(Form) self.fp_btn.setObjectName("fp_btn") self.horizontalLayout.addWidget(self.fp_btn) spacerItem = QtWidgets.QSpacerItem(38, 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.fp_cb.setText(_translate("Form", "Fingerprints:")) self.fp_lbl.setText(_translate("Form", "TextLabel")) self.fp_btn.setText(_translate("Form", "Change"))
from schrodinger.ui.qt.pop_up_widgets import LinkButtonWithPopUp