Re: pulseaudio and gtk events issues

2010-02-10 Thread Manu TM
Ok, and thank you... :) Nikolaj Thygesen wrote: Sorry, all I can say is that I currently run pulseaudio-0.9.21.tar.gz :o) It might have been 0.9.11, but I'm not 100%. br - N :o) Manu TM wrote: Do you remember which version of pulseaudio it was? I'm using version:

cool google search entrybox?

2010-02-10 Thread ferar aschkar
greetings, how can I achieve a google search entry like that in firefox with auto-suggest and search history, any examples or links. What about this libsexy library? is there other library like that for creating cool widgets? regards, ferar ___

Re: How I can do Double Buffer whether OpenGl Ext?

2010-02-10 Thread Carlos Pereira
And then you will have a expose callback similar to this: int my_expose (GtkWidget *widget, GdkEventExpose *event, void *data) { GdkGLDrawable *gldrawable = gtk_widget_get_gl_drawable (widget); GdkGLContext *glcontext = gtk_widget_get_gl_context (widget); app_window *my_window = APP_CAST_WINDOW

Re: cool google search entrybox?

2010-02-10 Thread Michael Cronenworth
ferar aschkar wrote: how can I achieve a google search entry like that in firefox with auto-suggest and search history, any examples or links. What about this libsexy library? is there other library like that for creating cool widgets? You will want to use GtkEntryCompletion[1]. [1]

g_spawn_async_with_pipes on windows

2010-02-10 Thread Olivier Sessink
Hi all, we're porting a gtk application to windows, and we're using g_spawn_async_with_pipes() to launch an other executable (firefox in this case). For some reason it fails to execute the binary, locks the gtk application, and nothing happens anymore. We've tested with a full path to the

Re: g_spawn_async_with_pipes on windows

2010-02-10 Thread Tadej Borovšak
Hi Does anyone have a clue how this is supposed to work? The documentaion has a lot of references to win32, so I guess this is supposed to work !? As far as I can remember, spawning functions on windows need a helper executable that is distributed along with glib (I don't remember the exact

Re: g_spawn_async_with_pipes on windows

2010-02-10 Thread Tor Lillqvist
g_spawn_async_with_pipes() to launch an other executable (firefox in this case). Do you expect to provide input to Firefox's stdin, or get output from its stdout, through the pipes then? (That would be a bit strange for a GUI app like a web browser, wouldn't it?) If not, instead of g_spawn_*,