src/eric7/Preferences/ConfigurationPages/Ui_IconsPreviewDialog.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/IconsPreviewDialog.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_IconsPreviewDialog(object):
    def setupUi(self, IconsPreviewDialog):
        IconsPreviewDialog.setObjectName("IconsPreviewDialog")
        IconsPreviewDialog.resize(596, 541)
        IconsPreviewDialog.setSizeGripEnabled(True)
        self.verticalLayout = QtWidgets.QVBoxLayout(IconsPreviewDialog)
        self.verticalLayout.setObjectName("verticalLayout")
        self.horizontalLayout = QtWidgets.QHBoxLayout()
        self.horizontalLayout.setObjectName("horizontalLayout")
        self.label = QtWidgets.QLabel(parent=IconsPreviewDialog)
        self.label.setObjectName("label")
        self.horizontalLayout.addWidget(self.label)
        self.directoryCombo = QtWidgets.QComboBox(parent=IconsPreviewDialog)
        sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Fixed)
        sizePolicy.setHorizontalStretch(0)
        sizePolicy.setVerticalStretch(0)
        sizePolicy.setHeightForWidth(self.directoryCombo.sizePolicy().hasHeightForWidth())
        self.directoryCombo.setSizePolicy(sizePolicy)
        self.directoryCombo.setObjectName("directoryCombo")
        self.horizontalLayout.addWidget(self.directoryCombo)
        self.verticalLayout.addLayout(self.horizontalLayout)
        self.iconView = QtWidgets.QListWidget(parent=IconsPreviewDialog)
        self.iconView.setSelectionMode(QtWidgets.QAbstractItemView.SelectionMode.ExtendedSelection)
        self.iconView.setMovement(QtWidgets.QListView.Movement.Free)
        self.iconView.setFlow(QtWidgets.QListView.Flow.LeftToRight)
        self.iconView.setGridSize(QtCore.QSize(100, 50))
        self.iconView.setViewMode(QtWidgets.QListView.ViewMode.IconMode)
        self.iconView.setObjectName("iconView")
        self.verticalLayout.addWidget(self.iconView)
        self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
        self.horizontalLayout_2.setObjectName("horizontalLayout_2")
        self.invertButton = QtWidgets.QPushButton(parent=IconsPreviewDialog)
        self.invertButton.setCheckable(True)
        self.invertButton.setObjectName("invertButton")
        self.horizontalLayout_2.addWidget(self.invertButton)
        self.refreshButton = QtWidgets.QPushButton(parent=IconsPreviewDialog)
        self.refreshButton.setObjectName("refreshButton")
        self.horizontalLayout_2.addWidget(self.refreshButton)
        spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Policy.Expanding, QtWidgets.QSizePolicy.Policy.Minimum)
        self.horizontalLayout_2.addItem(spacerItem)
        self.buttonBox = QtWidgets.QDialogButtonBox(parent=IconsPreviewDialog)
        self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal)
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close)
        self.buttonBox.setObjectName("buttonBox")
        self.horizontalLayout_2.addWidget(self.buttonBox)
        self.verticalLayout.addLayout(self.horizontalLayout_2)

        self.retranslateUi(IconsPreviewDialog)
        self.buttonBox.rejected.connect(IconsPreviewDialog.reject) # type: ignore
        QtCore.QMetaObject.connectSlotsByName(IconsPreviewDialog)
        IconsPreviewDialog.setTabOrder(self.directoryCombo, self.iconView)
        IconsPreviewDialog.setTabOrder(self.iconView, self.invertButton)
        IconsPreviewDialog.setTabOrder(self.invertButton, self.refreshButton)

    def retranslateUi(self, IconsPreviewDialog):
        _translate = QtCore.QCoreApplication.translate
        IconsPreviewDialog.setWindowTitle(_translate("IconsPreviewDialog", "Icons Preview"))
        self.label.setText(_translate("IconsPreviewDialog", "Directory:"))
        self.directoryCombo.setToolTip(_translate("IconsPreviewDialog", "Select the icons directory to be shown"))
        self.invertButton.setToolTip(_translate("IconsPreviewDialog", "Select to invert the background color"))
        self.invertButton.setText(_translate("IconsPreviewDialog", "Invert Background"))
        self.refreshButton.setToolTip(_translate("IconsPreviewDialog", "Select to refresh the icons display"))
        self.refreshButton.setText(_translate("IconsPreviewDialog", "Refresh"))

eric ide

mercurial