Re: Reducing space between treeview rows

2006-03-25 Thread Doug McLain
I've tried different themes as well as setting xthickness and ythickness manually in both my theme's rc file and the applications rc file. Gus Koppel wrote: Doug McLain wrote: I am trying to reduce the spacing between rows of text in a single column treeview. Ive been experimenting with bot

Re: Reducing space between treeview rows

2006-03-25 Thread Gus Koppel
Doug McLain wrote: > I am trying to reduce the spacing between rows of text in a single > column treeview. Ive been experimenting with both the ypad and height > properties. They both work in adding space, but neither will take any > space out. Seems like anything less than about ypad=3 does

Reducing space between treeview rows

2006-03-25 Thread Doug McLain
I am trying to reduce the spacing between rows of text in a single column treeview. Ive been experimenting with both the ypad and height properties. They both work in adding space, but neither will take any space out. Seems like anything less than about ypad=3 doesn't do anything. With a fo

Re: stdio and/or network events?

2006-03-25 Thread Dan McMahill
David Necas (Yeti) wrote: On Fri, Mar 24, 2006 at 10:01:33PM -0500, Dan McMahill wrote: Is there a mechanism in gtk to detect the event of the app being fed some input on stdin and/or via a network socket? See GIOChannels. Yeti Thanks! That did the trick. -Dan __

Gtk-CRITICAL: gtk_pixmap_set: assertion....

2006-03-25 Thread Ang Bodhi
Hi, My application is getting the following error messages when it is closed by clicking on its close window button: (qmorf:27039): Gdk-CRITICAL **: gdk_drawable_get_depth: assertion `GDK_IS_DRAWABLE (drawable)' failed (qmorf:27039): Gtk-CRITICAL **: gtk_pixmap_set: assertion `gdk_colormap_get

Re: Issue with gtk+ 2.8.15 for win32

2006-03-25 Thread Elden Armbrust
David Necas (Yeti) wrote: On Sat, Mar 25, 2006 at 07:11:36AM -0500, Elden Armbrust wrote: The whole thing is quite confusing. The code in the tutorial on the gtk site uses destroy_event, I can see only three signal connections there: to "delete_event", "destroy", and "clicked" (of the

Re: Issue with gtk+ 2.8.15 for win32

2006-03-25 Thread David Necas (Yeti)
On Sat, Mar 25, 2006 at 07:11:36AM -0500, Elden Armbrust wrote: > The whole thing is quite confusing. The code in the tutorial on the gtk > site uses destroy_event, I can see only three signal connections there: to "delete_event", "destroy", and "clicked" (of the button), no "destroy_event". >

Re: Issue with gtk+ 2.8.15 for win32

2006-03-25 Thread Elden Armbrust
The whole thing is quite confusing. The code in the tutorial on the gtk site uses destroy_event, but uses g_signal_connect. Glade, however, appears to be using gtk_signal_connect. This, I assume, is why the tutorial code worked while the glade code didn't. So for future reference: Use g_signal

Re: stdio and/or network events?

2006-03-25 Thread David Necas (Yeti)
On Fri, Mar 24, 2006 at 10:01:33PM -0500, Dan McMahill wrote: > > Is there a mechanism in gtk to detect the event of the app being fed > some input on stdin and/or via a network socket? See GIOChannels. Yeti -- That's enough. ___ gtk-app-devel-list

Re: Issue with gtk+ 2.8.15 for win32

2006-03-25 Thread David Necas (Yeti)
On Fri, Mar 24, 2006 at 09:11:26PM -0600, Nickolai Dobrynin wrote: > 1. Use "destroy" rather than "destroy_event" as the second argument to your > call. "destroy" is a signal rather than an event. That was confusing. "destroy-event" (note the use of underscores was deprecated) is a signal