55 lines
2.6 KiB
Python
55 lines
2.6 KiB
Python
# Form implementation generated from reading ui file 'c:\Users\aky547\GitHub\LibrarySystem\src\ui\sources\dialog_addBook.ui'
|
|
#
|
|
# Created by: PyQt6 UI code generator 6.6.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.resize(262, 100)
|
|
self.gridLayout = QtWidgets.QGridLayout(Dialog)
|
|
self.gridLayout.setObjectName("gridLayout")
|
|
self.book_signature = QtWidgets.QLineEdit(parent=Dialog)
|
|
self.book_signature.setObjectName("book_signature")
|
|
self.gridLayout.addWidget(self.book_signature, 1, 1, 1, 1)
|
|
self.label_2 = QtWidgets.QLabel(parent=Dialog)
|
|
self.label_2.setObjectName("label_2")
|
|
self.gridLayout.addWidget(self.label_2, 1, 0, 1, 1)
|
|
self.label = QtWidgets.QLabel(parent=Dialog)
|
|
self.label.setObjectName("label")
|
|
self.gridLayout.addWidget(self.label, 0, 0, 1, 1)
|
|
self.book_title = QtWidgets.QLineEdit(parent=Dialog)
|
|
self.book_title.setObjectName("book_title")
|
|
self.gridLayout.addWidget(self.book_title, 0, 1, 1, 1)
|
|
self.horizontalLayout = QtWidgets.QHBoxLayout()
|
|
self.horizontalLayout.setObjectName("horizontalLayout")
|
|
self.btn_save = QtWidgets.QPushButton(parent=Dialog)
|
|
self.btn_save.setFocusPolicy(QtCore.Qt.FocusPolicy.ClickFocus)
|
|
self.btn_save.setObjectName("btn_save")
|
|
self.horizontalLayout.addWidget(self.btn_save)
|
|
self.btn_cancel = QtWidgets.QPushButton(parent=Dialog)
|
|
self.btn_cancel.setFocusPolicy(QtCore.Qt.FocusPolicy.ClickFocus)
|
|
self.btn_cancel.setObjectName("btn_cancel")
|
|
self.horizontalLayout.addWidget(self.btn_cancel)
|
|
self.gridLayout.addLayout(self.horizontalLayout, 2, 1, 1, 1)
|
|
|
|
self.retranslateUi(Dialog)
|
|
QtCore.QMetaObject.connectSlotsByName(Dialog)
|
|
Dialog.setTabOrder(self.book_title, self.book_signature)
|
|
Dialog.setTabOrder(self.book_signature, self.btn_save)
|
|
Dialog.setTabOrder(self.btn_save, self.btn_cancel)
|
|
|
|
def retranslateUi(self, Dialog):
|
|
_translate = QtCore.QCoreApplication.translate
|
|
Dialog.setWindowTitle(_translate("Dialog", "Dialog"))
|
|
self.label_2.setText(_translate("Dialog", "Signatur"))
|
|
self.label.setText(_translate("Dialog", "Titel"))
|
|
self.btn_save.setText(_translate("Dialog", "Speichern"))
|
|
self.btn_cancel.setText(_translate("Dialog", "Abbrechen"))
|