Re: How to excute a program in Gtk+?

2003-01-09 Thread ztoon
What do you mean ? Executing an external program in your gtk application ? you don't need a GTK function for that, just call the system(const char *program); function - Original Message - From: anukeey [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 09, 2003 11:44 AM

Re: gtk-1.2 and gtk-2.0

2002-06-30 Thread ztoon
They're structure is done to make them coexist Mon, 1 Jul 2002 12:19:19 +0800 Shark [EMAIL PROTECTED] a écrit: Will they co-exist? If so, how do I deal with other libs, such as glib. Do I upgrade them too? Thanks Shark

strange Seg fault

2002-06-23 Thread ztoon
First, you must know that this following code works perfectly, this is a clist row selection callback. I use it for testing. But there is a problem (yes...) the *y[] var isn't used, but if I delete it from the code, then I get a segmentation fault when executing this code. (very very strange,

using lookup_widget

2002-06-21 Thread ztoon
I have some Segmentations Fault problems using lookup_widget in a window When I click in a Tlist's row, I want a string be added in Plist (just to be sure event works) (and there come's seg fault) Here is simplified window code : // we assume all objects are contained in the window //

Re: Re: using lookup_widget

2002-06-21 Thread ZToon
Thnx Sven, but the day I want to connect multiple wigdets with 1 gtk_signal_connect, I could I do ? Hi, ztoon [EMAIL PROTECTED] writes: I have some Segmentations Fault problems using lookup_widget in a window just try to avoid lookup_widget(). It's inefficient and error-prone. TList

Re: using lookup_widget

2002-06-21 Thread ztoon
seraching for sould be a function like gtk_signal_connect_object(GtkObject,signal,GtkSignalFunc,GTK_OBJECT1,GTK_OBJET2,etc) you see ? 21 Jun 2002 16:26:42 +0200 Sven Neumann [EMAIL PROTECTED] a écrit: ZToon [EMAIL PROTECTED] writes: Thnx Sven, but the day I want to connect multiple