A simple Textual canvas widget.
Project description
textual-canvas
An example of textual-canvas
being used in a Textual application
Introduction
This library aims to provide a very simple terminal-based drawing canvas widget for use with Textual. Initially developed for a (also-being-worked-on-right-now) less general project, I'm making it available on the off-chance anyone else might want to play with it now.
You might not want to rely on this just yet though; I'm still messing and experimenting.
Installing
The package can be installed with pip
or related tools, for example:
$ pip install textual-canvas
It's early days
This is a very early release of this code, it's still very much a work in progress. This means things may change and break; it's also sitting atop Textual which is, of course, still undergoing rapid development. As much as possible I'll try and ensure that it's always working with the latest stable release of Textual.
Also, because it's early days... while I love the collaborative aspect of FOSS, I'm highly unlikely to be accepting any non-trivial PRs at the moment. Developing this is a learning exercise for me, it's a hobby project, and it's also something to help me further test Textual (disclaimer for those who may not have gathered, I am employed by Textualize).
On the other hand: I'm very open to feedback and suggestions so don't hesitate to engage with me in Discussions, or if it's a bug, in Issues. I can't and won't promise that I'll take everything on board (see above about hobby project, etc), but helpful input should help make this as useful as possible in the longer term.
The library
The library provides one very simple widget for use in Textual: Canvas
.
This is a scrollable and focusable widget that can be used to colour
"pixels", acting as a basic building block for drawing other things. The
"pixels" themselves are half a character cell in height, hopefully coming
out roughly square in most environments.
The Canvas
can be imported like this:
from textual_canvas import Canvas
And is created by providing a width and height (in its own idea of "pixels")
plus an optional initial background colour (which should be a Textual
Color
).
In a Textual compose
method you might use it something like this:
yield Canvas( 120, 120, Color( 30, 40, 50 ) )
Currently there are the following methods available for drawing:
clear( self, color: Color | None = None ) -> Self
set_pixel( self, x: int, y: int, color: Color ) -> Self
set_pixels( self, locations: Iterable[ tuple[ int, int ] ], color: Color ) -> Self
draw_line( self, x0: int, y0: int, x1: int, y1: int, color: Color ) -> Self
draw_rectangle( self, x: int, y: int, width: int, height: int, color: Color ) -> Self
draw_circle( self, center_x: int, center_y: int, radius: int, color: Color ) -> Self
I'll document all of this better, when I spend more time on it than the 1/2 hour somewhere between dinner and bedtime.
A quick and dirty example of this being used would be:
from textual.app import App, ComposeResult
from textual.color import Color
from textual_canvas import Canvas
##############################################################################
class CanvasTestApp( App[ None ] ):
"""The Canvas testing application."""
CSS = """
Canvas {
border: round green;
width: 1fr;
height: 1fr;
}
"""
def compose( self ) -> ComposeResult:
yield Canvas( 120, 120, Color( 30, 40, 50 ) )
def on_mount( self ) -> None:
"""Set up the display once the DOM is available."""
canvas = self.query_one( Canvas )
canvas.draw_line( 60, 40, 90, 80, Color( 128, 128, 128 ) )
canvas.draw_line( 60, 40, 30, 80, Color( 128, 128, 128 ) )
canvas.draw_line( 30, 80, 90, 80, Color( 128, 128, 128 ) )
canvas.draw_line( 0, 70, 48, 55, Color( 255, 255, 255 ) )
for n in range( 52, 59 ):
canvas.draw_line( 48, 55, 58, n, Color( 128, 128, 128 ) )
canvas.draw_line( 70, 52, 119, 57, Color( 255, 0, 0 ) )
canvas.draw_line( 71, 53, 119, 58, Color( 255, 165, 0 ) )
canvas.draw_line( 72, 54, 119, 59, Color( 255, 255, 0 ) )
canvas.draw_line( 72, 55, 119, 60, Color( 0, 255, 0 ) )
canvas.draw_line( 73, 56, 119, 61, Color( 0, 0, 255 ) )
canvas.draw_line( 74, 57, 119, 62, Color( 75, 0, 130 ) )
canvas.draw_line( 75, 58, 119, 63, Color( 143, 0, 255 ) )
if __name__ == "__main__":
CanvasTestApp().run()
To see this code in action you, in an environment where the library is installed, run:
$ python -m textual_canvas
You should see something like this:
TODO
Lots. Lots and lots. As mentioned above, there's little tinker project that I'm building on top of this, so I'll be using that to see how this gets fleshed out.
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
Built Distribution
File details
Details for the file textual-canvas-0.2.1.tar.gz
.
File metadata
- Download URL: textual-canvas-0.2.1.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d139b7e651325eb0e931381c9f044526a943c99f42f910ff3070cb196d6128ae |
|
MD5 | 17d7aa0d98f89c1e757893b5dd5d6f16 |
|
BLAKE2b-256 | e7d489a428809823c2b3c805c8601cdefbe5412ba6820d77fc7456b8e301cbe7 |
File details
Details for the file textual_canvas-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: textual_canvas-0.2.1-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 596c14e5d517220e587f9e9b23422d512d977d8dbcd5e818b0377dede80ca828 |
|
MD5 | 780b49b5b99e817ceb4116206a980625 |
|
BLAKE2b-256 | f5b010398c7f415c7b73e45447022704ff3d616f78bc165d64f6ae481bac74c0 |