GtkPaned Question

2008-11-12 Thread Kevin DeKorte
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have a GtkPaned object that I have added two children too using paned = gtk_vpaned_new(); ' child1 is a vbox with a couple of items in it ' child2 is a vbox with a couple of items in it gtk_paned_pack1(paned,child1,TRUE,TRUE); gtk_paned_pack2(pane

glib main loop without gtk

2008-11-12 Thread Thomas Stover
So if one wants to use g_io_channels with out gtk (console / server app), what exactly is the idea? Does glib need an initialization function called first? I see the g_main_loop_new() and friends functions, and that part make sense. The thing is g_io_add_watch_full() type functions don't have a

Re: checking for gdk/gdkx.h

2008-11-12 Thread Emmanuele Bassi
On Wed, 2008-11-12 at 13:02 -0500, Dr. Michael J. Chudobiak wrote: > What is the correct way to check for the presence of gdkx.h on a system? if CFLAGS and LIBS are required: PKG_CHECK_MODULES(GDK_X11, [gdk-x11-2.0], [have_gdk_x11=yes], [have_gdk_x11=no]) or,

Re: checking for gdk/gdkx.h

2008-11-12 Thread A. Walton
On Wed, Nov 12, 2008 at 1:02 PM, Dr. Michael J. Chudobiak <[EMAIL PROTECTED]> wrote: > What is the correct way to check for the presence of gdkx.h on a system? > This doesn't work for me: > > +# Checks for GDK X11 support; GDK & GTK on Mac OS X do not provide X11 > +# extensions if compiled to use

checking for gdk/gdkx.h

2008-11-12 Thread Dr. Michael J. Chudobiak
What is the correct way to check for the presence of gdkx.h on a system? This doesn't work for me: +# Checks for GDK X11 support; GDK & GTK on Mac OS X do not provide X11 +# extensions if compiled to use the Quartz backend. +# +HAVE_GDKX=no +AC_CHECK_HEADER(gdk/gdkx.h, + [HAVE_GDKX