Travis E. Oliphant wrote:
> In short, I don't like the chaining effect of wrapper on top of wrapper. 
>   I want to make the connection to platform libraries as simple as 
> possible.   Ultimately, I also think PyGUI should provide a simple 
> look-and-feel of its own as well for situations where there is no 
> "platform" look and feel (i.e. Unix users without either KDE or GNOME 
> and just X11 or some other windowing environment).

Normally, I would agree with you about eliminating "needless 
wrapperism". However, GUIs are one of the few areas where wrappers tend 
to have a fairly small performance impact. The reason for this is 
because the underlying native code is doing most of the heavy lifting, 
and the wrappers are only the tip of the iceberg. Typically, the wrapper 
code only gets run when the user actually does something, like click a 
mouse button; The rest of the time its all native code.

-- Talin
_______________________________________________
Python-3000 mailing list
Python-3000@python.org
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to