"HELP/About" was :: [Re: suggestions on user config?]

2012-02-18 Thread Gary Kline
On Thu, Feb 16, 2012 at 05:37:00PM -0800, Gary Kline wrote: > Date: Thu, 16 Feb 2012 17:37:00 -0800 > From: Gary Kline > Subject: suggestions on user config? > To: GTK Devel List > > > if you look at my code, it is as if espeak takes a truckload on > inputs, but really, there are only four: >

Re: An issue with Qt styling and/or threads?

2012-02-18 Thread Bernhard Schuster
What as in a Qt 4.x to 4.y version change that Qt Pixmaps could only be used in the UI thread, and no other thread. This can be considered a bug. If you wrote the code I suggest you to use QImage which can be used anywhere and convert it on the fly to QPixmap, right where you need it to render (not

Re: gtk accelerator problem (GTK+ 2.0)

2012-02-18 Thread jumbophut
On 2/14/12, jumbophut wrote: > const gchar *str = "q"; > gtk_accelerator_parse(str, &keyval, &keymods); > GClosure * closure = g_cclosure_new_swap(G_CALLBACK(popup), NULL, NULL); > > This successfully triggers the popup routine whenever I press the key > q (i.e. on the downstroke). > > Now I chang