Building a GUI Toolkit

T

Tim Diels

Hi

I was thinking of writing a GUI toolkit from scratch using a basic '2D
library'. I have already come across the Widget Construction Kit.

My main question is: Could I build a GUI toolkit of reasonable
performance with the Widget Construction Kit, would it still feel more
or less lightweight? By reasonable I mean that the user wouldn't think
of the interface as being slow or unresponsive.

I've also thought of using pyglet to build widgets with, but this would
seem to be overkill. As a side question: by using opengl, the work would
be delegated to the GPU rather than the CPU; is this always a good
thing, or does it have downsides as well (performance, power usage, ...)?

Are there any other libraries that may be of interest to me?

Thanks in advance
 
M

Martin P. Hellwig

Hi

I was thinking of writing a GUI toolkit from scratch using a basic '2D
library'. I have already come across the Widget Construction Kit.

My main question is: Could I build a GUI toolkit of reasonable
performance with the Widget Construction Kit, would it still feel more
or less lightweight? By reasonable I mean that the user wouldn't think
of the interface as being slow or unresponsive.

I've also thought of using pyglet to build widgets with, but this would
seem to be overkill. As a side question: by using opengl, the work would
be delegated to the GPU rather than the CPU; is this always a good
thing, or does it have downsides as well (performance, power usage, ...)?

Are there any other libraries that may be of interest to me?

Thanks in advance

It probably depends on how low level you want to go, I have pondered
about the possibility myself to have an all python(ic) gui toolkit,
capable of writing a (x11) windowing manager itself with.
But I decided that using tkinter and just live with its rough corners is
more bang for the buck for me than to reimplement tkinter badly.

However as a thought exercise I did spend some energy on it and I had
the following ideas.
- Need to have direct access to at least x11, cocoa and win32gui;
or even lower than that (if possible/reasonable).
- Only need to abstract enough so I can display a borderless window full
screen or on any position/size.
- Need to provide a wrapper for the input devices too, e.g.: keyboard,
mouse, joystick, touchscreen, etc.
- Optionally graphical acceleration (OpenGL, DirectX, SDL?)
- It would be good that fonts, windows, decoration and icons are all SVG
so that all these items can scale independently.

I also had some more questions:
- How about providing an interface for video playback?
- How about audio?
- How about printing?
- How about multiple displays?
- How about odd sized displays (round, triangle, etc)?
- How to handle 'legacy' gui applications?
- Need to remain completely BSD licensed so that it is possible that it
might some day be incorporated in the standard distribution.

So I gave up on it as it seem to me much to much work for not enough
ROI, but I still would welcome anyone giving it a shot :)
 
L

Lie Ryan

It probably depends on how low level you want to go, I have pondered
about the possibility myself to have an all python(ic) gui toolkit,
capable of writing a (x11) windowing manager itself with.
But I decided that using tkinter and just live with its rough corners is
more bang for the buck for me than to reimplement tkinter badly.

Rather than writing a windowing toolkit from the low-level, I would
rather like to see some wrapper for existing windowing toolkit which
uses more pythonic idioms.

Most popular python GUI toolkit currently in use are only a simple thin
wrapper over the library they're wrapping and exposes a lot of the
design considerations of the language that the toolkit was originally
written in. Yes, even Tkinter that comes with the standard lib is a hack
on top of python and looks much more Tcl-ish than pythonic.

I have always had the idea of writing a windowing toolkit wrapper that
creatively uses python features for maximum expressiveness (e.g.
decorator, with-statement, for-each), but never got the time to write
anything like that.
 
M

Martin P. Hellwig

On 04/20/10 19:53, Lie Ryan wrote:
Rather than writing a windowing toolkit from the low-level, I would
rather like to see some wrapper for existing windowing toolkit which
uses more pythonic idioms.

Most popular python GUI toolkit currently in use are only a simple thin
wrapper over the library they're wrapping and exposes a lot of the
design considerations of the language that the toolkit was originally
written in. Yes, even Tkinter that comes with the standard lib is a hack
on top of python and looks much more Tcl-ish than pythonic.

I have always had the idea of writing a windowing toolkit wrapper that
creatively uses python features for maximum expressiveness (e.g.
decorator, with-statement, for-each), but never got the time to write
anything like that.

Well I suppose you could piggyback on tk for that and rewrapping tkinter
to be more pythonic is probably more doable than rewriting it from scratch.
 
M

Martin P. Hellwig

On 04/20/10 19:53, Lie Ryan wrote:


Well I suppose you could piggyback on tk for that and rewrapping tkinter
to be more pythonic is probably more doable than rewriting it from scratch.

On second thought, if you would like borderless windows (for example to
implement all widgets from scratch), you run into troubles, as
overrideredirect also affects the keyboard focus, so you can't use the
keyboard in any widget created. And also it would be ice to still have
an iconify option.
 
T

Tim Diels

Rather than writing a windowing toolkit from the low-level, I would
rather like to see some wrapper for existing windowing toolkit which
uses more pythonic idioms.

Most popular python GUI toolkit currently in use are only a simple thin
wrapper over the library they're wrapping and exposes a lot of the
design considerations of the language that the toolkit was originally
written in. Yes, even Tkinter that comes with the standard lib is a hack
on top of python and looks much more Tcl-ish than pythonic.

I have always had the idea of writing a windowing toolkit wrapper that
creatively uses python features for maximum expressiveness (e.g.
decorator, with-statement, for-each), but never got the time to write
anything like that.

When (or if) I'd finish this low-level gui toolkit, I'd incorporate it
into my original plans, which were: writing a library that provides the
programmer with 1 API, yet can display the GUI in a terminal (curses),
on the desktop(X/win32/...) or in your web browser (DHTML). Terminal
support would likely be very limited though.

I think I'll go ahead and try to write a wrapper around pyglet and start
writing some basic widgets.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,534
Members
45,008
Latest member
Rahul737

Latest Threads

Top