Release date of GTK+ 2.0 ?

2002-02-05 Thread Volkan Arslan
Hello, does someone know, when GTK+ 2.0 will be released ? I have looked at www.gtk.org, but couldn't find anything regarding the release date of GTK+ 2.0. Best regards, Volkan Arslan ___ gtk-list mailing list [EMAIL PROTECTED]

[INIMSS] How to avoid focusing on CList column titles.

2002-02-05 Thread Dino
Hi, How can I avoid the focusing of the column titles in a CList when i go thru the widgets in a window using the TAB key. Thank You Dino CK ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: [INIMSS] How to avoid focusing on CList column titles.

2002-02-05 Thread Luciano Chavez
On Tue, 2002-02-05 at 06:21, Dino wrote: Hi, How can I avoid the focusing of the column titles in a CList when i go thru the widgets in a window using the TAB key. Thank You Dino CK ___ gtk-list mailing list [EMAIL PROTECTED]

Re: Release date of GTK+ 2.0 ?

2002-02-05 Thread Havoc Pennington
Volkan Arslan [EMAIL PROTECTED] writes: does someone know, when GTK+ 2.0 will be released ? I have looked at www.gtk.org, but couldn't find anything regarding the release date of GTK+ 2.0. Look at developer.gnome.org/dotplan, it will be out before GNOME 2 is. Havoc

Re: Release date of GTK+ 2.0 ?

2002-02-05 Thread Volkan Arslan
Dear Havoc, thanks for the information. Regards, Volkan Havoc Pennington wrote: Volkan Arslan [EMAIL PROTECTED] writes: does someone know, when GTK+ 2.0 will be released ? I have looked at www.gtk.org, but couldn't find anything regarding the release date of GTK+ 2.0. Look at

Re: Run time error in gtk1.3 application

2002-02-05 Thread Olaf Leidinger
Well, I think you need something like gnome 2.0. Your gnome version (and mine too) uses gtk+-1.2 and when you link your app with the gnome libs it will also use gtk+-1.2 Have a look at gnome-config --libs gnomeui or gnome-config --libs gnome glib+-1.2 and gtk+-1.2 are

auto repeat

2002-02-05 Thread David J. Singer
Hi Can anyone give me some pointers on implementing a form of auto-repeat...? I've looked through the FAQ and the Tutorial, but it's only mentioned as a things to add later when talking about designing custom widgets... I don't want to add repeat to buttons or similar type widgets, but

Re: auto repeat

2002-02-05 Thread Paul Davis
Hi Can anyone give me some pointers on implementing a form of auto-repeat...? I've looked through the FAQ and the Tutorial, but it's only mentioned as a things to add later when talking about designing custom widgets... I don't want to add repeat to buttons or similar type widgets, but

GTK+ equivalent to Motif XtAppProcessEvent()

2002-02-05 Thread Ignacio Nodal
Hi, I want my aplication to stop the gtk_main() until the user press a button, which change the value of a variable called state: while(state == EXIT_WAIT) { **stop gtk_main** } if (state == EXIT_OK) { [...] } else { [...] } -- In Motif I used: while (state ==