[pygtk] pygtk - gtkglext

2002-07-13 Thread Ben Hines
I assume this is because gtkgl 2.0 does not exist: (no gtkglarea for gtk2) checking for gtkgl-2.0 = 1.99.0... Package gtkgl-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gtkgl-2.0.pc' Perhaps pygtk2 could use the new gtkglext instead.

Re: [pygtk] Plugs and Sockets

2002-07-13 Thread James Henstridge
John J Breen wrote: Hey, I am having some trouble getting plugs and sockets to work correctly. I have visited http://www.gnome.org/~james/pygtk-docs/class-gtksocket.html to see the necessary calls I need to make but gtk.mysocket.get_id() does not seem to be working. It doesnt seem to be

Re: [pygtk] pygtk - gtkglext

2002-07-13 Thread James Henstridge
Ben Hines wrote: I assume this is because gtkgl 2.0 does not exist: (no gtkglarea for gtk2) checking for gtkgl-2.0 = 1.99.0... Package gtkgl-2.0 was not found in the pkg-config search path. Perhaps you should add the directory containing `gtkgl-2.0.pc' Perhaps pygtk2 could use the new

Re: [pygtk] pygtk - gtkglext

2002-07-13 Thread Ben Hines
On Saturday, July 13, 2002, at 03:28 AM, James Henstridge wrote: Ben Hines wrote: I assume this is because gtkgl 2.0 does not exist: (no gtkglarea for gtk2) checking for gtkgl-2.0 = 1.99.0... Package gtkgl-2.0 was not found in the pkg-config search path. Perhaps you should add the

[pygtk] Re: list like behaviour for GtkListStore

2002-07-13 Thread Jonathan Blandford
James Henstridge [EMAIL PROTECTED] writes: I added a quick modification to the GtkListStore wrapper so the following is now possible: import gtk store = gtk.ListStore(int, int, str, str) nice. Can I do 'object' too? store.append() GtkTreeIter at 0x81a8b80

Re: [pygtk] FAQ links

2002-07-13 Thread Shandy Brown
I know it's kind of AOLish, but I think click here would fit more naturally into some of the contexts than link. Shandy On Sat, 2002-07-13 at 11:21, Christian Reis wrote: I've been messing with faqwiz the past days to make it nicer. I've made the following changes: a) Starting a line

Re: [pygtk] FAQ links

2002-07-13 Thread Christian Reis
On Sat, Jul 13, 2002 at 01:26:41PM -0400, Shandy Brown wrote: I know it's kind of AOLish, but I think click here would fit more naturally into some of the contexts than link. click here doesn't take into account people using text or text-to-voice browsers, so it's bad accessibility. I'm trying

Re: [pygtk] list like behaviour for GtkListStore

2002-07-13 Thread Christian Reis
On Sat, Jul 13, 2002 at 12:36:35PM +0800, James Henstridge wrote: I added a quick modification to the GtkListStore wrapper so the following is now possible: import gtk store = gtk.ListStore(int, int, str, str) store.append() GtkTreeIter at 0x81a8b80 Will append()

[pygtk] Re: list like behaviour for GtkListStore

2002-07-13 Thread James Henstridge
Jonathan Blandford wrote: James Henstridge [EMAIL PROTECTED] writes: I added a quick modification to the GtkListStore wrapper so the following is now possible: import gtk store = gtk.ListStore(int, int, str, str) nice. Can I do 'object' too? Yes. 'object' gets

Re: [pygtk] list like behaviour for GtkListStore

2002-07-13 Thread James Henstridge
Christian Reis wrote: On Sat, Jul 13, 2002 at 12:36:35PM +0800, James Henstridge wrote: I added a quick modification to the GtkListStore wrapper so the following is now possible: import gtk store = gtk.ListStore(int, int, str, str) store.append() GtkTreeIter at