Source code for schrodinger.application.jaguar.gui.ui.coordinate_dialog_ui

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

# Form implementation generated from reading ui file '/scr/buildbot/src/mmshare/python/modules/schrodinger/application/jaguar/gui/ui/coordinate_dialog.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_Dialog(object):
[docs] def setupUi(self, Dialog): Dialog.setObjectName("Dialog") Dialog.resize(591, 140) sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) sizePolicy.setHorizontalStretch(0) sizePolicy.setVerticalStretch(0) sizePolicy.setHeightForWidth(Dialog.sizePolicy().hasHeightForWidth()) Dialog.setSizePolicy(sizePolicy) self.verticalLayout = QtWidgets.QVBoxLayout(Dialog) self.verticalLayout.setObjectName("verticalLayout") self.warning_lbl = QtWidgets.QLabel(Dialog) self.warning_lbl.setObjectName("warning_lbl") self.verticalLayout.addWidget(self.warning_lbl) self.constraint_rb = QtWidgets.QRadioButton(Dialog) self.constraint_rb.setChecked(True) self.constraint_rb.setObjectName("constraint_rb") self.verticalLayout.addWidget(self.constraint_rb) self.scan_rb = QtWidgets.QRadioButton(Dialog) self.scan_rb.setObjectName("scan_rb") self.verticalLayout.addWidget(self.scan_rb) self.both_rb = QtWidgets.QRadioButton(Dialog) self.both_rb.setObjectName("both_rb") self.verticalLayout.addWidget(self.both_rb) self.buttonBox = QtWidgets.QDialogButtonBox(Dialog) self.buttonBox.setOrientation(QtCore.Qt.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Ok) self.buttonBox.setObjectName("buttonBox") self.verticalLayout.addWidget(self.buttonBox) self.retranslateUi(Dialog) self.buttonBox.accepted.connect(Dialog.accept) self.buttonBox.rejected.connect(Dialog.reject) QtCore.QMetaObject.connectSlotsByName(Dialog)
[docs] def retranslateUi(self, Dialog): _translate = QtCore.QCoreApplication.translate Dialog.setWindowTitle(_translate("Dialog", "Jaguar")) self.warning_lbl.setText(_translate("Dialog", "You are trying to define a (constraint|scan) that conflicts with (scan|constraint) already defined.")) self.constraint_rb.setText(_translate("Dialog", "Delete the constraint")) self.scan_rb.setText(_translate("Dialog", "Delete the scan")) self.both_rb.setText(_translate("Dialog", "Delete both the constraint and the scan"))