Skip to main content

Builds dialogs from ASCII art definition.

Project description

A library that:

  • creates GUI from ASCII-art (with well-defined syntax)

  • maps widgets to virtual class attributes

  • relieves you from the boring parts of Form building while leaving you in control.

Did you ever design a form by scribbling something like this in your editor:

Text to transform:   [ Text_      ]

Select transformation:

(x) Uppercase
( ) Lowercase
( ) Title-case

    [ OK ]            [ Cancel ]

… and wished that you could be done with design and start coding? Wish no longer:

from ascii_designer import AutoFrame

class TextTransformer(AutoFrame):
    f_body='''
                            |    <->       |
        Text to transform:   [ Text_      ]

        Select transformation:

        (x) Uppercase
        ( ) Lowercase
        ( ) Title-case

            [ OK ]            [ Cancel ]~

    '''
    def ok(self):
        text = self.text
        if self.uppercase:
            text = text.upper()
        elif self.lowercase:
            text = text.lower()
        elif self.titlecase:
            text = text.title()
        print(text)
        self.close()

    def cancel(self):
        self.close()

if __name__ == '__main__':
    TextTransformer().f_show()

Some comments, incidentally highlighting the features of this library:

  • As you probably guessed, all the magic happens in AutoFrame. The f_show call triggers rendering of the form. All the reserved attributes are prepended with f_ to get out of your way when subclassing.

  • There is a well-defined syntax for how to get the usual widget types. In the example you can find labels (plain text), a text box, radio buttons and normal buttons.

  • The columns are defined by the header row with the pipe characters. The minus sign denotes stretching columns. (The < / > chars are just decoration.)

  • Column-span is easily done by having not-a-space underneath the pipe symbol. Row-span can also be done by prepending subsequent cells with a { character.

  • Anchoring is controlled by whether the cell is space-padded or not. For example, the Text box stretches, while the cancel button is centered. The tilde character can be used instead of a fragile trailing space.

  • Widget IDs are automatically generated by lowercasing and whitelisting the captions.

  • If a method exists with the same name as a widget id, it is automatically bound to the usually-wanted event (click in case of button, value-changed in case of basically anything else). Oh, and close and quit are already there for your convenience.

  • Otherwise, you can retrieve and set the widget’s value by using its id like a class attribute.

  • f_show() captures all the usual boilerplate and simply f***ing shows the frame. It can be used for both the toplevel and additional frames.

  • Also note how the class name automatically turned into the window title. Override by setting .f_title.

  • The created widgets are “raw”, native widgets. You can configure the toolkit to use. Currently there is a Qt and a Tkinter implementation. The native widget can accessed using form["widget_id"] (or form.f_controls["widget_id"]).

The general philosophy is to not paint everything over with wrappers. Instead, the library focuses on specific tasks - building the layout, event-/value binding - and lets you do everything else with the API you know and (maybe) love.

INSTALLATION

pip install ascii_designer

Requirements: Python >= 3, attrs. To use the Qt toolkit you need qtpy.

DOCUMENTATION

Please proceed to http://ascii_designer.readthedocs.io/en/latest/index.html

LICENCSE

MIT License: https://github.com/loehnertj/ascii_designer/blob/master/LICENSE

TODO

Alpha-state software, mostly working.

Test coverage is lacking, politely spoken.

This is a hobby project. If you need something quick, open an issue or send a pull request.

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

ascii_designer-0.5.2.tar.gz (40.1 kB view details)

Uploaded Source

Built Distribution

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

ascii_designer-0.5.2-py3-none-any.whl (44.7 kB view details)

Uploaded Python 3

File details

Details for the file ascii_designer-0.5.2.tar.gz.

File metadata

  • Download URL: ascii_designer-0.5.2.tar.gz
  • Upload date:
  • Size: 40.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for ascii_designer-0.5.2.tar.gz
Algorithm Hash digest
SHA256 a6f252210dafcf2a9234da8b072498175871236dd36ccb551215dc0d98280b1b
MD5 28fd9d9e45e3793f3ed3ca9cc4104731
BLAKE2b-256 8c7438ed83dd976d596054ebb25a495d352b50f068e128e071de83610a2c8a73

See more details on using hashes here.

File details

Details for the file ascii_designer-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: ascii_designer-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 44.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 colorama/0.4.4 importlib-metadata/4.6.4 keyring/23.5.0 pkginfo/1.8.2 readme-renderer/34.0 requests-toolbelt/0.9.1 requests/2.25.1 rfc3986/1.5.0 tqdm/4.57.0 urllib3/1.26.5 CPython/3.10.6

File hashes

Hashes for ascii_designer-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6c5f551afa831d7f5578bdba8633f4d391a438f60a40d6a600d3fc8c758c765d
MD5 786a0a8dd06e9efcbac36f1e43c4f1c7
BLAKE2b-256 df7838eb242fe29bb79d6a1d3d1cfc326f0c2b977a6a9b5856cb191f7a01ede0

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