src/eric7/Preferences/ConfigurationPages/Ui_EditorCalltipsQScintillaPage.py

branch
eric7
changeset 10743
5d3a5a05114e
child 10745
2921faddeaec
equal deleted inserted replaced
10742:7aa41173b44b 10743:5d3a5a05114e
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ConfigurationPages/EditorCalltipsQScintillaPage.ui'
2 #
3 # Created by: PyQt6 UI code generator 6.7.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_EditorCalltipsQScintillaPage(object):
13 def setupUi(self, EditorCalltipsQScintillaPage):
14 EditorCalltipsQScintillaPage.setObjectName("EditorCalltipsQScintillaPage")
15 EditorCalltipsQScintillaPage.resize(406, 262)
16 self.vboxlayout = QtWidgets.QVBoxLayout(EditorCalltipsQScintillaPage)
17 self.vboxlayout.setObjectName("vboxlayout")
18 self.headerLabel = QtWidgets.QLabel(parent=EditorCalltipsQScintillaPage)
19 self.headerLabel.setObjectName("headerLabel")
20 self.vboxlayout.addWidget(self.headerLabel)
21 self.line18 = QtWidgets.QFrame(parent=EditorCalltipsQScintillaPage)
22 self.line18.setFrameShape(QtWidgets.QFrame.Shape.HLine)
23 self.line18.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
24 self.line18.setFrameShape(QtWidgets.QFrame.Shape.HLine)
25 self.line18.setObjectName("line18")
26 self.vboxlayout.addWidget(self.line18)
27 self.groupBox = QtWidgets.QGroupBox(parent=EditorCalltipsQScintillaPage)
28 self.groupBox.setObjectName("groupBox")
29 self.vboxlayout1 = QtWidgets.QVBoxLayout(self.groupBox)
30 self.vboxlayout1.setObjectName("vboxlayout1")
31 self.ctNoContextButton = QtWidgets.QRadioButton(parent=self.groupBox)
32 self.ctNoContextButton.setObjectName("ctNoContextButton")
33 self.vboxlayout1.addWidget(self.ctNoContextButton)
34 self.ctNoAutoCompletionButton = QtWidgets.QRadioButton(parent=self.groupBox)
35 self.ctNoAutoCompletionButton.setObjectName("ctNoAutoCompletionButton")
36 self.vboxlayout1.addWidget(self.ctNoAutoCompletionButton)
37 self.ctContextButton = QtWidgets.QRadioButton(parent=self.groupBox)
38 self.ctContextButton.setObjectName("ctContextButton")
39 self.vboxlayout1.addWidget(self.ctContextButton)
40 self.line = QtWidgets.QFrame(parent=self.groupBox)
41 self.line.setFrameShape(QtWidgets.QFrame.Shape.HLine)
42 self.line.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken)
43 self.line.setObjectName("line")
44 self.vboxlayout1.addWidget(self.line)
45 self.label = QtWidgets.QLabel(parent=self.groupBox)
46 self.label.setWordWrap(True)
47 self.label.setObjectName("label")
48 self.vboxlayout1.addWidget(self.label)
49 self.vboxlayout.addWidget(self.groupBox)
50 spacerItem = QtWidgets.QSpacerItem(388, 20, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding)
51 self.vboxlayout.addItem(spacerItem)
52
53 self.retranslateUi(EditorCalltipsQScintillaPage)
54 QtCore.QMetaObject.connectSlotsByName(EditorCalltipsQScintillaPage)
55 EditorCalltipsQScintillaPage.setTabOrder(self.ctNoContextButton, self.ctNoAutoCompletionButton)
56 EditorCalltipsQScintillaPage.setTabOrder(self.ctNoAutoCompletionButton, self.ctContextButton)
57
58 def retranslateUi(self, EditorCalltipsQScintillaPage):
59 _translate = QtCore.QCoreApplication.translate
60 self.headerLabel.setText(_translate("EditorCalltipsQScintillaPage", "<b>Configure QScintilla Calltips</b>"))
61 self.groupBox.setTitle(_translate("EditorCalltipsQScintillaPage", "Context display options"))
62 self.ctNoContextButton.setToolTip(_translate("EditorCalltipsQScintillaPage", "Select to display calltips without a context"))
63 self.ctNoContextButton.setText(_translate("EditorCalltipsQScintillaPage", "Don\'t show context information"))
64 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"))
65 self.ctNoAutoCompletionButton.setText(_translate("EditorCalltipsQScintillaPage", "Show context information, if no prior autocompletion"))
66 self.ctContextButton.setToolTip(_translate("EditorCalltipsQScintillaPage", "Select to display calltips with a context"))
67 self.ctContextButton.setText(_translate("EditorCalltipsQScintillaPage", "Show context information"))
68 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