ExtensionCorba/ConfigurationPage/Ui_CorbaPage.py

changeset 1
d4384e4d7aff
equal deleted inserted replaced
0:02171512ef2f 1:d4384e4d7aff
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_plugins/Plugin_Extension_Corba/ExtensionCorba/ConfigurationPage/CorbaPage.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.4.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_CorbaPage(object):
13 def setupUi(self, CorbaPage):
14 CorbaPage.setObjectName("CorbaPage")
15 CorbaPage.resize(589, 301)
16 self.vboxlayout = QtWidgets.QVBoxLayout(CorbaPage)
17 self.vboxlayout.setObjectName("vboxlayout")
18 self.headerLabel = QtWidgets.QLabel(CorbaPage)
19 self.headerLabel.setObjectName("headerLabel")
20 self.vboxlayout.addWidget(self.headerLabel)
21 self.line13 = QtWidgets.QFrame(CorbaPage)
22 self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine)
23 self.line13.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
24 self.line13.setFrameShape(QtWidgets.QFrame.Shape.HLine)
25 self.line13.setObjectName("line13")
26 self.vboxlayout.addWidget(self.line13)
27 self.groupBox = QtWidgets.QGroupBox(CorbaPage)
28 self.groupBox.setObjectName("groupBox")
29 self.verticalLayout = QtWidgets.QVBoxLayout(self.groupBox)
30 self.verticalLayout.setObjectName("verticalLayout")
31 self.idlPicker = EricPathPicker(self.groupBox)
32 self.idlPicker.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
33 self.idlPicker.setObjectName("idlPicker")
34 self.verticalLayout.addWidget(self.idlPicker)
35 self.textLabel1_4 = QtWidgets.QLabel(self.groupBox)
36 self.textLabel1_4.setObjectName("textLabel1_4")
37 self.verticalLayout.addWidget(self.textLabel1_4)
38 self.vboxlayout.addWidget(self.groupBox)
39 spacerItem = QtWidgets.QSpacerItem(20, 81, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
40 self.vboxlayout.addItem(spacerItem)
41
42 self.retranslateUi(CorbaPage)
43 QtCore.QMetaObject.connectSlotsByName(CorbaPage)
44
45 def retranslateUi(self, CorbaPage):
46 _translate = QtCore.QCoreApplication.translate
47 self.headerLabel.setText(_translate("CorbaPage", "<b>Configure CORBA support</b>"))
48 self.groupBox.setTitle(_translate("CorbaPage", "IDL Compiler"))
49 self.idlPicker.setToolTip(_translate("CorbaPage", "Enter the path to the IDL compiler."))
50 self.textLabel1_4.setText(_translate("CorbaPage", "<b>Note:</b> Leave this entry empty to use the default value (omniidl or omniidl.exe)."))
51 from eric7.EricWidgets.EricPathPicker import EricPathPicker
52
53
54 if __name__ == "__main__":
55 import sys
56 app = QtWidgets.QApplication(sys.argv)
57 CorbaPage = QtWidgets.QWidget()
58 ui = Ui_CorbaPage()
59 ui.setupUi(CorbaPage)
60 CorbaPage.show()
61 sys.exit(app.exec())

eric ide

mercurial