diff -r 02171512ef2f -r d4384e4d7aff ExtensionCorba/ConfigurationPage/Ui_CorbaPage.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ExtensionCorba/ConfigurationPage/Ui_CorbaPage.py Wed Nov 30 17:56:36 2022 +0100 @@ -0,0 +1,61 @@ +# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Extension_Corba/ExtensionCorba/ConfigurationPage/CorbaPage.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_CorbaPage(object): + def setupUi(self, CorbaPage): + CorbaPage.setObjectName("CorbaPage") + CorbaPage.resize(589, 301) + self.vboxlayout = QtWidgets.QVBoxLayout(CorbaPage) + self.vboxlayout.setObjectName("vboxlayout") + self.headerLabel = QtWidgets.QLabel(CorbaPage) + self.headerLabel.setObjectName("headerLabel") + self.vboxlayout.addWidget(self.headerLabel) + self.line13 = QtWidgets.QFrame(CorbaPage) + self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine) + self.line13.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) + self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine) + self.line13.setObjectName("line13") + self.vboxlayout.addWidget(self.line13) + self.groupBox = QtWidgets.QGroupBox(CorbaPage) + self.groupBox.setObjectName("groupBox") + self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox) + self.verticalLayout.setObjectName("verticalLayout") + self.idlPicker = EricPathPicker(self.groupBox) + self.idlPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus) + self.idlPicker.setObjectName("idlPicker") + self.verticalLayout.addWidget(self.idlPicker) + self.textLabel1_4 = QtWidgets.QLabel(self.groupBox) + self.textLabel1_4.setObjectName("textLabel1_4") + self.verticalLayout.addWidget(self.textLabel1_4) + self.vboxlayout.addWidget(self.groupBox) + spacerItem = QtWidgets.QSpacerItem(20, 81, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) + self.vboxlayout.addItem(spacerItem) + + self.retranslateUi(CorbaPage) + QtCore.QMetaObject.connectSlotsByName(CorbaPage) + + def retranslateUi(self, CorbaPage): + _translate = QtCore.QCoreApplication.translate + self.headerLabel.setText(_translate("CorbaPage", "<b>Configure CORBA support</b>")) + self.groupBox.setTitle(_translate("CorbaPage", "IDL Compiler")) + self.idlPicker.setToolTip(_translate("CorbaPage", "Enter the path to the IDL compiler.")) + self.textLabel1_4.setText(_translate("CorbaPage", "<b>Note:</b> Leave this entry empty to use the default value (omniidl or omniidl.exe).")) +from eric7.EricWidgets.EricPathPicker import EricPathPicker + + +if __name__ == "__main__": + import sys + app = QtWidgets.QApplication(sys.argv) + CorbaPage = QtWidgets.QWidget() + ui = Ui_CorbaPage() + ui.setupUi(CorbaPage) + CorbaPage.show() + sys.exit(app.exec())