-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDialogWindow.py
More file actions
77 lines (58 loc) · 3 KB
/
DialogWindow.py
File metadata and controls
77 lines (58 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# -*- coding: utf-8 -*-
################################################################################
## Form generated from reading UI file 'dialogwindow.ui'
##
## Created by: Qt User Interface Compiler version 6.3.1
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
from PySide6.QtCore import (QCoreApplication, QDate, QDateTime, QLocale,
QMetaObject, QObject, QPoint, QRect,
QSize, QTime, QUrl, Qt)
from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
QFont, QFontDatabase, QGradient, QIcon,
QImage, QKeySequence, QLinearGradient, QPainter,
QPalette, QPixmap, QRadialGradient, QTransform)
from PySide6.QtWidgets import (QAbstractButton, QApplication, QDialogButtonBox, QGroupBox,
QHBoxLayout, QLabel, QLineEdit, QSizePolicy,
QVBoxLayout, QWidget)
class Ui_DialogWindow(object):
def setupUi(self, DialogWindow):
if not DialogWindow.objectName():
DialogWindow.setObjectName(u"DialogWindow")
DialogWindow.resize(309, 155)
self.horizontalLayout = QHBoxLayout(DialogWindow)
self.horizontalLayout.setObjectName(u"horizontalLayout")
self.groupBox = QGroupBox(DialogWindow)
self.groupBox.setObjectName(u"groupBox")
self.verticalLayout = QVBoxLayout(self.groupBox)
self.verticalLayout.setObjectName(u"verticalLayout")
self.verticalLayout_2 = QVBoxLayout()
self.verticalLayout_2.setObjectName(u"verticalLayout_2")
self.nameBox = QLabel(self.groupBox)
self.nameBox.setObjectName(u"nameBox")
self.verticalLayout_2.addWidget(self.nameBox)
self.nameLine = QLineEdit(self.groupBox)
self.nameLine.setObjectName(u"nameLine")
self.verticalLayout_2.addWidget(self.nameLine)
self.passwdLine = QLineEdit(self.groupBox)
self.passwdLine.setObjectName(u"passwdLine")
self.passwdLine.setEchoMode(QLineEdit.Password)
self.verticalLayout_2.addWidget(self.passwdLine)
self.dialogBox = QDialogButtonBox(self.groupBox)
self.dialogBox.setObjectName(u"dialogBox")
self.dialogBox.setStandardButtons(QDialogButtonBox.Cancel|QDialogButtonBox.Ok)
self.dialogBox.setCenterButtons(False)
self.verticalLayout_2.addWidget(self.dialogBox)
self.verticalLayout.addLayout(self.verticalLayout_2)
self.horizontalLayout.addWidget(self.groupBox)
self.retranslateUi(DialogWindow)
QMetaObject.connectSlotsByName(DialogWindow)
# setupUi
def retranslateUi(self, DialogWindow):
DialogWindow.setWindowTitle("")
self.groupBox.setTitle(QCoreApplication.translate("DialogWindow", u"Login Daten", None))
self.nameBox.setText("")
self.nameLine.setPlaceholderText(QCoreApplication.translate("DialogWindow", u"Nutzername", None))
self.passwdLine.setPlaceholderText(QCoreApplication.translate("DialogWindow", u"Passwort", None))
# retranslateUi