src/eric7/Preferences/ConfigurationPages/Ui_EditorCalltipsQScintillaPage.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
diff -r 7aa41173b44b -r 5d3a5a05114e src/eric7/Preferences/ConfigurationPages/Ui_EditorCalltipsQScintillaPage.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/eric7/Preferences/ConfigurationPages/Ui_EditorCalltipsQScintillaPage.py	Fri Jun 07 10:05:06 2024 +0200
@@ -0,0 +1,68 @@
+# Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui'
+#
+# Created by: PyQt6 UI code generator 6.7.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_EditorCalltipsQScintillaPage(object):
+    def setupUi(self, EditorCalltipsQScintillaPage):
+        EditorCalltipsQScintillaPage.setObjectName("EditorCalltipsQScintillaPage")
+        EditorCalltipsQScintillaPage.resize(406, 262)
+        self.vboxlayout = QtWidgets.QVBoxLayout(EditorCalltipsQScintillaPage)
+        self.vboxlayout.setObjectName("vboxlayout")
+        self.headerLabel = QtWidgets.QLabel(parent=EditorCalltipsQScintillaPage)
+        self.headerLabel.setObjectName("headerLabel")
+        self.vboxlayout.addWidget(self.headerLabel)
+        self.line18 = QtWidgets.QFrame(parent=EditorCalltipsQScintillaPage)
+        self.line18.setFrameShape(QtWidgets.QFrame.Shape.HLine)
+        self.line18.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
+        self.line18.setFrameShape(QtWidgets.QFrame.Shape.HLine)
+        self.line18.setObjectName("line18")
+        self.vboxlayout.addWidget(self.line18)
+        self.groupBox = QtWidgets.QGroupBox(parent=EditorCalltipsQScintillaPage)
+        self.groupBox.setObjectName("groupBox")
+        self.vboxlayout1 = QtWidgets.QVBoxLayout(self.groupBox)
+        self.vboxlayout1.setObjectName("vboxlayout1")
+        self.ctNoContextButton = QtWidgets.QRadioButton(parent=self.groupBox)
+        self.ctNoContextButton.setObjectName("ctNoContextButton")
+        self.vboxlayout1.addWidget(self.ctNoContextButton)
+        self.ctNoAutoCompletionButton = QtWidgets.QRadioButton(parent=self.groupBox)
+        self.ctNoAutoCompletionButton.setObjectName("ctNoAutoCompletionButton")
+        self.vboxlayout1.addWidget(self.ctNoAutoCompletionButton)
+        self.ctContextButton = QtWidgets.QRadioButton(parent=self.groupBox)
+        self.ctContextButton.setObjectName("ctContextButton")
+        self.vboxlayout1.addWidget(self.ctContextButton)
+        self.line = QtWidgets.QFrame(parent=self.groupBox)
+        self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine)
+        self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
+        self.line.setObjectName("line")
+        self.vboxlayout1.addWidget(self.line)
+        self.label = QtWidgets.QLabel(parent=self.groupBox)
+        self.label.setWordWrap(True)
+        self.label.setObjectName("label")
+        self.vboxlayout1.addWidget(self.label)
+        self.vboxlayout.addWidget(self.groupBox)
+        spacerItem = QtWidgets.QSpacerItem(388, 20, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
+        self.vboxlayout.addItem(spacerItem)
+
+        self.retranslateUi(EditorCalltipsQScintillaPage)
+        QtCore.QMetaObject.connectSlotsByName(EditorCalltipsQScintillaPage)
+        EditorCalltipsQScintillaPage.setTabOrder(self.ctNoContextButton, self.ctNoAutoCompletionButton)
+        EditorCalltipsQScintillaPage.setTabOrder(self.ctNoAutoCompletionButton, self.ctContextButton)
+
+    def retranslateUi(self, EditorCalltipsQScintillaPage):
+        _translate = QtCore.QCoreApplication.translate
+        self.headerLabel.setText(_translate("EditorCalltipsQScintillaPage", "<b>Configure QScintilla Calltips</b>"))
+        self.groupBox.setTitle(_translate("EditorCalltipsQScintillaPage", "Context display options"))
+        self.ctNoContextButton.setToolTip(_translate("EditorCalltipsQScintillaPage", "Select to display calltips without a context"))
+        self.ctNoContextButton.setText(_translate("EditorCalltipsQScintillaPage", "Don\'t show context information"))
+        self.ctNoAutoCompletionButton.setToolTip(_translate("EditorCalltipsQScintillaPage", "Select to display calltips with a context only if the user hasn\'t already implicitly identified the context using autocompletion"))
+        self.ctNoAutoCompletionButton.setText(_translate("EditorCalltipsQScintillaPage", "Show context information, if no prior autocompletion"))
+        self.ctContextButton.setToolTip(_translate("EditorCalltipsQScintillaPage", "Select to display calltips with a context"))
+        self.ctContextButton.setText(_translate("EditorCalltipsQScintillaPage", "Show context information"))
+        self.label.setText(_translate("EditorCalltipsQScintillaPage", "A context is any scope (e.g. a C++ namespace or a Python module) prior to the function/method name."))

eric ide

mercurial