Re: Multithreaded application freezing

2015-02-03 Thread G Hasse
Den 2015-02-03 03:26, Jasper St. Pierre skrev: On Mon, Feb 2, 2015 at 5:07 PM, G Hasse > wrote: Den 2015-02-02 22:57, Gulshan Singh skrev: I strongly advice designing an application in this way. Every window in an application should be a separate proces

Re: Multithreaded application freezing

2015-02-03 Thread Jasper St. Pierre
Why? Having two socket connections make up one client can't really work out, considering they're two different streams which can't be synchronized between. On Tue, Feb 3, 2015 at 12:05 AM, G Hasse wrote: > Den 2015-02-03 03:26, Jasper St. Pierre skrev: > > > > On Mon, Feb 2, 2015 at 5:07 PM, G

Child Properties and gsettings.

2015-02-03 Thread Konstantin P.
How can I bind to child property of particular child using g_settings_bind? It is even possible? ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-list

Re: Child Properties and gsettings.

2015-02-03 Thread Emmanuele Bassi
hi; On 3 February 2015 at 14:50, Konstantin P. wrote: > How can I bind to child property of particular child using g_settings_bind? > It is even possible? you can't. the child (and style) properties added by GTK are separate from the GObject properties; they are stored in their own pool, and the

Re: Multithreaded application freezing

2015-02-03 Thread Paul Davis
On Tue, Feb 3, 2015 at 3:05 AM, G Hasse wrote: > Den 2015-02-03 03:26, Jasper St. Pierre skrev: > > > > On Mon, Feb 2, 2015 at 5:07 PM, G Hasse wrote: > >> Den 2015-02-02 22:57, Gulshan Singh skrev: >> >> I strongly advice designing an application in this way. Every window in >> an applicatio

Re: Multithreaded application freezing

2015-02-03 Thread Emmanuele Bassi
hi; On 2 February 2015 at 22:07, G Hasse wrote: > Den 2015-02-02 22:57, Gulshan Singh skrev: > > I strongly advice designing an application in this way. Every window in an > application should be a separate process. Between processes you should > find a good protocol. This protocol should be tra