Source code for schrodinger.application.livedesign.selection_pop_up_ui

# Form implementation generated from reading ui file '/Users/eltanawy/builds/2022-4/source/mmshare/python/modules/schrodinger/application/livedesign/selection_pop_up.ui'
#
# Created by: PyQt6 UI code generator 6.3.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt6 import QtCore, QtGui, QtWidgets


[docs]class Ui_Form(object):
[docs] def setupUi(self, Form): Form.setObjectName("Form") Form.resize(400, 300) Form.setFocusPolicy(QtCore.Qt.FocusPolicy.TabFocus) self.verticalLayout = QtWidgets.QVBoxLayout(Form) self.verticalLayout.setContentsMargins(3, 0, 3, 3) self.verticalLayout.setObjectName("verticalLayout") self.search_btn = QtWidgets.QRadioButton(Form) self.search_btn.setChecked(True) self.search_btn.setObjectName("search_btn") self.verticalLayout.addWidget(self.search_btn) self.create_btn = QtWidgets.QRadioButton(Form) self.create_btn.setStyleSheet("margin-bottom: 6 px;") self.create_btn.setObjectName("create_btn") self.verticalLayout.addWidget(self.create_btn) self.line = QtWidgets.QFrame(Form) self.line.setStyleSheet("") self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine) self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) self.line.setObjectName("line") self.verticalLayout.addWidget(self.line) self.selection_sw = QtWidgets.QStackedWidget(Form) self.selection_sw.setStyleSheet("margin-top: 6 px; margin-bottom: 6px;") self.selection_sw.setObjectName("selection_sw") self.verticalLayout.addWidget(self.selection_sw) self.apply_to_rows_btn = QtWidgets.QPushButton(Form) self.apply_to_rows_btn.setObjectName("apply_to_rows_btn") self.verticalLayout.addWidget(self.apply_to_rows_btn) self.retranslateUi(Form) QtCore.QMetaObject.connectSlotsByName(Form)
[docs] def retranslateUi(self, Form): _translate = QtCore.QCoreApplication.translate Form.setWindowTitle(_translate("Form", "Form")) self.search_btn.setText(_translate("Form", "Search model or assay name")) self.create_btn.setText(_translate("Form", "Create new name")) self.apply_to_rows_btn.setText(_translate("Form", "Apply to Selected Rows (1)"))