You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.5 KiB
40 lines
1.5 KiB
5 years ago
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# Form implementation generated from reading ui file 'DisclaimerDialog.ui'
|
||
|
#
|
||
|
# Created by: PyQt5 UI code generator 5.14.1
|
||
|
#
|
||
|
# WARNING! All changes made in this file will be lost!
|
||
|
|
||
|
|
||
|
from PyQt5 import QtCore, QtGui, QtWidgets
|
||
|
|
||
|
|
||
|
class Ui_dialog(object):
|
||
|
def setupUi(self, dialog):
|
||
|
dialog.setObjectName("dialog")
|
||
|
dialog.resize(403, 80)
|
||
|
self.buttonBox = QtWidgets.QDialogButtonBox(dialog)
|
||
|
self.buttonBox.setGeometry(QtCore.QRect(40, 50, 341, 32))
|
||
|
self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
|
||
|
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Ok)
|
||
|
self.buttonBox.setObjectName("buttonBox")
|
||
|
self.frame = QtWidgets.QFrame(dialog)
|
||
|
self.frame.setGeometry(QtCore.QRect(10, 10, 381, 41))
|
||
|
self.frame.setFrameShape(QtWidgets.QFrame.StyledPanel)
|
||
|
self.frame.setFrameShadow(QtWidgets.QFrame.Raised)
|
||
|
self.frame.setObjectName("frame")
|
||
|
self.label = QtWidgets.QLabel(self.frame)
|
||
|
self.label.setGeometry(QtCore.QRect(10, 0, 371, 41))
|
||
|
self.label.setObjectName("label")
|
||
|
|
||
|
self.retranslateUi(dialog)
|
||
|
self.buttonBox.accepted.connect(dialog.accept)
|
||
|
self.buttonBox.rejected.connect(dialog.reject)
|
||
|
QtCore.QMetaObject.connectSlotsByName(dialog)
|
||
|
|
||
|
def retranslateUi(self, dialog):
|
||
|
_translate = QtCore.QCoreApplication.translate
|
||
|
dialog.setWindowTitle(_translate("dialog", "Disclaimer"))
|
||
|
self.label.setText(_translate("dialog", "Only reports supported by selected vendor will be retrieved!"))
|