1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/InlineArgumentDefaultDialog.ui' |
1 # Form implementation generated from reading ui file 'RefactoringRope/InlineArgumentDefaultDialog.ui' |
2 # |
2 # |
3 # Created by: PyQt6 UI code generator 6.3.1 |
3 # Created by: PyQt6 UI code generator 6.7.1 |
4 # |
4 # |
5 # WARNING: Any manual changes made to this file will be lost when pyuic6 is |
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. |
6 # run again. Do not edit this file unless you know what you are doing. |
7 |
7 |
8 |
8 |
16 InlineArgumentDefaultDialog.setSizeGripEnabled(True) |
16 InlineArgumentDefaultDialog.setSizeGripEnabled(True) |
17 self.vboxlayout = QtWidgets.QVBoxLayout(InlineArgumentDefaultDialog) |
17 self.vboxlayout = QtWidgets.QVBoxLayout(InlineArgumentDefaultDialog) |
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
19 self.vboxlayout.setSpacing(6) |
19 self.vboxlayout.setSpacing(6) |
20 self.vboxlayout.setObjectName("vboxlayout") |
20 self.vboxlayout.setObjectName("vboxlayout") |
21 self.label = QtWidgets.QLabel(InlineArgumentDefaultDialog) |
21 self.label = QtWidgets.QLabel(parent=InlineArgumentDefaultDialog) |
22 self.label.setObjectName("label") |
22 self.label.setObjectName("label") |
23 self.vboxlayout.addWidget(self.label) |
23 self.vboxlayout.addWidget(self.label) |
24 self.parameterList = QtWidgets.QListWidget(InlineArgumentDefaultDialog) |
24 self.parameterList = QtWidgets.QListWidget(parent=InlineArgumentDefaultDialog) |
25 self.parameterList.setObjectName("parameterList") |
25 self.parameterList.setObjectName("parameterList") |
26 self.vboxlayout.addWidget(self.parameterList) |
26 self.vboxlayout.addWidget(self.parameterList) |
27 self.buttonBox = QtWidgets.QDialogButtonBox(InlineArgumentDefaultDialog) |
27 self.buttonBox = QtWidgets.QDialogButtonBox(parent=InlineArgumentDefaultDialog) |
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
30 self.buttonBox.setObjectName("buttonBox") |
30 self.buttonBox.setObjectName("buttonBox") |
31 self.vboxlayout.addWidget(self.buttonBox) |
31 self.vboxlayout.addWidget(self.buttonBox) |
32 |
32 |
37 |
37 |
38 def retranslateUi(self, InlineArgumentDefaultDialog): |
38 def retranslateUi(self, InlineArgumentDefaultDialog): |
39 _translate = QtCore.QCoreApplication.translate |
39 _translate = QtCore.QCoreApplication.translate |
40 InlineArgumentDefaultDialog.setWindowTitle(_translate("InlineArgumentDefaultDialog", "Inline Argument Default")) |
40 InlineArgumentDefaultDialog.setWindowTitle(_translate("InlineArgumentDefaultDialog", "Inline Argument Default")) |
41 self.label.setText(_translate("InlineArgumentDefaultDialog", "Choose which to inline:")) |
41 self.label.setText(_translate("InlineArgumentDefaultDialog", "Choose which to inline:")) |
42 |
|
43 |
|
44 if __name__ == "__main__": |
|
45 import sys |
|
46 app = QtWidgets.QApplication(sys.argv) |
|
47 InlineArgumentDefaultDialog = QtWidgets.QDialog() |
|
48 ui = Ui_InlineArgumentDefaultDialog() |
|
49 ui.setupUi(InlineArgumentDefaultDialog) |
|
50 InlineArgumentDefaultDialog.show() |
|
51 sys.exit(app.exec()) |
|