src/eric7/WebBrowser/WebAuth/Ui_Fido2InfoDialog.py

branch
eric7
changeset 10856
b19cefceca15
equal deleted inserted replaced
10855:9082eb8f6571 10856:b19cefceca15
1 # Form implementation generated from reading ui file 'src/eric7/WebBrowser/WebAuth/Fido2InfoDialog.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.7.1
4 #
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is
6 # run again. Do not edit this file unless you know what you are doing.
7
8
9 from PyQt6 import QtCore, QtGui, QtWidgets
10
11
12 class Ui_Fido2InfoDialog(object):
13 def setupUi(self, Fido2InfoDialog):
14 Fido2InfoDialog.setObjectName("Fido2InfoDialog")
15 Fido2InfoDialog.resize(600, 700)
16 Fido2InfoDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(Fido2InfoDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.headerLabel = QtWidgets.QLabel(parent=Fido2InfoDialog)
20 self.headerLabel.setText("Header")
21 self.headerLabel.setAlignment(QtCore.Qt.AlignmentFlag.AlignCenter)
22 self.headerLabel.setObjectName("headerLabel")
23 self.verticalLayout.addWidget(self.headerLabel)
24 self.infoWidget = QtWidgets.QTreeWidget(parent=Fido2InfoDialog)
25 self.infoWidget.setAlternatingRowColors(True)
26 self.infoWidget.setColumnCount(2)
27 self.infoWidget.setObjectName("infoWidget")
28 self.infoWidget.headerItem().setText(0, "1")
29 self.infoWidget.headerItem().setText(1, "2")
30 self.infoWidget.header().setVisible(False)
31 self.verticalLayout.addWidget(self.infoWidget)
32 self.buttonBox = QtWidgets.QDialogButtonBox(parent=Fido2InfoDialog)
33 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
34 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
35 self.buttonBox.setObjectName("buttonBox")
36 self.verticalLayout.addWidget(self.buttonBox)
37
38 self.retranslateUi(Fido2InfoDialog)
39 self.buttonBox.accepted.connect(Fido2InfoDialog.accept) # type: ignore
40 self.buttonBox.rejected.connect(Fido2InfoDialog.reject) # type: ignore
41 QtCore.QMetaObject.connectSlotsByName(Fido2InfoDialog)
42
43 def retranslateUi(self, Fido2InfoDialog):
44 _translate = QtCore.QCoreApplication.translate
45 Fido2InfoDialog.setWindowTitle(_translate("Fido2InfoDialog", "Security Key Information"))

eric ide

mercurial