RefactoringRope/Ui_MatchesDialog.py

branch
eric7
changeset 422
f98253eed7f0
child 423
9dfc89a5aadf
equal deleted inserted replaced
421:e3167d354ab6 422:f98253eed7f0
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/MatchesDialog.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.3.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_MatchesDialog(object):
13 def setupUi(self, MatchesDialog):
14 MatchesDialog.setObjectName("MatchesDialog")
15 MatchesDialog.resize(649, 480)
16 MatchesDialog.setSizeGripEnabled(True)
17 self.vboxlayout = QtWidgets.QVBoxLayout(MatchesDialog)
18 self.vboxlayout.setProperty("margin", 6)
19 self.vboxlayout.setContentsMargins(6, 6, 6, 6)
20 self.vboxlayout.setSpacing(6)
21 self.vboxlayout.setObjectName("vboxlayout")
22 self.matchesList = QtWidgets.QTreeWidget(MatchesDialog)
23 self.matchesList.setAlternatingRowColors(True)
24 self.matchesList.setRootIsDecorated(False)
25 self.matchesList.setItemsExpandable(False)
26 self.matchesList.setObjectName("matchesList")
27 self.vboxlayout.addWidget(self.matchesList)
28 self.buttonBox = QtWidgets.QDialogButtonBox(MatchesDialog)
29 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
30 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
31 self.buttonBox.setObjectName("buttonBox")
32 self.vboxlayout.addWidget(self.buttonBox)
33
34 self.retranslateUi(MatchesDialog)
35 self.buttonBox.rejected.connect(MatchesDialog.reject) # type: ignore
36 self.buttonBox.accepted.connect(MatchesDialog.accept) # type: ignore
37 QtCore.QMetaObject.connectSlotsByName(MatchesDialog)
38
39 def retranslateUi(self, MatchesDialog):
40 _translate = QtCore.QCoreApplication.translate
41 MatchesDialog.setWindowTitle(_translate("MatchesDialog", "Refactoring Matches"))
42 self.matchesList.setSortingEnabled(True)
43 self.matchesList.headerItem().setText(0, _translate("MatchesDialog", "Filename"))
44 self.matchesList.headerItem().setText(1, _translate("MatchesDialog", "Line"))
45 self.matchesList.headerItem().setText(2, _translate("MatchesDialog", "Confidence"))
46
47
48 if __name__ == "__main__":
49 import sys
50 app = QtWidgets.QApplication(sys.argv)
51 MatchesDialog = QtWidgets.QDialog()
52 ui = Ui_MatchesDialog()
53 ui.setupUi(MatchesDialog)
54 MatchesDialog.show()
55 sys.exit(app.exec())

eric ide

mercurial