44 lines
2.0 KiB
Python
44 lines
2.0 KiB
Python
# Form implementation generated from reading ui file 'c:\Users\aky547\GitHub\LibrarySystem\src\ui\sources\dialog_extendLoanDuration.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.7.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
|
|
|
|
|
|
class Ui_Dialog(object):
|
|
def setupUi(self, Dialog):
|
|
Dialog.setObjectName("Dialog")
|
|
Dialog.setWindowModality(QtCore.Qt.WindowModality.ApplicationModal)
|
|
Dialog.resize(400, 300)
|
|
self.gridLayout = QtWidgets.QGridLayout(Dialog)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.extenduntil = QtWidgets.QCalendarWidget(parent=Dialog)
|
|
self.extenduntil.setObjectName("extenduntil")
|
|
self.gridLayout.addWidget(self.extenduntil, 1, 2, 1, 1)
|
|
self.buttonBox = QtWidgets.QDialogButtonBox(parent=Dialog)
|
|
self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
|
|
self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
|
|
self.buttonBox.setObjectName("buttonBox")
|
|
self.gridLayout.addWidget(self.buttonBox, 2, 2, 1, 1)
|
|
self.label = QtWidgets.QLabel(parent=Dialog)
|
|
font = QtGui.QFont()
|
|
font.setPointSize(11)
|
|
font.setBold(True)
|
|
self.label.setFont(font)
|
|
self.label.setObjectName("label")
|
|
self.gridLayout.addWidget(self.label, 0, 2, 1, 1)
|
|
|
|
self.retranslateUi(Dialog)
|
|
self.buttonBox.accepted.connect(Dialog.accept) # type: ignore
|
|
self.buttonBox.rejected.connect(Dialog.reject) # type: ignore
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
|
|
def retranslateUi(self, Dialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
|
self.label.setText(_translate("Dialog", "Bitte das Verlängerungsdatum auswählen"))
|