src/eric7/QtHelpInterface/Ui_QtHelpDocumentationConfigurationDialog.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/QtHelpInterface/QtHelpDocumentationConfigurationDialog.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_QtHelpDocumentationConfigurationDialog(object):
    def setupUi(self, QtHelpDocumentationConfigurationDialog):
        QtHelpDocumentationConfigurationDialog.setObjectName("QtHelpDocumentationConfigurationDialog")
        QtHelpDocumentationConfigurationDialog.resize(600, 500)
        QtHelpDocumentationConfigurationDialog.setSizeGripEnabled(True)
        self.verticalLayout_3 = QtWidgets.QVBoxLayout(QtHelpDocumentationConfigurationDialog)
        self.verticalLayout_3.setObjectName("verticalLayout_3")
        self.tabWidget = QtWidgets.QTabWidget(parent=QtHelpDocumentationConfigurationDialog)
        self.tabWidget.setObjectName("tabWidget")
        self.documentsTab = QtWidgets.QWidget()
        self.documentsTab.setObjectName("documentsTab")
        self.verticalLayout = QtWidgets.QVBoxLayout(self.documentsTab)
        self.verticalLayout.setContentsMargins(0, 0, 0, 0)
        self.verticalLayout.setObjectName("verticalLayout")
        self.documentationSettingsWidget = QtHelpDocumentationSettingsWidget(parent=self.documentsTab)
        self.documentationSettingsWidget.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
        self.documentationSettingsWidget.setObjectName("documentationSettingsWidget")
        self.verticalLayout.addWidget(self.documentationSettingsWidget)
        self.tabWidget.addTab(self.documentsTab, "")
        self.filtersTab = QtWidgets.QWidget()
        self.filtersTab.setFocusPolicy(QtCore.Qt.FocusPolicy.StrongFocus)
        self.filtersTab.setObjectName("filtersTab")
        self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.filtersTab)
        self.verticalLayout_2.setContentsMargins(0, 0, 0, 0)
        self.verticalLayout_2.setObjectName("verticalLayout_2")
        self.filterSettingsWidget = QHelpFilterSettingsWidget(parent=self.filtersTab)
        self.filterSettingsWidget.setObjectName("filterSettingsWidget")
        self.verticalLayout_2.addWidget(self.filterSettingsWidget)
        self.tabWidget.addTab(self.filtersTab, "")
        self.verticalLayout_3.addWidget(self.tabWidget)
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=QtHelpDocumentationConfigurationDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Apply|QtWidgets.QDialogButtonBox.StandardButton.Cancel|QtWidgets.QDialogButtonBox.StandardButton.Ok)
        self.buttonBox.setObjectName("buttonBox")
        self.verticalLayout_3.addWidget(self.buttonBox)

        self.retranslateUi(QtHelpDocumentationConfigurationDialog)
        self.tabWidget.setCurrentIndex(0)
        self.buttonBox.rejected.connect(QtHelpDocumentationConfigurationDialog.reject) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(QtHelpDocumentationConfigurationDialog)

    def retranslateUi(self, QtHelpDocumentationConfigurationDialog):
        _translate = QtCore.QCoreApplication.translate
        QtHelpDocumentationConfigurationDialog.setWindowTitle(_translate("QtHelpDocumentationConfigurationDialog", "Manage QtHelp Documentation"))
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.documentsTab), _translate("QtHelpDocumentationConfigurationDialog", "Registered Documents"))
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.filtersTab), _translate("QtHelpDocumentationConfigurationDialog", "Filters"))
from .QtHelpDocumentationSettingsWidget import QtHelpDocumentationSettingsWidget
from PyQt6.QtHelp import QHelpFilterSettingsWidget

eric ide

mercurial