Re: Resizing window

2006-08-22 Thread Fernando Apesteguía
On 8/22/06, Samuel Cormier-Iijima [EMAIL PROTECTED] wrote: I had the same problem with a FileChooserWidget with an extra GtkExpander widget in it. One solution is to make the window fixed (unresizable). Of course, the downside is that the user can't ­­resize it himself. Let me know if you

g_object_class_install_property

2006-08-22 Thread Madhusudan E
Hi All, I have defined a new widget and I want to install properties. I have defined Gobject_class-set_property Gobject_class-get_property to my local functions. And as well I have installed the property using G_object_class_install_property() But the control is not getting passed to the

Re: Resizing window

2006-08-22 Thread Iago Rubio
On Tue, 2006-08-22 at 11:54 +0200, Iago Rubio wrote: On Tue, 2006-08-22 at 09:22 +0200, Fernando Apesteguía wrote: I'm still looking for a solution. My app has internationalization support. So make the window fixed is not possible in order to allow all the different messages to fit in the

Re: Sockets in GTK+?

2006-08-22 Thread Edward Catmur
On Mon, 2006-08-21 at 19:19 -0400, Samuel Cormier-Iijima wrote: Note that however GNet does NOT use GObject, it rolls its own object type... I kinda wanted a twisted-like framework so that I could for example subclass a GNetServer or otherwise connect signals to it to respond to network

Re: GObject exposure

2006-08-22 Thread Lance Dillon
Maybe it is just me, but I don't see a problem with letting users access the object with gobject methods. If you look at the api, there aren't that many, and there don't seem to be any that would harm too much. Also, restricting access too much prevents people from using it in (perhaps

Re: g_object_class_install_property

2006-08-22 Thread Tristan Van Berkom
Madhusudan E wrote: Hi All, I have defined a new widget and I want to install properties. I have defined Gobject_class-set_property Gobject_class-get_property to my local functions. And as well I have installed the property using G_object_class_install_property() But the control

Re: GObject exposure

2006-08-22 Thread Philip Kovacs
|Maybe it is just me, but I don't see a problem with letting users access the object with gobject methods. If |you look at the api, there aren't that many, and there don't seem to be any that would harm too much. Also, |restricting access too much prevents people from using it in (perhaps

Re: GObject exposure

2006-08-22 Thread Tristan Van Berkom
Philip Kovacs wrote: [...] Maybe I am making more out of this than need be. I have implemented thread- safety in my api's; I require glib=2.8 for thread-safe g_object_[un]ref used internally; all of my gobject properties are construct only/write only; and the user cannot subclass my objects

Pango-1.14.2 released

2006-08-22 Thread Behdad Esfahbod
Pango-1.14.2 is now available for download at: http://download.gnome.org/sources/pango/1.14/ or ftp://ftp.gtk.org/pub/pango/1.14 67b68a6b42dce1eb26e2e9abc31192c5 pango-1.14.2.tar.bz2 0981cf2951b18567e875dbc52f85153f pango-1.14.2.tar.gz\ This is a stable release and is source and binary

RE: g_object_class_install_property

2006-08-22 Thread Madhusudan E
Hi, The property wasn't defined on the object, But it started working when I defined the first_property in g_object_new(). I have a query here, Doesn't the gobject_class-set_property function be invoked without sending the first_property parameter in g_object_new(). If not then somewhere it needs