Skip to main content

A PyQt6 mediator mixin

Project description

PyQt6 Mediator Mixin

Upload Python Package

PyQt6 Mediator Mixin is a Python library that enhances PyQt6's signal-slot mechanism by implementing the mediator pattern. This pattern allows classes to emit and receive signals without knowing about each other, leading to more modular and maintainable code.

Key features:

  • Mediator pattern implementation for PyQt6 signals.
  • Ability to extend the SignalCode enum for custom signals.

Installation

pip install PyQt6-mediator-mixin

Usage

from PyQt6_mediator_mixin.mediator_mixin import MediatorMixin
from PyQt6_mediator_mixin.enums import SignalCode

class MyClass(MediatorMixin):
    def __init__(self):
        super().__init__()
        self.register(SignalCode.MY_SIGNAL, self.my_slot_function)

    def my_slot_function(self, data):
        print("Received signal with data:", data)

    def some_method(self):
        self.emit(SignalCode.MY_SIGNAL, "some data")

Extending SignalCode Enum

from enum import Enum
from PyQt6_mediator_mixin.signal_code_factory import set_signal_code

class MySignalCode(Enum):
    MY_SIGNAL_1 = 1
    MY_SIGNAL_2 = 2

set_signal_code(MySignalCode)

Now, MyClass can register and emit MY_SIGNAL_1 and MY_SIGNAL_2 using the MediatorMixin.

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

PyQt6-mediator-mixin-1.0.2.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

PyQt6_mediator_mixin-1.0.2-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file PyQt6-mediator-mixin-1.0.2.tar.gz.

File metadata

  • Download URL: PyQt6-mediator-mixin-1.0.2.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for PyQt6-mediator-mixin-1.0.2.tar.gz
Algorithm Hash digest
SHA256 fb3986b219b09c229180cc98f96d7b9d1e1c3563489756151469b0a3588c3021
MD5 d5d4971be212e50d3a0b7667e03bea46
BLAKE2b-256 65076c229b876f4b381017db530ef5fab39ce5370f06be869c6ef7c659de4d17

See more details on using hashes here.

File details

Details for the file PyQt6_mediator_mixin-1.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for PyQt6_mediator_mixin-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 be8c8664808ae9a646f3d10bcfe46a102265c8e94883af59e2b1537dc99095d8
MD5 d1b7836f8ba339314fd445dc623f19a7
BLAKE2b-256 d97048657e9ce440b262f5af893497dbe5a027d75e4d728aefda908608c826b8

See more details on using hashes here.

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