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:
>
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
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