Problem solved, thanks Nicola!

2017-11-07 Thread Nils Söderman
___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-app-devel-list

Re: Jump from PyGTK to C GTK

2017-11-07 Thread Thomas Rønshof
Hi Nils, Try something like this...     builder = gtk_builder_new ();     gtk_builder_add_from_file (builder, "test2.glade", NULL);     window = GTK_WIDGET (gtk_builder_get_object (builder, "window1"));     gtk_builder_connect_signals (builder, NULL);

Re: Jump from PyGTK to C GTK

2017-11-07 Thread Nicola Fontana
Il Tue, 7 Nov 2017 13:52:01 +0100 Nils Söderman scrisse: > Hello, i have been using glade to build a GUI, doing an app to fill the > entry-boxes with data. OK so far. But when i wanted to color the boxes > with help of PyGTK according to their content and did not succeed

Jump from PyGTK to C GTK

2017-11-07 Thread Nils Söderman
Hello, i have been using glade to build a GUI, doing an app to fill the entry-boxes with data. OK so far. But when i wanted to color the boxes with help of PyGTK according to their content and did not succeed with that i decided to start using c instead, where i have 20 years more experience.