Skip to main content

aio_wx_widgets

Project description

CI codecov Code style: black

aio_wx_widgets

Wx python app structure using MVC model. Work in progress, adding widgets when I need them. See the demo folder for usage.

Features:

  • Add widgets using context managers.
  • Two-way or one-way Property binding from controller properties to the view.
  • Proper Margins and alignment of items

The example below is a bit outdated, but gives a rough idea. Please see the demo for more.

```python
# Use a context manager for container types like a group or grid.
# A group is a container with a label and a sizer inside. Inside
# this sizer widgets, or other containers can be placed.
with self.add(Group("A labelled container.")) as group:
    group.add(Text(text="A horizontal grid."))

    with group.add(Grid()) as grd:
        # the binding binds to an attribute defined in the controller
        # the weight determines how much space a specific item should consume
        # with respect to the other members of the container.
        grd.add(IntEntry(binding=self.bind("value_1")), weight=6, margin=3)
        grd.add(IntEntry(binding=self.bind("value_1")), weight=4, margin=3)
        grd.add(IntEntry(binding=self.bind("value_1")), weight=4, margin=3)
```


```python 
vert_grid.add(
    Text(text="Center aligned text with a large margin."),
    margin=(10, 10, 30, 5),  # (left,right,top,below)
    align_horizontal=AlignHorizontal.center,)
```

Installation

  • Create a virtual env, activate it and pip install aio_wx_widgets

Running the demo

  • Install the libary as described above.
  • clone the repo.
  • from the activated virtualenv: python -m demo

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

aio_wx_widgets-1.3.2.tar.gz (80.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aio_wx_widgets-1.3.2-py3-none-any.whl (24.5 kB view details)

Uploaded Python 3

File details

Details for the file aio_wx_widgets-1.3.2.tar.gz.

File metadata

  • Download URL: aio_wx_widgets-1.3.2.tar.gz
  • Upload date:
  • Size: 80.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.25.1

File hashes

Hashes for aio_wx_widgets-1.3.2.tar.gz
Algorithm Hash digest
SHA256 659e86f3a1a8f9e4e31cc33e7d0072e6c77b544b045fc6fc6c8a59008b225e5d
MD5 1a3a5afc2116a378c7278237e39a99e1
BLAKE2b-256 afa5b94f1f3b1d0b0eb73dec84cb555dd48db5f6ab4f1f1ea054477643836f94

See more details on using hashes here.

File details

Details for the file aio_wx_widgets-1.3.2-py3-none-any.whl.

File metadata

File hashes

Hashes for aio_wx_widgets-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f6520410c8a8207ab09729fb1d08c6cdcbb47c62ebc4dad53df1ad38d5fe04b8
MD5 83e93a324bb59345855ed4db87875135
BLAKE2b-256 5a886506fb9c93b35b956c7bdbeb13d349fb0604e6d7ffb609e99002fb146fb0

See more details on using hashes here.

Supported by

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