Re: g_spawning three processes: one after another only when...

2005-10-10 Thread Colossus
Colossus wrote: Olivier Sessink wrote: you could also spawn '/bin/sh cat archive.tar.bz2 |bzip2 -d | tar --delete -v file_to_del | bzip2 archive.tar,bz2' There is a problem in the set of piped command above. The last filename (the one in bzip2) must be different from the first one (the

Re: Threads Glade

2005-10-10 Thread lucapetra (sent by Nabble.com)
Thanks, this helps ;) Now i have another question. How can I cast a gpointer to a struct? It seems to be very hard to do :( -- Sent from the Gtk+ - Apps Dev forum at Nabble.com: http://www.nabble.com/Threads-Glade-t364295.html#a1079920 ___

Re: z-order of gtk windows on win32

2005-10-10 Thread John Cupitt
On 10/3/05, Allin Cottrell [EMAIL PROTECTED] wrote: On Sun, 2 Oct 2005, Hubert Sokolowski wrote: On Sat, 1 Oct 2005 09:56:40 -0400 (EDT) Allin Cottrell [EMAIL PROTECTED] wrote: When the graph-editing dialog is closed, I expect the graph window to remain above the original, main window.

Re: Threads Glade

2005-10-10 Thread Roger Leigh
On Mon, Oct 10, 2005 at 04:52:48AM -0700, lucapetra (sent by Nabble.com) wrote: Now i have another question. How can I cast a gpointer to a struct? It seems to be very hard to do :( Not really: struct foo orig; gpointer gptr = (gpointer) foo; // gpointer from pointer-to-struct struct foo

Text Label on top of button Image

2005-10-10 Thread Bill Sousan
Is there a way to have a text label on top of a button image? What I am looking to do is to customize the button widget with images for the pressed and released button states. However, I still want to have a label on top of the image so that I can change the text and font size without having to

Losing GtkTextBuffer when threading

2005-10-10 Thread Dan McKinnon
Hello, My project is a simple telnet terminal designed to help me understand GTK+ with network programming. I have a struct called networktype: typedef struct networktype{ ... GtkTextBuffer *output_buffer; .. } networktype; I have a function: void append_to_buffer( GtkTextBuffer