src/eric7/Preferences/ConfigurationPages/Ui_InterfacePage.py

branch
eric7
changeset 10949
2057b1b198a5
parent 10745
2921faddeaec
child 11227
023943c77c42
--- a/src/eric7/Preferences/ConfigurationPages/Ui_InterfacePage.py	Sat Oct 05 10:28:34 2024 +0200
+++ b/src/eric7/Preferences/ConfigurationPages/Ui_InterfacePage.py	Sat Oct 05 11:35:07 2024 +0200
@@ -1,6 +1,6 @@
 # Form implementation generated from reading ui file 'src/eric7/Preferences/ConfigurationPages/InterfacePage.ui'
 #
-# Created by: PyQt6 UI code generator 6.7.0
+# Created by: PyQt6 UI code generator 6.7.1
 #
 # 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.
@@ -12,7 +12,7 @@
 class Ui_InterfacePage(object):
     def setupUi(self, InterfacePage):
         InterfacePage.setObjectName("InterfacePage")
-        InterfacePage.resize(550, 1235)
+        InterfacePage.resize(550, 1276)
         self.verticalLayout_3 = QtWidgets.QVBoxLayout(InterfacePage)
         self.verticalLayout_3.setObjectName("verticalLayout_3")
         self.headerLabel = QtWidgets.QLabel(parent=InterfacePage)
@@ -28,15 +28,6 @@
         self.groupBox_4.setObjectName("groupBox_4")
         self.gridLayout_2 = QtWidgets.QGridLayout(self.groupBox_4)
         self.gridLayout_2.setObjectName("gridLayout_2")
-        self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
-        self.horizontalLayout_2.setObjectName("horizontalLayout_2")
-        self.label_4 = QtWidgets.QLabel(parent=self.groupBox_4)
-        self.label_4.setObjectName("label_4")
-        self.horizontalLayout_2.addWidget(self.label_4)
-        self.fileFiltersEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
-        self.fileFiltersEdit.setObjectName("fileFiltersEdit")
-        self.horizontalLayout_2.addWidget(self.fileFiltersEdit)
-        self.gridLayout_2.addLayout(self.horizontalLayout_2, 3, 0, 1, 2)
         self.uiBrowsersListFoldersFirstCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_4)
         self.uiBrowsersListFoldersFirstCheckBox.setObjectName("uiBrowsersListFoldersFirstCheckBox")
         self.gridLayout_2.addWidget(self.uiBrowsersListFoldersFirstCheckBox, 0, 0, 1, 1)
@@ -49,6 +40,18 @@
         self.browserShowCodingCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_4)
         self.browserShowCodingCheckBox.setObjectName("browserShowCodingCheckBox")
         self.gridLayout_2.addWidget(self.browserShowCodingCheckBox, 1, 1, 1, 1)
+        self.browserShowConnectedServerOnlyCheckBox = QtWidgets.QCheckBox(parent=self.groupBox_4)
+        self.browserShowConnectedServerOnlyCheckBox.setObjectName("browserShowConnectedServerOnlyCheckBox")
+        self.gridLayout_2.addWidget(self.browserShowConnectedServerOnlyCheckBox, 2, 0, 1, 2)
+        self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
+        self.horizontalLayout_2.setObjectName("horizontalLayout_2")
+        self.label_4 = QtWidgets.QLabel(parent=self.groupBox_4)
+        self.label_4.setObjectName("label_4")
+        self.horizontalLayout_2.addWidget(self.label_4)
+        self.fileFiltersEdit = QtWidgets.QLineEdit(parent=self.groupBox_4)
+        self.fileFiltersEdit.setObjectName("fileFiltersEdit")
+        self.horizontalLayout_2.addWidget(self.fileFiltersEdit)
+        self.gridLayout_2.addLayout(self.horizontalLayout_2, 3, 0, 1, 2)
         self.verticalLayout_3.addWidget(self.groupBox_4)
         self.uiCaptionShowsFilenameGroupBox = QtWidgets.QGroupBox(parent=InterfacePage)
         self.uiCaptionShowsFilenameGroupBox.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
@@ -278,7 +281,8 @@
         InterfacePage.setTabOrder(self.uiBrowsersListFoldersFirstCheckBox, self.uiBrowsersHideNonPublicCheckBox)
         InterfacePage.setTabOrder(self.uiBrowsersHideNonPublicCheckBox, self.uiBrowsersSortByOccurrenceCheckBox)
         InterfacePage.setTabOrder(self.uiBrowsersSortByOccurrenceCheckBox, self.browserShowCodingCheckBox)
-        InterfacePage.setTabOrder(self.browserShowCodingCheckBox, self.fileFiltersEdit)
+        InterfacePage.setTabOrder(self.browserShowCodingCheckBox, self.browserShowConnectedServerOnlyCheckBox)
+        InterfacePage.setTabOrder(self.browserShowConnectedServerOnlyCheckBox, self.fileFiltersEdit)
         InterfacePage.setTabOrder(self.fileFiltersEdit, self.uiCaptionShowsFilenameGroupBox)
         InterfacePage.setTabOrder(self.uiCaptionShowsFilenameGroupBox, self.filenameLengthSpinBox)
         InterfacePage.setTabOrder(self.filenameLengthSpinBox, self.styleComboBox)
@@ -309,8 +313,6 @@
         _translate = QtCore.QCoreApplication.translate
         self.headerLabel.setText(_translate("InterfacePage", "<b>Configure User Interface</b>"))
         self.groupBox_4.setTitle(_translate("InterfacePage", "Browsers"))
-        self.label_4.setText(_translate("InterfacePage", "Filter out files:"))
-        self.fileFiltersEdit.setToolTip(_translate("InterfacePage", "Enter wildcard file patterns separated by semicolon. Files matching these patterns will not be shown by the file browsers."))
         self.uiBrowsersListFoldersFirstCheckBox.setToolTip(_translate("InterfacePage", "Select, if folders should be listed first in the various browsers"))
         self.uiBrowsersListFoldersFirstCheckBox.setText(_translate("InterfacePage", "List folders first in Browsers"))
         self.uiBrowsersHideNonPublicCheckBox.setToolTip(_translate("InterfacePage", "Select to hide non public classes, methods and attributes in the browsers."))
@@ -319,6 +321,10 @@
         self.uiBrowsersSortByOccurrenceCheckBox.setText(_translate("InterfacePage", "Sort contents by occurrence"))
         self.browserShowCodingCheckBox.setToolTip(_translate("InterfacePage", "Select to show the source code encoding"))
         self.browserShowCodingCheckBox.setText(_translate("InterfacePage", "Show source file encoding"))
+        self.browserShowConnectedServerOnlyCheckBox.setToolTip(_translate("InterfacePage", "Select to show local entries and those related to the currently connected eric-ide server."))
+        self.browserShowConnectedServerOnlyCheckBox.setText(_translate("InterfacePage", "Show entries of connected server only"))
+        self.label_4.setText(_translate("InterfacePage", "Filter out files:"))
+        self.fileFiltersEdit.setToolTip(_translate("InterfacePage", "Enter wildcard file patterns separated by semicolon. Files matching these patterns will not be shown by the file browsers."))
         self.uiCaptionShowsFilenameGroupBox.setToolTip(_translate("InterfacePage", "Select, if the caption of the main window should show the filename of the current editor"))
         self.uiCaptionShowsFilenameGroupBox.setTitle(_translate("InterfacePage", "Caption shows filename"))
         self.label.setText(_translate("InterfacePage", "Filename Length"))

eric ide

mercurial