I have several simple Perl programs writing to the standard output, but this has some problems :
- some of my users are scared by a console
- my users works on Windows, so my program output is displayed on a
cmd
console, so I cannot control the way it is displayed (colors and terminal size), and worse, the console is not resizeable (at least in width)
To solve these problems, I would like to be able to display the output in a simple GUI interface as an option. The GUI should be responsive until the program finishes (it should be possible to scroll or resize the window while it's running).
What the simple toolkit and widget I can use to do this? (I develop on Windows with ActivePerl).