Skip to main content

Package to construct PySide6 widgets from dataclass

Project description

Python package to dynamically create PySide6 widgets from dataclass

Introduction

dataclass2PySide6 is a package which provides widgets to represent dataclass instance as PySide6 GUI.

For example, here is a simple dataclass:

from dataclasses import dataclass
from typing import Tuple

@dataclass
class DataClass:
    a: int
    b: Tuple[float, bool] = (4.2, True)

Dataclass widget can be dynamically created as follows.

from PySide6.QtWidgets import QApplication
import sys
from dataclass2PySide6 import DataclassWidget

app = QApplication(sys.argv)
widget = DataclassWidget.fromDataclass(DataClass)
widget.show()
app.exec()
app.quit()

Installation

Before you install, be careful for other Qt-dependent packages installed in your environment. For example, non-headless OpenCV-Python module modifies the Qt dependency thus making PySide6 unavailable.

dataclass2PySide6 can be installed using pip.

$ pip install dataclass2PySide6

How to use

DataclassWidget is a widget for single dataclass type. For multiple dataclass types in one widget, StackedDataclassWidget and TabDataclassWidget are provided.

Single dataclass

DataclassWidget is the core object of dataclass2PySide6. It contains subwidgets which represent each fields of the dataclass.

User may subclass DataclassWidget to define own datclass widget. Refer to the docstring for detailed description.

Creating widget

To construct DataclassWidget, pass dataclass type to DataclassWidget.fromDataclass() method.

To construct suitable widget for each field, DataclassWidget searches for Qt_typehint metadata. Its value must be the type annotation, not necessarily identical to type attribute of the field. See Dataclass example for the use case of Qt_typehint.

If Qt_typehint does not exist, it uses type attribute of the field as a fallback. Currently supported types are:

  1. Enum : converted to combo box
  2. bool : converted to check box (Union with None allowed)
  3. int and float : converted to line edit with validator (Union with None allowed)
  4. str : converted to line edit
  5. Tuple : converted to group box if element types are supported

Getting data value

When data from any subwidget change, DataclassWidget.dataValueChanged signal emits the new dataclass instance with current value. For check box or combo box, this is when the current selection changes. For line edit, this is when editing is finished.

DataclassWidget.dataValue() method returns the new dataclass instance with current data value. If fields of the dataclass which constructed the widget defined fromQt_converter metadata, they are used to preprocess the data before dataclass construction. Its value must be a unary function which converts the widget data to field value.

See Dataclass example for the use case of fromQt_converter.

Setting data value

DataclassWidget.setDataValue() method updates the subwidget data with new dataclass instance. If fields of the dataclass which constructed the widget defined toQt_converter metadata, they are used to convert the value to the form which is updatable to the widget. Its value must be a unary function which converts the field value to widget data.

See Dataclass example for the use case of toQt_converter.

Multiple dataclasses

StackedDataclassWidget and TabDataclassWidget provide multiple DataclassWidget in one widget.

Both classes provide addDataclass() method to add new widget for dataclass, and indexOfDataclass() method to search widget for dataclass. When current widget's value is changed, dataValuechanged signal emits the new dataclass instance with current value.

Note that changing the current index (or current widget) does not emit dataValuechanged signal. Listen to standard currentChanged signal to detect it.

Dataclass example

This is the example of dataclass which includes custom object. Widget is constructed by Tuple[int, int] type annotation to represent two parameters of MyObj. Conversion from tuple to MyObj and vice versa are defined.

from dataclasses import field
from typing import Tuple

class MyObj:
    def __init__(self, x: int, y: int):
        self.x = x
        self.y = y

@dataclass
class DataClass:
    my_obj: MyObj = field(
        metadata=dict(
            Qt_typehint=Tuple[int, int],
            fromQt_converter=lambda tup: MyObj(*tup),
            toQt_converter=lambda obj: (obj.x, obj.y)
        )
    )

This is the widget constructed from DataClass.


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

dataclass2PySide6-1.8.3.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

dataclass2PySide6-1.8.3-py3-none-any.whl (18.7 kB view details)

Uploaded Python 3

File details

Details for the file dataclass2PySide6-1.8.3.tar.gz.

File metadata

  • Download URL: dataclass2PySide6-1.8.3.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for dataclass2PySide6-1.8.3.tar.gz
Algorithm Hash digest
SHA256 a8e1c52f53ee563c7ace70eef0086a41d9798fdef70406cb8371ae654ff51965
MD5 c2e48b9bf8890c415798449b425dec91
BLAKE2b-256 3dd76456a60af4b75f0d361d2b7ec8b2c986c10ea74462e0285dbbf5c972981a

See more details on using hashes here.

File details

Details for the file dataclass2PySide6-1.8.3-py3-none-any.whl.

File metadata

File hashes

Hashes for dataclass2PySide6-1.8.3-py3-none-any.whl
Algorithm Hash digest
SHA256 05cb31a60141ab525d9c3842a2658d206870161998dd5d00052730b0d7c2c4e2
MD5 9911939d8d2f23ea02208aa562a2907f
BLAKE2b-256 1be582eefe2a8b589787aba8ee8e395c9778717b828dea1b8988e0a14de2fa57

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