Re: Gtk Builder and item id

2017-11-07 Thread Emmanuele Bassi
Hi; thanks for your patch; GTK uses Bugzilla to track issues, contributions, and requests for enhancements. Please, file a bug at: https://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2B and attach your patch, so it won't get lost and will be properly reviewed. It would be stellar if you

Gtk Builder and item id

2017-11-07 Thread Christian Schoenebeck
Hi, I noticed that the current Gtk Builder XML parser does not accept an id for "item" elements. Please consider the attached patch to address this. Background: it should be possible to query menu items at runtime to change their labels (text) at any time. CU Christian---

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.