src/eric7/UI/Ui_ErrorLogDialog.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/UI/ErrorLogDialog.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_ErrorLogDialog(object):
13 def setupUi(self, ErrorLogDialog):
14 ErrorLogDialog.setObjectName("ErrorLogDialog")
15 ErrorLogDialog.resize(500, 350)
16 ErrorLogDialog.setSizeGripEnabled(True)
17 self.verticalLayout = QtWidgets.QVBoxLayout(ErrorLogDialog)
18 self.verticalLayout.setObjectName("verticalLayout")
19 self.horizontalLayout = QtWidgets.QHBoxLayout()
20 self.horizontalLayout.setObjectName("horizontalLayout")
21 self.icon = QtWidgets.QLabel(parent=ErrorLogDialog)
22 self.icon.setObjectName("icon")
23 self.horizontalLayout.addWidget(self.icon)
24 self.label = QtWidgets.QLabel(parent=ErrorLogDialog)
25 sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Preferred)
26 sizePolicy.setHorizontalStretch(0)
27 sizePolicy.setVerticalStretch(0)
28 sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth())
29 self.label.setSizePolicy(sizePolicy)
30 self.label.setObjectName("label")
31 self.horizontalLayout.addWidget(self.label)
32 self.verticalLayout.addLayout(self.horizontalLayout)
33 self.logEdit = QtWidgets.QPlainTextEdit(parent=ErrorLogDialog)
34 self.logEdit.setReadOnly(True)
35 self.logEdit.setObjectName("logEdit")
36 self.verticalLayout.addWidget(self.logEdit)
37 self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
38 self.horizontalLayout_2.setObjectName("horizontalLayout_2")
39 self.emailButton = QtWidgets.QPushButton(parent=ErrorLogDialog)
40 self.emailButton.setDefault(True)
41 self.emailButton.setObjectName("emailButton")
42 self.horizontalLayout_2.addWidget(self.emailButton)
43 self.deleteButton = QtWidgets.QPushButton(parent=ErrorLogDialog)
44 self.deleteButton.setObjectName("deleteButton")
45 self.horizontalLayout_2.addWidget(self.deleteButton)
46 self.keepButton = QtWidgets.QPushButton(parent=ErrorLogDialog)
47 self.keepButton.setObjectName("keepButton")
48 self.horizontalLayout_2.addWidget(self.keepButton)
49 self.verticalLayout.addLayout(self.horizontalLayout_2)
50
51 self.retranslateUi(ErrorLogDialog)
52 QtCore.QMetaObject.connectSlotsByName(ErrorLogDialog)
53 ErrorLogDialog.setTabOrder(self.logEdit, self.emailButton)
54 ErrorLogDialog.setTabOrder(self.emailButton, self.deleteButton)
55 ErrorLogDialog.setTabOrder(self.deleteButton, self.keepButton)
56
57 def retranslateUi(self, ErrorLogDialog):
58 _translate = QtCore.QCoreApplication.translate
59 ErrorLogDialog.setWindowTitle(_translate("ErrorLogDialog", "Error Log Found"))
60 self.label.setText(_translate("ErrorLogDialog", "<b>An error log file was found. What should be done with it?</b>"))
61 self.emailButton.setToolTip(_translate("ErrorLogDialog", "Press to send an email"))
62 self.emailButton.setText(_translate("ErrorLogDialog", "Send Bug Email"))
63 self.deleteButton.setToolTip(_translate("ErrorLogDialog", "Press to ignore the error and delete the log file"))
64 self.deleteButton.setText(_translate("ErrorLogDialog", "Ignore and Delete"))
65 self.keepButton.setToolTip(_translate("ErrorLogDialog", "Press to ignore the error but keep the log file"))
66 self.keepButton.setText(_translate("ErrorLogDialog", "Ignore but Keep"))

eric ide

mercurial