aio_wx_widgets
Project description
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
Release history Release notifications | RSS feed
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.1.tar.gz
(80.4 kB
view details)
Built Distribution
File details
Details for the file aio_wx_widgets-1.3.1.tar.gz
.
File metadata
- Download URL: aio_wx_widgets-1.3.1.tar.gz
- Upload date:
- Size: 80.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a2b8d6cb52370b9566d58673a2fb810647fd9e204931a4c87ab1fb0b9fee86d |
|
MD5 | e4b03153030c9e51494727c66d513b9d |
|
BLAKE2b-256 | bea7f30b42f8efbec8904d802741ef5d077cc67479f9f53548127d0b1724a054 |
File details
Details for the file aio_wx_widgets-1.3.1-py3-none-any.whl
.
File metadata
- Download URL: aio_wx_widgets-1.3.1-py3-none-any.whl
- Upload date:
- Size: 24.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.25.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3c1cab24b3af635530d1f85cca3338ec4405481d4f4f7ca211fd32d4ccf2e21 |
|
MD5 | 2f04ab8529c6dc3334cca807ac8f7d5a |
|
BLAKE2b-256 | a25ddbf94da119e51c8f99339a221e00c07f1eec86a102ea9cd66f03c6a4579c |