src/eric7/UI/Ui_DeleteFilesConfirmationDialog.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/DeleteFilesConfirmationDialog.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_DeleteFilesConfirmationDialog(object):
13 def setupUi(self, DeleteFilesConfirmationDialog):
14 DeleteFilesConfirmationDialog.setObjectName("DeleteFilesConfirmationDialog")
15 DeleteFilesConfirmationDialog.resize(500, 350)
16 DeleteFilesConfirmationDialog.setWindowTitle("")
17 DeleteFilesConfirmationDialog.setSizeGripEnabled(True)
18 self.vboxlayout = QtWidgets.QVBoxLayout(DeleteFilesConfirmationDialog)
19 self.vboxlayout.setObjectName("vboxlayout")
20 self.message = QtWidgets.QLabel(parent=DeleteFilesConfirmationDialog)
21 self.message.setAlignment(QtCore.Qt.AlignmentFlag.AlignVCenter)
22 self.message.setWordWrap(True)
23 self.message.setObjectName("message")
24 self.vboxlayout.addWidget(self.message)
25 self.label = QtWidgets.QLabel(parent=DeleteFilesConfirmationDialog)
26 self.label.setWordWrap(True)
27 self.label.setObjectName("label")
28 self.vboxlayout.addWidget(self.label)
29 self.filesList = QtWidgets.QListWidget(parent=DeleteFilesConfirmationDialog)
30 self.filesList.setFocusPolicy(QtCore.Qt.FocusPolicy.NoFocus)
31 self.filesList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.NoSelection)
32 self.filesList.setObjectName("filesList")
33 self.vboxlayout.addWidget(self.filesList)
34 self.buttonBox = QtWidgets.QDialogButtonBox(parent=DeleteFilesConfirmationDialog)
35 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
36 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.No|QtWidgets.QDialogButtonBox.StandardButton.Yes)
37 self.buttonBox.setObjectName("buttonBox")
38 self.vboxlayout.addWidget(self.buttonBox)
39
40 self.retranslateUi(DeleteFilesConfirmationDialog)
41 QtCore.QMetaObject.connectSlotsByName(DeleteFilesConfirmationDialog)
42
43 def retranslateUi(self, DeleteFilesConfirmationDialog):
44 _translate = QtCore.QCoreApplication.translate
45 self.message.setText(_translate("DeleteFilesConfirmationDialog", "Dummy"))
46 self.label.setText(_translate("DeleteFilesConfirmationDialog", "<font color=\"#FF0000\"><b>WARNING:</b> This operation is not reversible!</font>"))

eric ide

mercurial