RefactoringRope/Ui_MatchesDialog.py

Tue, 10 Dec 2024 15:49:01 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 10 Dec 2024 15:49:01 +0100
branch
eric7
changeset 426
7592a1c052e8
parent 423
9dfc89a5aadf
permissions
-rw-r--r--

Updated copyright for 2025.

# Form implementation generated from reading ui file 'RefactoringRope/MatchesDialog.ui'
#
# Created by: PyQt6 UI code generator 6.7.1
#
# WARNING: Any manual changes made to this file will be lost when pyuic6 is
# run again.  Do not edit this file unless you know what you are doing.


from PyQt6 import QtCore, QtGui, QtWidgets


class Ui_MatchesDialog(object):
    def setupUi(self, MatchesDialog):
        MatchesDialog.setObjectName("MatchesDialog")
        MatchesDialog.resize(649, 480)
        MatchesDialog.setSizeGripEnabled(True)
        self.vboxlayout = QtWidgets.QVBoxLayout(MatchesDialog)
        self.vboxlayout.setProperty("margin", 6)
        self.vboxlayout.setContentsMargins(6, 6, 6, 6)
        self.vboxlayout.setSpacing(6)
        self.vboxlayout.setObjectName("vboxlayout")
        self.matchesList = QtWidgets.QTreeWidget(parent=MatchesDialog)
        self.matchesList.setAlternatingRowColors(True)
        self.matchesList.setRootIsDecorated(False)
        self.matchesList.setItemsExpandable(False)
        self.matchesList.setObjectName("matchesList")
        self.vboxlayout.addWidget(self.matchesList)
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=MatchesDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
        self.buttonBox.setObjectName("buttonBox")
        self.vboxlayout.addWidget(self.buttonBox)

        self.retranslateUi(MatchesDialog)
        self.buttonBox.rejected.connect(MatchesDialog.reject) # type: ignore
        self.buttonBox.accepted.connect(MatchesDialog.accept) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(MatchesDialog)

    def retranslateUi(self, MatchesDialog):
        _translate = QtCore.QCoreApplication.translate
        MatchesDialog.setWindowTitle(_translate("MatchesDialog", "Refactoring Matches"))
        self.matchesList.setSortingEnabled(True)
        self.matchesList.headerItem().setText(0, _translate("MatchesDialog", "Filename"))
        self.matchesList.headerItem().setText(1, _translate("MatchesDialog", "Line"))
        self.matchesList.headerItem().setText(2, _translate("MatchesDialog", "Confidence"))

eric ide

mercurial