src/eric7/Project/Ui_AddFoundFilesDialog.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/Project/AddFoundFilesDialog.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_AddFoundFilesDialog(object):
13 def setupUi(self, AddFoundFilesDialog):
14 AddFoundFilesDialog.setObjectName("AddFoundFilesDialog")
15 AddFoundFilesDialog.resize(600, 480)
16 AddFoundFilesDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(AddFoundFilesDialog)
18 self.vboxlayout.setObjectName("vboxlayout")
19 self.fileList = QtWidgets.QListWidget(parent=AddFoundFilesDialog)
20 self.fileList.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarPolicy.ScrollBarAlwaysOn)
21 self.fileList.setAlternatingRowColors(True)
22 self.fileList.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
23 self.fileList.setSelectionBehavior(QtWidgets.QAbstractItemView.SelectionBehavior.SelectRows)
24 self.fileList.setObjectName("fileList")
25 self.vboxlayout.addWidget(self.fileList)
26 self.buttonBox = QtWidgets.QDialogButtonBox(parent=AddFoundFilesDialog)
27 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
28 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel)
29 self.buttonBox.setObjectName("buttonBox")
30 self.vboxlayout.addWidget(self.buttonBox)
31
32 self.retranslateUi(AddFoundFilesDialog)
33 self.buttonBox.rejected.connect(AddFoundFilesDialog.reject) # type: ignore
34 QtCore.QMetaObject.connectSlotsByName(AddFoundFilesDialog)
35
36 def retranslateUi(self, AddFoundFilesDialog):
37 _translate = QtCore.QCoreApplication.translate
38 AddFoundFilesDialog.setWindowTitle(_translate("AddFoundFilesDialog", "Add found files to project"))
39 AddFoundFilesDialog.setToolTip(_translate("AddFoundFilesDialog", "Adds the found files to the current project."))
40 self.fileList.setToolTip(_translate("AddFoundFilesDialog", "List of found files."))
41 self.fileList.setSortingEnabled(True)

eric ide

mercurial