[Gtk-sharp-list] Accesing the Resize or Shrink property of a Paned Child

Mike Kestner mkestner@speakeasy.net
Wed, 08 Oct 2003 19:00:04 -0500


On Wed, 2003-10-08 at 16:32, Daniel Kornhauser wrote:

>   resize = is_child1 ? paned->child1_resize : paned->child2_resize;
>   shrink = is_child1 ? paned->child1_shrink : paned->child2_shrink;

Those are fields on the GtkPaned struct in C which have no property or
method access in the API.  In order to expose those, we would have to
provide glue methods to access the fields and then customizations to
expose the new methods.  

This looks like something that should have been private to the paned
implementation.  I can't think of a good reason to expose it in the Gtk#
API.

-- 
Mike Kestner <mkestner@speakeasy.net>