Hi,
I wonder if it would be possible to remove gtk's global variables?
I'd like to do something like:
GtkCtx *gtk_ctx = gtk_init(..);
GtkWindow *window = gtk_window_new(gtk_ctx, ...);
...
gtk_main_loop(gtk_ctx);
So in this way it would be possible to run many gtk main loop in
different threads but in the same process.