Re: [pygtk] More info on previous question: Unknown widget class: GnomeApp

2000-06-05 Thread Matt Wilson
Be sure you installed the pygnome-libglade package. Matt On Mon, Jun 05, 2000 at 12:42:38AM -0700, Mike Payson wrote: I haven't recieved a response to my previous question, so I thought a bit more info might help... After executing the libglade tutorial at

Re: [pygtk] More info on previous question: Unknown widget class: GnomeApp

2000-06-05 Thread Mike Payson
Matt Wilson wrote: Be sure you installed the pygnome-libglade package. Thanks... That was the problem. Mike Matt On Mon, Jun 05, 2000 at 12:42:38AM -0700, Mike Payson wrote: I haven't recieved a response to my previous question, so I thought a bit more info might help... After

[pygtk] Signal handling

2000-06-05 Thread Luca Minuti
I have a problem trying to install a new signal handler. I try this program: #!/usr/bin/env python from signal import * from gtk import * def signal_handler(sig, frame): print "Received signal %s" % (sig) signal(10, signal_handler) win = GtkWindow() win.set_usize(100,100) win.show()

Re: [pygtk] Signal handling

2000-06-05 Thread Hrvoje Niksic
"Luca Minuti" [EMAIL PROTECTED] writes: #!/usr/bin/env python from signal import * from gtk import * def signal_handler(sig, frame): print "Received signal %s" % (sig) signal(10, signal_handler) win = GtkWindow() win.set_usize(100,100) win.show() win.connect("destroy",

Re: [pygtk] Signal handling

2000-06-05 Thread Matt Wilson
On Mon, Jun 05, 2000 at 03:17:02PM +0200, Luca Minuti wrote: My program must do this: if someone make some change to the data that the program manipulate other instance of the same program must update their own view. Have your program set up a named pipe and add an input hander on that file

Re: [pygtk] Signal handling

2000-06-05 Thread Hrvoje Niksic
"Luca Minuti" [EMAIL PROTECTED] writes: I think that the use of the signal is not the only possible solution for me. But I don't know others inter process comunication tecnique. My program must do this: if someone make some change to the data that the program manipulate other instance of