src/eric7/Preferences/ConfigurationPages/Ui_EditorCalltipsQScintillaPage.py

Sat, 26 Apr 2025 12:34:32 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 26 Apr 2025 12:34:32 +0200
branch
eric7
changeset 11240
c48c615c04a3
parent 10745
2921faddeaec
permissions
-rw-r--r--

MicroPython
- Added a configuration option to disable the support for the no longer produced Pimoroni Pico Wireless Pack.

# Form implementation generated from reading ui file '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