Re: [pygtk] PyGNOME2 panel applets

2002-11-01 Thread Martin Grimme
The topic of panel applets in pygnome2 has been raised before, and seemingly, answered succinctly: http://www.daa.com.au/pipermail/pygtk/2002-September/003393.html However, I'm still confused. Using the files attached to the above post, I put GNOME_HelloApplet.server in /home/btonkes/lib/oaf

Re: [pygtk] updating with combo-entry

2002-11-01 Thread mekkaoui omar
Original message Date : Thu, 31 Oct 2002 09:52:14 -0300 De : Christian Reis [EMAIL PROTECTED] Objet : Re: [pygtk] updating with combo-entry A : David M. Cook [EMAIL PROTECTED], [EMAIL PROTECTED] On Wed, Oct 30, 2002 at 04:40:11PM -0800, David M. Cook wrote: On Wed, Oct 30, 2002

Re: [pygtk] updating with combo-entry

2002-11-01 Thread Christian Reis
On Thu, Oct 31, 2002 at 05:45:54PM -0800, David M. Cook wrote: On Thu, Oct 31, 2002 at 09:52:14AM -0300, Christian Reis wrote: What's wrong with combo.entry.connect(insert_text, my_handler) combo.entry.connect(delete_text, my_handler) Won't this signal be send everytime a

Re: [pygtk] error messages

2002-11-01 Thread James Henstridge
Jay Graves wrote: Hello I have created a test app with pygtk and glade. When I run the app the window appears however there are many errors written to the terminal. Can anyone tell me what these mean, and how to get rid of them. Also, for bonus points, how come the app quits when I do a File |

Re: [pygtk] multiple selection in treeview

2002-11-01 Thread george young
On 18 Oct 2002 15:57:38 +1300 Rob Brown-Bayliss [EMAIL PROTECTED] wrote: Hi. How do you do multiple selection in treeview widgets? I have been going over and over the docs looking for something like set_multi_select or what ever and it's either missing for the docs or their is some other

Re: [pygtk] updating with combo-entry

2002-11-01 Thread Christian Reis
On Fri, Nov 01, 2002 at 03:34:41PM +0100, mekkaoui omar wrote: What's wrong with combo.entry.connect(insert_text, my_handler) combo.entry.connect(delete_text, my_handler) ? For this moment, I opt for using a button to update information. In the futur, I prefer to update using

[pygtk] GtkTextIter

2002-11-01 Thread Diego Anzoátegui
Hello, When i read the pygtk-docs, says that create_tag take 2 arguments, but the python interpreter raise an error saying that create_tag takes exactly one argument. Another one: to insert text in TextBuffer i need a TextIter object, but i can't create it with the gtk.TextIter class 'cause

Re: [pygtk] ending application

2002-11-01 Thread Christian Reis
On Fri, Nov 01, 2002 at 11:45:53AM -0400, LDC - Pablo Endres Lozada wrote: This is a mixed question, has some python and pytk I have my python app and it's gui (pygtk), the app has it's own threads so when I exit the gui with gtk.mainquit() it doesn't end all the

Re: [pygtk] ending application

2002-11-01 Thread Rob Brown-Bayliss
On Sat, 2002-11-02 at 04:45, LDC - Pablo Endres Lozada wrote: This is a mixed question, has some python and pytk I have my python app and it's gui (pygtk), the app has it's own threads so when I exit the gui with gtk.mainquit() it doesn't end all the app. How

[pygtk] Crash in pygtk_generic_cell_renderer_get_size()

2002-11-01 Thread Joe Shaw
Hi, I came across a crash in pygtk_generic_cell_renderer_get_size(). It doesn't check to see if the arguments passed in are NULL before passing them to PyArg_ParseTuple(), which dereferences them and crashes. I've filed bug #97436 about it, and attached this patch to it. Joe Index:

Re: [pygtk] ending application

2002-11-01 Thread Andrew W. Schmeder
quote who=LDC - Pablo Endres Lozada I have my python app and it's gui (pygtk), the app has it's own threads so when I exit the gui with gtk.mainquit() it doesn't end all the app. How can I see all the threads and kill them form the interface? What I do is; 1) All

Re: [pygtk] error messages

2002-11-01 Thread Jay Graves
Your glade file makes use of GNOME widgets, but you have not initialised the GNOME libraries. You need to call gnome.init(progname, version) after importing the libs you want (gnome.ui, bonobo.ui, etc). Thank you very much for your help but I am still a bit confused. if I import pygtk,