|
1 # Form implementation generated from reading ui file '/home/detlev/Development/Python/Eric/eric7_default/src/eric7/Preferences/ConfigurationPages/EditorAutocompletionQScintillaPage.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_EditorAutocompletionQScintillaPage(object): |
|
13 def setupUi(self, EditorAutocompletionQScintillaPage): |
|
14 EditorAutocompletionQScintillaPage.setObjectName("EditorAutocompletionQScintillaPage") |
|
15 EditorAutocompletionQScintillaPage.resize(506, 177) |
|
16 self.gridLayout = QtWidgets.QGridLayout(EditorAutocompletionQScintillaPage) |
|
17 self.gridLayout.setObjectName("gridLayout") |
|
18 self.headerLabel = QtWidgets.QLabel(parent=EditorAutocompletionQScintillaPage) |
|
19 self.headerLabel.setObjectName("headerLabel") |
|
20 self.gridLayout.addWidget(self.headerLabel, 0, 0, 1, 2) |
|
21 self.line6 = QtWidgets.QFrame(parent=EditorAutocompletionQScintillaPage) |
|
22 self.line6.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
23 self.line6.setFrameShadow(QtWidgets.QFrame.Shadow.Sunken) |
|
24 self.line6.setFrameShape(QtWidgets.QFrame.Shape.HLine) |
|
25 self.line6.setObjectName("line6") |
|
26 self.gridLayout.addWidget(self.line6, 1, 0, 1, 2) |
|
27 self.acShowSingleCheckBox = QtWidgets.QCheckBox(parent=EditorAutocompletionQScintillaPage) |
|
28 self.acShowSingleCheckBox.setObjectName("acShowSingleCheckBox") |
|
29 self.gridLayout.addWidget(self.acShowSingleCheckBox, 2, 0, 1, 1) |
|
30 self.acFillupsCheckBox = QtWidgets.QCheckBox(parent=EditorAutocompletionQScintillaPage) |
|
31 self.acFillupsCheckBox.setObjectName("acFillupsCheckBox") |
|
32 self.gridLayout.addWidget(self.acFillupsCheckBox, 2, 1, 1, 1) |
|
33 self.groupBox = QtWidgets.QGroupBox(parent=EditorAutocompletionQScintillaPage) |
|
34 self.groupBox.setObjectName("groupBox") |
|
35 self.hboxlayout = QtWidgets.QHBoxLayout(self.groupBox) |
|
36 self.hboxlayout.setObjectName("hboxlayout") |
|
37 self.acSourceDocumentRadioButton = QtWidgets.QRadioButton(parent=self.groupBox) |
|
38 self.acSourceDocumentRadioButton.setObjectName("acSourceDocumentRadioButton") |
|
39 self.hboxlayout.addWidget(self.acSourceDocumentRadioButton) |
|
40 self.acSourceAPIsRadioButton = QtWidgets.QRadioButton(parent=self.groupBox) |
|
41 self.acSourceAPIsRadioButton.setObjectName("acSourceAPIsRadioButton") |
|
42 self.hboxlayout.addWidget(self.acSourceAPIsRadioButton) |
|
43 self.acSourceAllRadioButton = QtWidgets.QRadioButton(parent=self.groupBox) |
|
44 self.acSourceAllRadioButton.setObjectName("acSourceAllRadioButton") |
|
45 self.hboxlayout.addWidget(self.acSourceAllRadioButton) |
|
46 self.gridLayout.addWidget(self.groupBox, 3, 0, 1, 2) |
|
47 spacerItem = QtWidgets.QSpacerItem(456, 51, QtWidgets.QSizePolicy.Policy.Minimum, QtWidgets.QSizePolicy.Policy.Expanding) |
|
48 self.gridLayout.addItem(spacerItem, 4, 0, 1, 2) |
|
49 |
|
50 self.retranslateUi(EditorAutocompletionQScintillaPage) |
|
51 QtCore.QMetaObject.connectSlotsByName(EditorAutocompletionQScintillaPage) |
|
52 EditorAutocompletionQScintillaPage.setTabOrder(self.acShowSingleCheckBox, self.acFillupsCheckBox) |
|
53 EditorAutocompletionQScintillaPage.setTabOrder(self.acFillupsCheckBox, self.acSourceDocumentRadioButton) |
|
54 EditorAutocompletionQScintillaPage.setTabOrder(self.acSourceDocumentRadioButton, self.acSourceAPIsRadioButton) |
|
55 EditorAutocompletionQScintillaPage.setTabOrder(self.acSourceAPIsRadioButton, self.acSourceAllRadioButton) |
|
56 |
|
57 def retranslateUi(self, EditorAutocompletionQScintillaPage): |
|
58 _translate = QtCore.QCoreApplication.translate |
|
59 self.headerLabel.setText(_translate("EditorAutocompletionQScintillaPage", "<b>Configure QScintilla Completion</b>")) |
|
60 self.acShowSingleCheckBox.setToolTip(_translate("EditorAutocompletionQScintillaPage", "Select this, if single entries shall be inserted automatically")) |
|
61 self.acShowSingleCheckBox.setText(_translate("EditorAutocompletionQScintillaPage", "Show single")) |
|
62 self.acFillupsCheckBox.setToolTip(_translate("EditorAutocompletionQScintillaPage", "Select to enable the use of fill-up characters to autocomplete the current word")) |
|
63 self.acFillupsCheckBox.setWhatsThis(_translate("EditorAutocompletionQScintillaPage", "<b>Use fill-up characters</b><p>Select to enable the use of fill-up characters to autocomplete the current word. A fill-up character is one that, when entered while an auto-completion list is being displayed, causes the currently selected item from the list to be added to the text followed by the fill-up character.</p>")) |
|
64 self.acFillupsCheckBox.setText(_translate("EditorAutocompletionQScintillaPage", "Use fill-up characters")) |
|
65 self.groupBox.setTitle(_translate("EditorAutocompletionQScintillaPage", "Source")) |
|
66 self.acSourceDocumentRadioButton.setToolTip(_translate("EditorAutocompletionQScintillaPage", "Select this to get autocompletion from current document")) |
|
67 self.acSourceDocumentRadioButton.setText(_translate("EditorAutocompletionQScintillaPage", "from Document")) |
|
68 self.acSourceAPIsRadioButton.setToolTip(_translate("EditorAutocompletionQScintillaPage", "Select this to get autocompletion from installed APIs")) |
|
69 self.acSourceAPIsRadioButton.setText(_translate("EditorAutocompletionQScintillaPage", "from API files")) |
|
70 self.acSourceAllRadioButton.setToolTip(_translate("EditorAutocompletionQScintillaPage", "Select this to get autocompletion from current document and installed APIs")) |
|
71 self.acSourceAllRadioButton.setText(_translate("EditorAutocompletionQScintillaPage", "from Document and API files")) |