Skip to main content

The most easy way to create Qt form dialogs and widgets with Python

Project description

https://pythonhosted.org/formlayout/_images/advanced1.png https://pythonhosted.org/formlayout/_images/advanced2.png https://pythonhosted.org/formlayout/_images/advanced3.png
With formlayout, generating a form is very easy:
  • To show a dialog box, just call the fedit function.

  • To set-up the form dialog, simply use lists to pass parameters (field names, default values, …).

  • To embedd formlayout in your own library, just copy the formlayout autoconsistent single script (zero dependency, except Qt itself).

Here is a simple example (more are included in source package):

from formlayout import fedit
datalist = [('Name', 'Paul'),
            (None, None),
            (None, 'Information:'),
            ('Age', 30),
            ('Sex', [0, 'Male', 'Female']),
            ('Size', 12.1),
            ('Eyes', 'green'),
            ('Married', True),
            ]
fedit(datalist, title="Describe yourself", comment="This is just an <b>example</b>.")

This shows the following dialog box:

https://pythonhosted.org/formlayout/_images/simple.png

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

formlayout-1.1.0.zip (9.5 kB view hashes)

Uploaded Source

Built Distribution

formlayout-1.1.0-py2.py3-none-any.whl (9.0 kB view hashes)

Uploaded Python 2 Python 3

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