|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Refactoring_Rope/RefactoringRope/InlineArgumentDefaultDialog.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_InlineArgumentDefaultDialog(object): |
|
13 def setupUi(self, InlineArgumentDefaultDialog): |
|
14 InlineArgumentDefaultDialog.setObjectName("InlineArgumentDefaultDialog") |
|
15 InlineArgumentDefaultDialog.resize(350, 400) |
|
16 InlineArgumentDefaultDialog.setSizeGripEnabled(True) |
|
17 self.vboxlayout = QtWidgets.QVBoxLayout(InlineArgumentDefaultDialog) |
|
18 self.vboxlayout.setContentsMargins(6, 6, 6, 6) |
|
19 self.vboxlayout.setSpacing(6) |
|
20 self.vboxlayout.setObjectName("vboxlayout") |
|
21 self.label = QtWidgets.QLabel(InlineArgumentDefaultDialog) |
|
22 self.label.setObjectName("label") |
|
23 self.vboxlayout.addWidget(self.label) |
|
24 self.parameterList = QtWidgets.QListWidget(InlineArgumentDefaultDialog) |
|
25 self.parameterList.setObjectName("parameterList") |
|
26 self.vboxlayout.addWidget(self.parameterList) |
|
27 self.buttonBox = QtWidgets.QDialogButtonBox(InlineArgumentDefaultDialog) |
|
28 self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) |
|
29 self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.NoButton|QtWidgets.QDialogButtonBox.StandardButton.Ok) |
|
30 self.buttonBox.setObjectName("buttonBox") |
|
31 self.vboxlayout.addWidget(self.buttonBox) |
|
32 |
|
33 self.retranslateUi(InlineArgumentDefaultDialog) |
|
34 self.buttonBox.rejected.connect(InlineArgumentDefaultDialog.reject) # type: ignore |
|
35 QtCore.QMetaObject.connectSlotsByName(InlineArgumentDefaultDialog) |
|
36 InlineArgumentDefaultDialog.setTabOrder(self.parameterList, self.buttonBox) |
|
37 |
|
38 def retranslateUi(self, InlineArgumentDefaultDialog): |
|
39 _translate = QtCore.QCoreApplication.translate |
|
40 InlineArgumentDefaultDialog.setWindowTitle(_translate("InlineArgumentDefaultDialog", "Inline Argument Default")) |
|
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()) |