Skip to main content

QCFx is a Python library designed to add dynamic, real-time background blurring effects to PyQt5 applications. It provides various modes of operation, allowing for different levels of quality and performance to suit the needs of your application.

Project description


QCFx - Dynamic Background Blurring for PyQt5 Applications

QCFx is a Python library designed to add dynamic, real-time background blurring effects to PyQt5 applications. It provides various modes of operation, allowing for different levels of quality and performance to suit the needs of your application. The project leverages multi-threading to maintain smooth user experience even while performing complex image processing tasks.

Features

  • Multiple Blurring Modes: QCFx supports different levels of blurring quality, allowing you to choose between ultra, medium, and low-quality blurring depending on your application's needs.
  • Window Movement Monitoring: QCFx can detect when a window is being moved and update the background blur dynamically.
  • Desktop Wallpaper Monitoring: Automatically updates the blur effect when the desktop wallpaper changes.
  • Other Windows State Monitoring: Detects and responds to changes in the state of other windows (e.g., minimized or restored).
  • Settings Persistence: QCFx settings are saved to a JSON file and can be reloaded or modified as needed.
  • Customizable UI: The blurred background can be styled using custom CSS stylesheets for a more tailored look.

Installation

To use QCFx in your project, ensure you have the following dependencies installed:

pip install PySide2 Pillow pyautogui imagehash

Clone the repository or copy the qcfx.py file into your project directory.

Usage

Below is a basic example of how to integrate QCFx into your PyQt5 application.

Example

from PySide2.QtCore import *
from PySide2.QtGui import *
from PySide2.QtWidgets import *
import sys
from qcfx import QCFx_Blur, QCFx
from ui_testWindow import Ui_MainWindow

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)
        
        self.qcfx = QCFx()
        self.blur = QCFx_Blur(self, mode=self.qcfx.MODE_WINDOW_S)
        
        self.ui.body.setStyleSheet('background-color:rgba(0,0,0,0);')
        self.ui.overlay.setStyleSheet('background-color:rgba(0,0,0,0);')

if __name__ == "__main__":
    app = QApplication(sys.argv)
    window = MainWindow()
    window.show()
    sys.exit(app.exec_())

Modes

QCFx provides several predefined modes for blurring:

  • MODE_DESKTOPONLY_U: Ultra-quality blurring of the desktop background only.
  • MODE_DESKTOPONLY_S: Medium-quality blurring of the desktop background only.
  • MODE_DESKTOPONLY_L: Low-quality blurring of the desktop background only.
  • MODE_WINDOW_U: Ultra-quality blurring that includes window monitoring.
  • MODE_WINDOW_S: Medium-quality blurring that includes window monitoring.
  • MODE_WINDOW_L: Low-quality blurring that includes window monitoring.

Settings

QCFx allows you to configure various settings via a JSON file stored in the AppData directory. The default settings include:

{
    "blurScalingFactor": 2,
    "recursiveFixedUpdate": false,
    "updateInterval": 500,
    "windowStateMonitoring": true,
    "windowMoveMonitoring": true,
    "otherWindowsStateMonitoring": true,
    "desktopMonitoring": true,
    "blurringFunction": 2,
    "blurRadius": 40,
    "blurLayerStylesheet": "background-color:none; border-radius:8px; padding:2px;",
    "showWindowTitlebar": true,
    "showWindowBorders": true
}

Methods

applySettings_fromMode(mode)

Apply settings based on the selected mode (e.g., MODE_WINDOW_S).

applySetting(key, value)

Apply a specific setting dynamically during runtime.

reloadSettings()

Reload settings from the JSON file.

Customization

QCFx provides several points of customization, including:

  • Stylesheet Customization: Modify the appearance of the blur effect by changing the blurLayerStylesheet setting.
  • Blurring Function: Choose between different blurring algorithms (Lanczos, Bilinear, Nearest Neighbor) by adjusting the blurringFunction setting.

Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue if you encounter any bugs or have suggestions for new features.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Acknowledgements

  • The project makes use of the PySide2 library for the PyQt5 framework.
  • Image processing is handled by the Pillow library.

Feel free to adjust the text as needed, depending on your specific use case or additional features.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qcfxpython-1.0.4.tar.gz (47.3 kB view hashes)

Uploaded Source

Built Distribution

QCFxPython-1.0.4-py3-none-any.whl (33.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page