Is GTK+ 3.13.2 broken?

2014-07-14 Thread qlb1234
Hi all, I've just downloaded gtk+-3.13.2.tar.xzhttps://download.gnome.org/sources/gtk+/3.13/gtk+-3.13.2.tar.xz and found it won't build on MinGW (maybe in others too) because of the Makefile was doing nothing at all. make all-recursive make[1]: Entering directory `/libs/gtk+/gtk+-3.13.2' Making

How to do backend-per-process with GDBus properly

2014-07-14 Thread Milan Crha
Hello, there is an effort in evolution-data-server to change address book and calendar factories to run each backend in a separate process, pretty much like webkit2 runs its views. The reason is obvious, if one backend misbehaves, then the other backends, including the factory process,

GTK+ app development: avahi service browsing and Gtk+ main loop problem

2014-07-14 Thread Andrei Macavei
Hey folks, I am creating an application in python and gtk+ 3 that uses avahi to broadcast itself on the network. The program should publish itself on the network but also discover other instances of it , like an avahi client/server. For the publishing and browsing of services on network i'm

Segmentation fault in creating basic app using GTK+ (with C)

2014-07-14 Thread Anoop Neem
This application is intended to convert value entered in Text entry field (in Celcius) to Farenheit in label. I was having hard time in altering the properties of two widgets (other than calling widget) in the same callback, hence created a structure 'struct mulptr' for passing two widgets. But

Re: Segmentation fault in creating basic app using GTK+ (with C)

2014-07-14 Thread David Nečas
On Tue, Jul 01, 2014 at 01:39:03AM -0700, Anoop Neem wrote: p-one = textEntry; p-two = label; Here the unititialised textEntry and label pointers are assigned to the struct fields. textEntry = gtk_entry_new(); calButton = gtk_button_new_with_label(Calculate); And

Re: Segmentation fault in creating basic app using GTK+ (with C)

2014-07-14 Thread zz
On Tuesday 01 July 2014 10:39:03 Anoop Neem wrote: Hi, try: p-two = label = gtk_label_new(a); p-one = textEntry = gtk_entry_new() hope this helps, zz ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org

Re: Segmentation fault in creating basic app using GTK+ (with C)

2014-07-14 Thread Marcus Karlsson
On Tue, Jul 01, 2014 at 01:39:03AM -0700, Anoop Neem wrote: This application is intended to convert value entered in Text entry field (in Celcius) to Farenheit in label. I was having hard time in altering the properties of two widgets (other than calling widget) in the same callback, hence

Re: How to do backend-per-process with GDBus properly

2014-07-14 Thread Tristan Van Berkom
Hi Milan, On Fri, 2014-05-30 at 17:34 +0200, Milan Crha wrote: [...] In case of another client trying to open a different backend, the steps above will look the same, only the factory will open a new subprocess. The subprocess part makes it complicated, because: a) the needed D-Bus