GTK built-in color names (eg: "green", "purple")

2015-02-02 Thread John W
Is there a way to re-define the RGB values of built-in color names in GTK? Perhaps using .gtkrc? Ideally I don't want to compile a custom binary... Background, for those interested: I use Vim, both the commandline version (vim) and GUI vesrion (gvim). The gui version is built on GTK. In my color

Re: GTK built-in color names (eg: "green", "purple")

2015-02-02 Thread Emmanuele Bassi
hi; On 2 February 2015 at 18:04, John W wrote: > Is there a way to re-define the RGB values of built-in color names in GTK? no. > So back to the point: is there any way to change GTK's mapping for color > names? > Or perhaps have GTK use X11 color names? GTK+ parses CSS-like color strings lik

Re: Multithreaded application freezing

2015-02-02 Thread Gulshan Singh
I've made a simplified example of this and asked it on StackOverflow: http://stackoverflow.com/questions/28287520/cant-type-in-gtkentry-after-exiting-forked-window-manager Any help is appreciated. On Fri Jan 30 2015 at 1:12:55 PM Gulshan Singh wrote: > I'm working on a display manager here: > ht

Re: Multithreaded application freezing

2015-02-02 Thread G Hasse
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 transported over some message buss. (example: www.spread.or

Re: Multithreaded application freezing

2015-02-02 Thread G Hasse
Den 2015-02-02 23:07, G Hasse skrev: One more example: http://youtu.be/uy0vJhp3zvw /gh 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 pr

Re: Multithreaded application freezing

2015-02-02 Thread Jasper St. Pierre
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 process. Between processes you should > find a good protocol. This protocol should be tra