RES: Re: GLib 2.2.0, GTK+ 2.2.0
"Daniel K. O." <[email protected]>
| Newsgroups | gmane.comp.video.gimp.windows.devel |
|---|---|
| Message-ID | <[email protected]> |
Hm... the "doesn't work" problem was with gtk+ 2.0.9. With GTK+ 2.2.0 it
works, but it's still buggy. Give a look at this:
http://www.bras-p2p.com/dko/bug
Here is my code:
--------------
#include <gtk/gtk.h>
GtkWidget *win;
int main(int argc, char *argv[])
{
gtk_init(&argc, &argv);
win = gtk_file_selection_new("test");
g_signal_connect(G_OBJECT(win), "destroy",
G_CALLBACK(gtk_main_quit), NULL);
gtk_widget_show(win);
gtk_main();
}
--------------
Daniel K. O.
> -----Mensagem original-----
> De: Tor Lillqvist [mailto:[email protected]]
> Enviada em: quarta-feira, 15 de janeiro de 2003 19:23
> Para: [email protected]
> Assunto: RES: [gimpwin-dev] Re: GLib 2.2.0, GTK+ 2.2.0
>
>
> Daniel K. O. writes:
>
> > I'm having problems with the GtkFileSelection. The drop down
> menu just
> > doesn't work. Did someone forgot some lines comented?
>
> Sorry, cannot reproduce. More details?
>
> For me, in testgtk with GTK+ 2.2.0 the file selector seems to work as
> it should? A minimal sample program that exhibits the problem would be
> nice. Also, open a bug report on bugzilla.gnome.org so this won't be
> forgotten.
>
> --tml
>