ProjectFlask/Ui_FlaskCommandDialog.py

branch
eric7
changeset 85
fcb5126077b1
diff -r f39230b845e4 -r fcb5126077b1 ProjectFlask/Ui_FlaskCommandDialog.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ProjectFlask/Ui_FlaskCommandDialog.py	Mon Oct 28 17:11:28 2024 +0100
@@ -0,0 +1,57 @@
+# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Project_Flask/ProjectFlask/FlaskCommandDialog.ui'
+#
+# Created by: PyQt6 UI code generator 6.4.0
+#
+# 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_FlaskCommandDialog(object):
+    def setupUi(self, FlaskCommandDialog):
+        FlaskCommandDialog.setObjectName("FlaskCommandDialog")
+        FlaskCommandDialog.resize(600, 500)
+        FlaskCommandDialog.setSizeGripEnabled(True)
+        self.verticalLayout_2 = QtWidgets.QVBoxLayout(FlaskCommandDialog)
+        self.verticalLayout_2.setObjectName("verticalLayout_2")
+        self.groupBox = QtWidgets.QGroupBox(FlaskCommandDialog)
+        self.groupBox.setObjectName("groupBox")
+        self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox)
+        self.verticalLayout.setObjectName("verticalLayout")
+        self.outputEdit = QtWidgets.QPlainTextEdit(self.groupBox)
+        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Expanding)
+        sizePolicy.setHorizontalStretch(0)
+        sizePolicy.setVerticalStretch(0)
+        sizePolicy.setHeightForWidth(self.outputEdit.sizePolicy().hasHeightForWidth())
+        self.outputEdit.setSizePolicy(sizePolicy)
+        self.outputEdit.setLineWrapMode(QtWidgets.QPlainTextEdit.LineWrapMode.NoWrap)
+        self.outputEdit.setReadOnly(True)
+        self.outputEdit.setObjectName("outputEdit")
+        self.verticalLayout.addWidget(self.outputEdit)
+        self.verticalLayout_2.addWidget(self.groupBox)
+        self.buttonBox = QtWidgets.QDialogButtonBox(FlaskCommandDialog)
+        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
+        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Close)
+        self.buttonBox.setObjectName("buttonBox")
+        self.verticalLayout_2.addWidget(self.buttonBox)
+
+        self.retranslateUi(FlaskCommandDialog)
+        self.buttonBox.rejected.connect(FlaskCommandDialog.reject) # type: ignore
+        QtCore.QMetaObject.connectSlotsByName(FlaskCommandDialog)
+
+    def retranslateUi(self, FlaskCommandDialog):
+        _translate = QtCore.QCoreApplication.translate
+        FlaskCommandDialog.setWindowTitle(_translate("FlaskCommandDialog", "Flask Command"))
+        self.groupBox.setTitle(_translate("FlaskCommandDialog", "Output"))
+
+
+if __name__ == "__main__":
+    import sys
+    app = QtWidgets.QApplication(sys.argv)
+    FlaskCommandDialog = QtWidgets.QDialog()
+    ui = Ui_FlaskCommandDialog()
+    ui.setupUi(FlaskCommandDialog)
+    FlaskCommandDialog.show()
+    sys.exit(app.exec())

eric ide

mercurial