Skip to main content

Vindauga

Introduction

This is a pure python3 implementation of the BSD licensed C++ Turbo Vision library.

Vindauga is the old Norse precursor to the middle english word 'Window'. These are really old windows...

I needed a cross-platform TUI for python for a project, and the projects available worked on Windows or UNIX but not both. I had previously built a version of this by transliteration which was quite frankly awful, so a dust-off began.

The benefits of this version;

  • No dependencies other than curses (See Windows below to have it work in a cmd/powershell window)
  • A lot of refactoring to make the code-base somewhat consistent.
  • It uses unicode by default, (so no CP437)
    • See UTF-Demo and Cyrillic Test
    • The file viewer works with UTF-8 encoded files, see UTF-Demo.
    • gettext is enabled so you can use the _() built-in, there's no extraction now though.
  • Curses mouse works in DOS windows and Cygwin, putty etc.
  • Some stuff is Pythonic.
    • Some is still a little clunky to use, working on that.
  • You can dynamically change the "resolution" of the console window to be the size you need.
    • See vindauga_demo for how.
    • This only works in virtual terminals (including windows CMD).
  • Tested on Mac, Windows, Cygwin, Putty, X-Terms
    • A lot of alt-keys are trapped on mac you have to use ESC-xxx instead.
  • You can open (interactive) shell windows.

I've implemented other widgets like combo-boxes so there's some extra widgets available OOTB. I've pulled together the examples and converted them as well, so there's sample code. I've tried to keep the original class and method documentation where appropriate.

You're currently limited to 1024 width windows, you can adjust this in vindauga.types.draw_buffer or subclass DrawBuffer if it's really a problem. If you're doing linear processing of the draw buffer, then it will grow whatever size you want, but if you want them pre-allocated it's 1K.

demo

Windows

You'll also need to install the pywin32 libraries.

Running it in Cygwin doesn't require anything, just use the cygwin python in a mintty window.

Mac

You'll want to install pasteboard for some clipboard support.

Using it

Look in the examples directory for small samples of how to use widgets. The vindauga_demo shows how to put it all together into a larger app.

For the most part, you will want to subclass Application and add your own Menu objects.

This example is pretty much as simple as it gets, although it does nothing except render a background with the default StatusLine that lets you Alt+X to quit.

# -*- coding: utf-8 -*-
from vindauga.widgets.application import Application
from vindauga.widgets.desktop import Desktop


class Demo(Application):
    """
    How to __change the background _pattern
    """
    def __init__(self):
        Desktop.DEFAULT_BACKGROUND = '╬'
        super().__init__()


if __name__ == '__main__':
    app = Demo()
    app.run()

Issues

  • Events sometimes disappear, particularly mouse clicks from inside PowerShell windows. Click then tab and then the click arrives.
  • The Screen class does too much and needs to be broken up to move IO into it's own hierarchy
  • Lots more testing needs to be added.
  • No console mouse support as yet
  • I haven't collected all the module imports into __init__.py I'm not convinced either way yet.
    • That does mean a lot of import lines, but it means you're only importing what you need, and what you're using is explicit.

Contributing

Python Version

I'm targetting python 3.10+

Class and Variable Names

  • It doesn't use PEP-8 naming, for various reasons.
    • Naming is camel case
    • Classes are uppercase first; e.g. ClassName
    • Variables are lowercase first; e.g. variableName
    • Acronyms should be upper class and separated by an underscore to prevent run-on; e.g. MyHTTP_Service

Filenames

  • Filenames should be all lowercase to prevent issues on case-insensitive file systems.
  • It should indicate the main class defined within, with words seperated by underscores e.g. class_name.py
    • Runnable filenames (like in examples), should use dash instead of underscore e.g. my-test.py
      1. This prevents accidental importing from them
      2. Allows you to name an example after widget without conflicting names.

Hierarchy

Generally;

  • Simple views should be under widgets
  • Data requests things under dialogs
  • Complex things under gadgets e.g things that have their own window.

Move things into submodules if they need to span multiple files

If you make a widget, add a sample use-case into examples

Debugging

Obviously using print() isn't going to work, so use the logging module and prefix your logger with vindauga. You can use postMessage from widgets.message_window to log into a Vindauga window. See info-box.py

Release files for vindauga 0.6.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for vindauga 0.6.9
File Size Uploaded
vindauga-0.6.9.tar.gz 3.2 MB Details

Built distribution (wheel)

Table of built distributions (wheels) for vindauga 0.6.9
File Interpreter ABI Platform
vindauga-0.6.9-py3-none-any.whl Python 3 none any Details

Total release size: 3.5 MB

Release files / vindauga-0.6.9.tar.gz

Download URL vindauga-0.6.9.tar.gz
Size 3.2 MB
Tags Source
SHA-256 checksum
How to use checksums
00f06df063d682413477c3aa125dc07756c5ce19e882d68f8bc0b333ad8555bf
BLAKE2b-256 checksum
How to use checksums
935d16b138a8540dbbbfa2cdc830f903c75892bba4c92ddc957aec2985a4629b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release files / vindauga-0.6.9-py3-none-any.whl

Download URL vindauga-0.6.9-py3-none-any.whl
Size 305.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
50e9b5a0ed83a9154903420f483f4ec5f7f1784565c740ddf7f226716a106d60
BLAKE2b-256 checksum
How to use checksums
51ad3836a50393fd14ab4818e9f64860266ef8efb0012811136a42bfbf7f6b94
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

Release history Release notifications | RSS feed

This release

0.6.9 This release

2 release files

0.6.6

2 release files

0.6.5

2 release files

0.6.1

2 release files

0.6.0

2 release files

0.5.1

2 release files

0.5.0

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

0.0.17

2 release files

0.0.16

2 release files

0.0.15

2 release files

0.0.14

2 release files

0.0.10

2 release files

0.0.9

2 release files

0.0.8

2 release files

0.0.7

2 release files

0.0.6

2 release files

0.0.5

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page