gtk_window_deiconify

2006-06-30 Thread 3saul
..can I use this function to deiconify the window of another application or only a window belonging to the application that called the function? If it can deiconify other windows how do I get the window name of a specific application? -- View this message in context: http://www.nabble.com/gtk_w

Re: Help!Whic h widget is my need!

2006-06-30 Thread David M. Cook
On Sat, Jul 01, 2006 at 09:26:38AM +0800, chao yeaj wrote: > glimmering with green(color);but when the device meet some exception > error,or broken down, the corresponding indicator will glimmering with > red(color). >In a word,it works like a radio button,but it is glimmering,and > the indic

Help!Which widget is my need!

2006-06-30 Thread chao yeaj
Hello everyone First,i ma really sorry for my terrible English. In my application,there are many peripherals device indicators, When one device working smoothly,the corresponding indicator will glimmering with green(color);but when the device meet some exception error,or broken down, t

Re: File Selector Filter, directory only

2006-06-30 Thread Peter Robinson
Thanks, that did the trick. The GtkFileChooser is much easier to use than the GtkFileSelection, I would suggest replacing the page: http://www.gtk.org/tutorial/x1228.html with the material http://developer.gnome.org/doc/API/2.0/gtk/GtkFileChooserDialog.html#gtkfilechooser-typical-usage there

Re: Subject Prefix in the mailing list

2006-06-30 Thread Sander Marechal
Olaf Frączyk wrote: > On Fri, 2006-06-30 at 04:34 -0700, Van H Tran wrote: >> Hi all, >> I'm just wondering if gtk-app-devel-list mailing list >> should include some prefix, something like >> [gtk-app-dev] before each subject? >> >> I'm subscribed to a few mailing lists and it can get >> quite con

Re: gtk_statusbar!

2006-06-30 Thread Fernando Apesteguía
As I previously said, you should call to gtk_main_iteration after you do a GUI change (update the gtk_statusbar, update a label, whatever...). If not, the GUI will be updated when the control is out of the callback (and you call to real_operation() from a callback) Try with the links I posted befo

Re: Subject Prefix in the mailing list

2006-06-30 Thread Olaf Frączyk
On Fri, 2006-06-30 at 04:34 -0700, Van H Tran wrote: > Hi all, > I'm just wondering if gtk-app-devel-list mailing list > should include some prefix, something like > [gtk-app-dev] before each subject? > > I'm subscribed to a few mailing lists and it can get > quite confusing sometimes. > > TranV

Subject Prefix in the mailing list

2006-06-30 Thread Van H Tran
Hi all, I'm just wondering if gtk-app-devel-list mailing list should include some prefix, something like [gtk-app-dev] before each subject? I'm subscribed to a few mailing lists and it can get quite confusing sometimes. TranVan Hoang, ___ gtk-app-devel

Re: Correct way to free a pixbuf

2006-06-30 Thread Yeti
On Fri, Jun 30, 2006 at 03:35:48AM -0700, 3saul wrote: > > How do I free the memory occupied by a pixbuf (or don't I need to)? Release your reference with g_object_unref(). If nothing else uses the pixbuf it will be destroyed, but if it is used by something else it will continue to exist until t

Correct way to free a pixbuf

2006-06-30 Thread 3saul
How do I free the memory occupied by a pixbuf (or don't I need to)? -- View this message in context: http://www.nabble.com/Correct-way-to-free-a-pixbuf-tf1872501.html#a5118198 Sent from the Gtk+ - Apps Dev forum at Nabble.com. ___ gtk-app-devel-list m

Re: File Selector Filter, directory only

2006-06-30 Thread Santhosh
> > filew = gtk_file_selection_new ("Open File"); > I didn't know that you are using GtkFileSelection Dialog... It is a older widget... It is getting replaced by GtkFileChooserDialog (Since Gtk+ 2.4)... > > gtk_file_chooser_set_action (GTK_FILE_SELECTION (filew), > You are missin

Re: Get width of window

2006-06-30 Thread Iago Rubio
On Thu, 2006-06-29 at 20:57 -0700, 3saul wrote: > How do I get the current width of my window? It's not decorated so I don't > need to worry about that. voidgtk_window_get_size (GtkWindow *window, gint *width,