[pygtk] GtkHTML and CSS

2000-03-21 Thread Tom Cato Amundsen
Do you know if the new GtkHTML widget support any CSS? Tom Cato To unsubscribe: echo "unsubscribe" | mail [EMAIL PROTECTED]

[pygtk] Two bugs in gtk.py, one fix :-)

2000-03-21 Thread Aaron Optimizer Digulla
The __getattr__ code for GtkTreeItem in gtk.py doesn't work. For one, it reads: if attrs.has_key(attrs): That should have been if attrs.has_key(attr): and secondly, python dumps a core when I try widget.subtree when the GtkTreeItem has no subtree, yet. Here is the stack trace:

[pygtk] help understanding event loop

2000-03-21 Thread Johann Hibschman
Hello, I've only been playing with pygtk for a few days now, and I've just joined the list, so I'm still trying to wrap my brain around it. Could anyone explain the structure of the event loop to me? Or at least point me at the right documentation? What I don't understand are the non-modal

[pygtk] PyQt/PyKDE Bindings

2000-03-21 Thread Michael Lauer
Howdy, don't want to start a flamewar (so please don't comment on Qt/KDE itself), but is someone amongst our little community who has experience with the Python bindings to Qt/KDE ? It seems to me that they're partly automatically generated by some tool named SIP (lightweight SWIG-alike). How do

Re: [pygtk] PyQt/PyKDE Bindings

2000-03-21 Thread Matt Wilson
The PyGTK bindings are not 100% hand crafted. A good deal of them are generated automatically from a generic definition file. Work has stared on a branch that will enable us to build even more of the bindings automatically. I've never found a tool that can do a complete wrapping 100%

Re: [pygtk] PyQt/PyKDE Bindings

2000-03-21 Thread Michael Lauer
The PyGTK bindings are not 100% hand crafted. A good deal of them are generated automatically from a generic definition file. Work has stared on a branch that will enable us to build even more of the bindings automatically. Hmm - I thought that especially the hand crafted stuff do the most

Re: [pygtk] PyQt/PyKDE Bindings

2000-03-21 Thread Matt Wilson
On Wed, Mar 22, 2000 at 01:43:06AM +0100, Michael Lauer wrote: Hmm - I thought that especially the hand crafted stuff do the most work in hiding the naturally not object oriented nature of the native GTK language - C. Umm... nope. The object system in GTK+ wrapps quite well under python.