problem with gtk_dialog_run

2011-02-16 Thread Jagadeesh
Hi Am working on a window manager, when i use gtk_dialog_run and on closing the window, the frame window remains, how to notify about such windows to window manager thanks and regards, Jagadeesh N V Bangalore ___ gtk-devel-list mailing list gtk-devel

Help with Gobjection Introspection in Lib32 compilation

2011-02-16 Thread rafael ff1
Hi all. I'm compiling some packages from source to lib32 packages for Archlinux. The propose of these lib32 packages is to have only 32-bit library for a 64-bit system - no executable, no documentation, etc. See sample for lib32-alsa-lib: ( http://www.archlinux.org/packages/multilib/x86_64/lib32-a

Re: GLib 2.28.0 released

2011-02-16 Thread jose.ali...@gmail.com
Hi, I've noticed that GLib 2.28 is still not listed in http://library.gnome.org/devel/glib/ Greetings José On Tue, Feb 8, 2011 at 4:51 PM, Matthias Clasen wrote: > GLib 2.28.0 is now available for download at: > >  ftp://ftp.gtk.org/pub/glib/2.28 >  http://download.gnome.org/sources/glib/2.

Re: Re: How gvdb_table_is_valid works on glib/dconf??

2011-02-16 Thread jcupitt
On 16 February 2011 10:50, Joshua Lee wrote: > I'm curious why gvdb_table_is_valid works. Here's the implementation > of gvdb_table_is_valid. > > gboolean > gvdb_table_is_valid (GvdbTable *table) > { >  return !!*table->data; > } Ah I see, sorry. This function will return 1 if table->data points

Re: Re: How gvdb_table_is_valid works on glib/dconf??

2011-02-16 Thread Joshua Lee
Hi jcupitt, I'm curious why gvdb_table_is_valid works. Here's the implementation of gvdb_table_is_valid. /** * gvdb_table_is_valid:

Re: How gvdb_table_is_valid works on glib/dconf

2011-02-16 Thread jcupitt
On Wednesday, 16 February 2011, Joshua Lee wrote: > Then I run the test program, !!*data will always output 1. Here's the > output. Isn't that expected behaviour? Data points to a non-empty string, so *data will always be non-zero. Therefore !*data will always be zero, therefore !!*data will alwa

introspection (and python bindings): callbacks with GError** parameter?

2011-02-16 Thread Christophe Saout
Dear gobject-introspection hackers, I am trying to use some GdkPixbuf methods from Python via PyGI and ran into something that made me wonder. I already wrote to the python-hackers list (pygobject devs) about this issue yesterday: http://mail.gnome.org/archives/python-hackers-list/2011-February/m

How gvdb_table_is_valid works on glib/dconf

2011-02-16 Thread Joshua Lee
Hi Ryan/All, I can not understand while gvdb_table_is_valid can check the on-disk gvdb table is valid. Then i wrote a simple sample to verify it. """ #include #include int main() { GError *err = NULL; gchar *data = NULL; system("echo 'Hello' >/tmp/mapped.txt");