public class Expander : Bin, Implementor, Buildable {
public weak bool expanded { get; construct set; } ;
public weak string label { get; construct set; } ;
public weak Widget label_widget { get; set; } ;
public weak int spacing { get; set; } ;
public weak bool use_markup { get; construct set; } ;
public weak bool use_underline { get; construct set; } ;
public Expander ( string label ) ;
public Expander.with_mnemonic ( string label ) ;
public signal void activate ( ) ;
public bool get_expanded ( ) ;
public weak string get_label ( ) ;
public weak Widget get_label_widget ( ) ;
public int get_spacing ( ) ;
public bool get_use_markup ( ) ;
public bool get_use_underline ( ) ;
public void set_expanded ( bool expanded ) ;
public void set_label ( string label ) ;
public void set_label_widget ( Widget label_widget ) ;
public void set_spacing ( int spacing ) ;
public void set_use_markup ( bool use_markup ) ;
public void set_use_underline ( bool use_underline ) ;
}

public Expander ( string label ) ;
public Expander.with_mnemonic ( string label ) ;
public signal void activate ( ) ;
public weak bool expanded { get; construct set; } ;
public weak string label { get; construct set; } ;
public weak Widget label_widget { get; set; } ;
public weak int spacing { get; set; } ;
public weak bool use_markup { get; construct set; } ;
public weak bool use_underline { get; construct set; } ;
public bool get_expanded ( ) ;
public weak string get_label ( ) ;
public weak Widget get_label_widget ( ) ;
public int get_spacing ( ) ;
public bool get_use_markup ( ) ;
public bool get_use_underline ( ) ;
public void set_expanded ( bool expanded ) ;
public void set_label ( string label ) ;
public void set_label_widget ( Widget label_widget ) ;
public void set_spacing ( int spacing ) ;
public void set_use_markup ( bool use_markup ) ;
public void set_use_underline ( bool use_underline ) ;
Created by Valadoc