Re: g_signal_connect_swapped

2006-11-26 Thread Matt Hoosier
On 11/25/06, Richard <[EMAIL PROTECTED]> wrote: > > Could someone explain the reason for this function > > "g_signal_connect_swapped" > > I have read the manual here: > > http://www.gtk.org/tutorial/x159.html > > where it says: > > , > | g_signal_connect_swapped() is the same as g_signal_connec

Re: GTK+ Draw a Rectangle over other widgets?

2006-08-20 Thread Matt Hoosier
Because some Gtk+ widgets use their own X11 windows while others render themselves into a parent widget's X11 window, this may be a harder job than you think. The most consistent solution might be to allocate another X11 window (perhaps in pop-up mode, so suppress window decorations), manually posi

Re: resource sizes with gdk-pixbuf-csource

2006-08-07 Thread Matt Hoosier
On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On Mon, Aug 07, 2006 at 09:46:43AM -0500, Matt Hoosier wrote: > > On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > >On Mon, Aug 07, 2006 at 09:21:26AM -0500, Matt Hoosier wrote: > [...] > &g

Re: resource sizes with gdk-pixbuf-csource

2006-08-07 Thread Matt Hoosier
On 8/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > On Mon, Aug 07, 2006 at 09:21:26AM -0500, Matt Hoosier wrote: > > Hi, > > > > I'd like to use gdk-pixbuf-csource for the usual reasons (to eliminate > > runtime file access in an application). > [

resource sizes with gdk-pixbuf-csource

2006-08-07 Thread Matt Hoosier
Hi, I'd like to use gdk-pixbuf-csource for the usual reasons (to eliminate runtime file access in an application). I've noticed that the C arrays created by this, even when compiled to object code, are much larger (at least for the PNG's I'm trying) than the original graphic file. For example, g

Re: Displaying text as a vertical marquee

2006-07-17 Thread Matt Hoosier
Yes, I agree with all those concerns. Just trying to look for the "least bad" way to do this :) On 7/17/06, David Nečas (Yeti) <[EMAIL PROTECTED]> wrote: > On Mon, Jul 17, 2006 at 03:09:37PM -0500, Matt Hoosier wrote: > > This is occurring inside of a widget whic

Re: Displaying text as a vertical marquee

2006-07-17 Thread Matt Hoosier
This is occurring inside of a widget which auto-responds to locale changes. I'd hoped to avoid iterating across (and reformatting) the input whenever a set_text() call occurs. Thanks On 7/17/06, David Nečas (Yeti) <[EMAIL PROTECTED]> wrote: > On Mon, Jul 17, 2006 at 02:28:43

Displaying text as a vertical marquee

2006-07-17 Thread Matt Hoosier
Does anybody have some ideas about a clean way to format some text as a vertical marquee without resorting to Pango layout/font manipulation? I.e., if "foobar" is the text, then it should be rendered with the characters stacked one atop the other: f o o b a r Thanks, Matt

Re: How to stack widgets or GtkFixed doesn't seem to work well for stacking

2006-05-14 Thread Matt Hoosier
I'm a co-worker of the original poster on this thread. Part of the trouble with using a new dialog is that it allocates a new X11 window, which is not guaranteed to be alpha blended with the parent window. Platforms with a compositing X server support this, but that's a little more difficult to ge