# -*- coding: utf-8 -*-

################################################################################
## Form generated from reading UI file 'hauptdialog.ui'
##
## Created by: Qt User Interface Compiler version 5.15.2
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################

from PySide2.QtCore import *
from PySide2.QtGui import *
from PySide2.QtWidgets import *


class Ui_Hauptdialog(object):
    def setupUi(self, Hauptdialog):
        if not Hauptdialog.objectName():
            Hauptdialog.setObjectName(u"Hauptdialog")
        Hauptdialog.resize(280, 316)
        self.groupBox = QGroupBox(Hauptdialog)
        self.groupBox.setObjectName(u"groupBox")
        self.groupBox.setGeometry(QRect(30, 20, 241, 171))
        self.verticalLayoutWidget = QWidget(self.groupBox)
        self.verticalLayoutWidget.setObjectName(u"verticalLayoutWidget")
        self.verticalLayoutWidget.setGeometry(QRect(10, 20, 221, 141))
        self.verticalLayout = QVBoxLayout(self.verticalLayoutWidget)
        self.verticalLayout.setObjectName(u"verticalLayout")
        self.verticalLayout.setContentsMargins(0, 0, 0, 0)
        self.horizontalLayout = QHBoxLayout()
        self.horizontalLayout.setObjectName(u"horizontalLayout")
        self.label = QLabel(self.verticalLayoutWidget)
        self.label.setObjectName(u"label")

        self.horizontalLayout.addWidget(self.label)

        self.vorname = QLineEdit(self.verticalLayoutWidget)
        self.vorname.setObjectName(u"vorname")

        self.horizontalLayout.addWidget(self.vorname)


        self.verticalLayout.addLayout(self.horizontalLayout)

        self.horizontalLayout_2 = QHBoxLayout()
        self.horizontalLayout_2.setObjectName(u"horizontalLayout_2")
        self.label_2 = QLabel(self.verticalLayoutWidget)
        self.label_2.setObjectName(u"label_2")

        self.horizontalLayout_2.addWidget(self.label_2)

        self.nachname = QLineEdit(self.verticalLayoutWidget)
        self.nachname.setObjectName(u"nachname")

        self.horizontalLayout_2.addWidget(self.nachname)


        self.verticalLayout.addLayout(self.horizontalLayout_2)

        self.horizontalLayout_3 = QHBoxLayout()
        self.horizontalLayout_3.setObjectName(u"horizontalLayout_3")
        self.label_3 = QLabel(self.verticalLayoutWidget)
        self.label_3.setObjectName(u"label_3")

        self.horizontalLayout_3.addWidget(self.label_3)

        self.geburtsdatum = QSpinBox(self.verticalLayoutWidget)
        self.geburtsdatum.setObjectName(u"geburtsdatum")

        self.horizontalLayout_3.addWidget(self.geburtsdatum)


        self.verticalLayout.addLayout(self.horizontalLayout_3)

        self.horizontalLayout_4 = QHBoxLayout()
        self.horizontalLayout_4.setObjectName(u"horizontalLayout_4")
        self.label_4 = QLabel(self.verticalLayoutWidget)
        self.label_4.setObjectName(u"label_4")

        self.horizontalLayout_4.addWidget(self.label_4)

        self.adresse = QTextEdit(self.verticalLayoutWidget)
        self.adresse.setObjectName(u"adresse")

        self.horizontalLayout_4.addWidget(self.adresse)


        self.verticalLayout.addLayout(self.horizontalLayout_4)

        self.groupBox_2 = QGroupBox(Hauptdialog)
        self.groupBox_2.setObjectName(u"groupBox_2")
        self.groupBox_2.setGeometry(QRect(30, 190, 241, 121))
        self.verticalLayoutWidget_2 = QWidget(self.groupBox_2)
        self.verticalLayoutWidget_2.setObjectName(u"verticalLayoutWidget_2")
        self.verticalLayoutWidget_2.setGeometry(QRect(10, 20, 160, 51))
        self.verticalLayout_2 = QVBoxLayout(self.verticalLayoutWidget_2)
        self.verticalLayout_2.setObjectName(u"verticalLayout_2")
        self.verticalLayout_2.setContentsMargins(0, 0, 0, 0)
        self.agb = QCheckBox(self.verticalLayoutWidget_2)
        self.agb.setObjectName(u"agb")

        self.verticalLayout_2.addWidget(self.agb)

        self.katalog = QCheckBox(self.verticalLayoutWidget_2)
        self.katalog.setObjectName(u"katalog")

        self.verticalLayout_2.addWidget(self.katalog)

        self.horizontalLayoutWidget_5 = QWidget(self.groupBox_2)
        self.horizontalLayoutWidget_5.setObjectName(u"horizontalLayoutWidget_5")
        self.horizontalLayoutWidget_5.setGeometry(QRect(80, 90, 160, 21))
        self.horizontalLayout_5 = QHBoxLayout(self.horizontalLayoutWidget_5)
        self.horizontalLayout_5.setObjectName(u"horizontalLayout_5")
        self.horizontalLayout_5.setContentsMargins(0, 0, 0, 0)
        self.buttonOK = QPushButton(self.horizontalLayoutWidget_5)
        self.buttonOK.setObjectName(u"buttonOK")
        self.buttonOK.setAutoDefault(True)

        self.horizontalLayout_5.addWidget(self.buttonOK)

        self.buttonAbbrechen = QPushButton(self.horizontalLayoutWidget_5)
        self.buttonAbbrechen.setObjectName(u"buttonAbbrechen")

        self.horizontalLayout_5.addWidget(self.buttonAbbrechen)


        self.retranslateUi(Hauptdialog)

        self.buttonOK.setDefault(True)


        QMetaObject.connectSlotsByName(Hauptdialog)
    # setupUi

    def retranslateUi(self, Hauptdialog):
        Hauptdialog.setWindowTitle(QCoreApplication.translate("Hauptdialog", u"Dialog", None))
        self.groupBox.setTitle(QCoreApplication.translate("Hauptdialog", u"Pers\u00f6nliche Daten", None))
        self.label.setText(QCoreApplication.translate("Hauptdialog", u"Vorname", None))
        self.label_2.setText(QCoreApplication.translate("Hauptdialog", u"Nachname", None))
        self.label_3.setText(QCoreApplication.translate("Hauptdialog", u"Geburtsdatum", None))
        self.label_4.setText(QCoreApplication.translate("Hauptdialog", u"Adresse", None))
        self.groupBox_2.setTitle(QCoreApplication.translate("Hauptdialog", u"Weitere Angaben", None))
        self.agb.setText(QCoreApplication.translate("Hauptdialog", u"AGBs gelesen + akzeptiert", None))
        self.katalog.setText(QCoreApplication.translate("Hauptdialog", u"Katalog bestellen", None))
        self.buttonOK.setText(QCoreApplication.translate("Hauptdialog", u"OK", None))
        self.buttonAbbrechen.setText(QCoreApplication.translate("Hauptdialog", u"Abbrechen", None))
    # retranslateUi

