src/eric7/EricWidgets/EricMainWindow.py

Sat, 14 Oct 2023 18:10:36 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 14 Oct 2023 18:10:36 +0200
branch
eric7
changeset 10248
981456110843
parent 10180
3a595df36c9a
child 10439
21c28b0f9e41
permissions
-rw-r--r--

General
- Added the capability to select list entries with a configurable action (system default, double click, single click) (see `Interface => Interface` configuration page)

# -*- coding: utf-8 -*-

# Copyright (c) 2012 - 2023 Detlev Offenbach <detlev@die-offenbachs.de>
#

"""
Module implementing a main window class with styling support.
"""

from PyQt6.QtWidgets import QApplication, QMainWindow, QStyleFactory

from .EricApplication import ericApp
from .EricProxyStyle import EricProxyStyle


class EricMainWindow(QMainWindow):
    """
    Class implementing a main window with styling support.
    """

    def __init__(self, parent=None):
        """
        Constructor

        @param parent reference to the parent widget
        @type QWidget
        """
        super().__init__(parent)

        self.defaultStyleName = QApplication.style().objectName()

    def setStyle(self, styleName, styleSheetFile):
        """
        Public method to set the style of the interface.

        @param styleName name of the style to set
        @type str
        @param styleSheetFile name of a style sheet file to read to overwrite
            defaults of the given style
        @type str
        """
        # step 1: set the style
        style = None
        if styleName != "System" and styleName in QStyleFactory.keys():  # noqa: Y118
            style = QStyleFactory.create(styleName)
        if style is None:
            style = QStyleFactory.create(self.defaultStyleName)

        if style is None:
            QApplication.setStyle(EricProxyStyle())
        else:
            QApplication.setStyle(EricProxyStyle(style))

        # step 2: set a style sheet
        ericApp().setStyleSheetFile(styleSheetFile)

eric ide

mercurial