Metadata-Version: 2.1
Name: BlurWindow
Version: 1.1.5
Summary: Blur PySide, Tkinter, etc windows.
Home-page: https://github.com/Peticali/PythonBlurBehind
Author: Peticali
Author-email: pedropalmeira68@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/x-rst

Installation
------------

You can install it with pip::

    python -m pip install BlurWindow


Preview:

.. image:: https://i.imgur.com/sBNxXQE.png
    :width: 400


Parameters/Functions:

.. code-block:: python

    #HWND = PID
    #Acrylic = True/False #For Acrylic Design (lag WorkAround https://github.com/Peticali/PythonBlurBehind/blob/main/Examples%20MUST%20SEE/LagWorkAround.py)
    #hexColor = Background color, False for nothing
    #Dark = White icons

    blur(HWND,hexColor=False,Acrylic=False,Dark=False)

    #in windows 7 or older: (scroll down for image)
    Win7Blur(HWND)

    #in Linux (may not work for all distros, scroll down for image)
    BlurLinux(HWND)

    #NEW, Blur Windows Vista, 7, 8, 8.1, 10, 11, Linux auto
    GlobalBlur(HWND,hexColor=False,Acrylic=False,Dark=False)


Example:

.. code-block:: python

    import sys
    from PySide2.QtWidgets import *
    from PySide2.QtCore import *

    from BlurWindow.blurWindow import GlobalBlur


    class MainWindow(QWidget):
        def __init__(self):
            super(MainWindow, self).__init__()
            self.setAttribute(Qt.WA_TranslucentBackground)
            self.resize(500, 400)

            GlobalBlur(self.winId(),Dark=True)

            self.setStyleSheet("background-color: rgba(0, 0, 0, 0)")


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



Windows 7/Vista:

.. image:: https://i.imgur.com/ANA0gzF.png
    :width: 400

Linux (Deepin):

.. image:: https://i.imgur.com/h4TCByr.png
    :width: 400

