Skip to main content

A python package to define how a class member should be rendered in a UI.

Project description

propsettings

This packages enables you to decorate class member variables as a Setting. A Setting is a kind of property that let you define some characteristics of the variable that are taken into account by a user interface code to render that variable properly.

Usage

To register a member variable as a Setting you must use the method register_as_setting, e.g.

from propsettings.configurable import register_as_setting

class Example:
  def __init__():
    self._variable = 4

register_as_setting(Example, "_variable")

You can specify the label the UI will show for that variable with

register_as_setting(Example, "_variable", label="Variable label")

When the variable you want to decorate is initialized with None you must also specify the data type

class Example:
  def __init__():
    self._variable = None

register_as_setting(Example, "_variable", setting_value_type=str)

Sometimes is desirable to draw (in the user interface) your variable in a different way than the default. For example, the default way to show an integer value is with a text edit validated to only accept numeric values. However, maybe your variable only makes sense in the range [0 , 10]. In that case is better to have a slider than a text edit. That is when setting types come into play. A setting type is a type of annotation that gives more information about how to draw and validate a variable. For example:

register_as_setting(Example, "_variable", setting_type=Range(0, 10))

To get a list of an object settings you can use

from propsettings.configurable import get_settings

e = Example()
settings = get_settings(e)

How to draw UI

This package is for variable annotation only. In order to draw user interfaces that take into account this annotations to render the variables you annotate, you must use another library. For Qt aaplications there is propsettings_qt

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

propsettings-0.1.12.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

propsettings-0.1.12-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file propsettings-0.1.12.tar.gz.

File metadata

  • Download URL: propsettings-0.1.12.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for propsettings-0.1.12.tar.gz
Algorithm Hash digest
SHA256 6bb3710997fbd2a9f5c21320b4b7541cf66d9035bdd000cc8c28234015880ddd
MD5 abaa2c49f4b675ca2da27175aceeb50e
BLAKE2b-256 6ac145a2a07efdcf424822cdc9a129877260139a105002de7b703d1b7396ec5e

See more details on using hashes here.

File details

Details for the file propsettings-0.1.12-py3-none-any.whl.

File metadata

  • Download URL: propsettings-0.1.12-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for propsettings-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 2e0b0996f96fa22f35b4b8b6d1d30db833ada9a0f489868ab3b1f6603fd5882c
MD5 1c0ed5675c1c05e8d51b2d184f5cd237
BLAKE2b-256 4a654f008de4e2649d80ea1bde6f78d36d80504883d51de5ac76fdde8b2bc85e

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