|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/CodeFormatting/FormattingDiffWidget.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_FormattingDiffWidget(object): |
|
13 def setupUi(self, FormattingDiffWidget): |
|
14 FormattingDiffWidget.setObjectName("FormattingDiffWidget") |
|
15 FormattingDiffWidget.resize(700, 700) |
|
16 self.verticalLayout = QtWidgets.QVBoxLayout(FormattingDiffWidget) |
|
17 self.verticalLayout.setObjectName("verticalLayout") |
|
18 self.diffEdit = QtWidgets.QPlainTextEdit(parent=FormattingDiffWidget) |
|
19 self.diffEdit.setLineWrapMode(QtWidgets.QPlainTextEdit.LineWrapMode.NoWrap) |
|
20 self.diffEdit.setReadOnly(True) |
|
21 self.diffEdit.setTabStopDistance(8.0) |
|
22 self.diffEdit.setObjectName("diffEdit") |
|
23 self.verticalLayout.addWidget(self.diffEdit) |
|
24 self.buttonBox = QtWidgets.QDialogButtonBox(parent=FormattingDiffWidget) |
|
25 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) |
|
26 self.buttonBox.setObjectName("buttonBox") |
|
27 self.verticalLayout.addWidget(self.buttonBox) |
|
28 |
|
29 self.retranslateUi(FormattingDiffWidget) |
|
30 self.buttonBox.rejected.connect(FormattingDiffWidget.close) # type: ignore |
|
31 QtCore.QMetaObject.connectSlotsByName(FormattingDiffWidget) |
|
32 |
|
33 def retranslateUi(self, FormattingDiffWidget): |
|
34 _translate = QtCore.QCoreApplication.translate |
|
35 FormattingDiffWidget.setWindowTitle(_translate("FormattingDiffWidget", "Reformatting Differences")) |