src/eric7/EricNetwork/Ui_EricSslCertificateSelectionDialog.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/EricNetwork/EricSslCertificateSelectionDialog.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.7.0
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_EricSslCertificateSelectionDialog(object):
13 def setupUi(self, EricSslCertificateSelectionDialog):
14 EricSslCertificateSelectionDialog.setObjectName("EricSslCertificateSelectionDialog")
15 EricSslCertificateSelectionDialog.resize(760, 440)
16 EricSslCertificateSelectionDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(EricSslCertificateSelectionDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.label = QtWidgets.QLabel(parent=EricSslCertificateSelectionDialog)
20 self.label.setObjectName("label")
21 self.verticalLayout.addWidget(self.label)
22 self.certificatesTree = QtWidgets.QTreeWidget(parent=EricSslCertificateSelectionDialog)
23 self.certificatesTree.setObjectName("certificatesTree")
24 self.verticalLayout.addWidget(self.certificatesTree)
25 self.horizontalLayout = QtWidgets.QHBoxLayout()
26 self.horizontalLayout.setObjectName("horizontalLayout")
27 self.viewButton = QtWidgets.QPushButton(parent=EricSslCertificateSelectionDialog)
28 self.viewButton.setEnabled(False)
29 self.viewButton.setObjectName("viewButton")
30 self.horizontalLayout.addWidget(self.viewButton)
31 spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
32 self.horizontalLayout.addItem(spacerItem)
33 self.verticalLayout.addLayout(self.horizontalLayout)
34 self.buttonBox = QtWidgets.QDialogButtonBox(parent=EricSslCertificateSelectionDialog)
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
37 self.buttonBox.setObjectName("buttonBox")
38 self.verticalLayout.addWidget(self.buttonBox)
39
40 self.retranslateUi(EricSslCertificateSelectionDialog)
41 self.buttonBox.accepted.connect(EricSslCertificateSelectionDialog.accept) # type: ignore
42 self.buttonBox.rejected.connect(EricSslCertificateSelectionDialog.reject) # type: ignore
43 QtCore.QMetaObject.connectSlotsByName(EricSslCertificateSelectionDialog)
44
45 def retranslateUi(self, EricSslCertificateSelectionDialog):
46 _translate = QtCore.QCoreApplication.translate
47 EricSslCertificateSelectionDialog.setWindowTitle(_translate("EricSslCertificateSelectionDialog", "SSL Certificate Selection"))
48 self.label.setText(_translate("EricSslCertificateSelectionDialog", "Select a SSL certificate:"))
49 self.certificatesTree.headerItem().setText(0, _translate("EricSslCertificateSelectionDialog", "Certificate name"))
50 self.certificatesTree.headerItem().setText(1, _translate("EricSslCertificateSelectionDialog", "Expiry Date"))
51 self.viewButton.setToolTip(_translate("EricSslCertificateSelectionDialog", "Press to view the selected certificate"))
52 self.viewButton.setText(_translate("EricSslCertificateSelectionDialog", "&View..."))

eric ide

mercurial