public class ToggleButton : Button, Implementor, Buildable {
public weak bool active { get; set; } ;
public weak bool draw_indicator { get; set; } ;
public weak bool inconsistent { get; set; } ;
public ToggleButton ( ) ;
public ToggleButton.with_label ( string label ) ;
public ToggleButton.with_mnemonic ( string label ) ;
public signal void toggled ( ) ;
public bool get_active ( ) ;
public bool get_inconsistent ( ) ;
public bool get_mode ( ) ;
public void set_active ( bool is_active ) ;
public void set_inconsistent ( bool setting ) ;
public void set_mode ( bool draw_indicator ) ;
}

public ToggleButton ( ) ;
public ToggleButton.with_label ( string label ) ;
public ToggleButton.with_mnemonic ( string label ) ;
public signal void toggled ( ) ;
public weak bool active { get; set; } ;
public weak bool draw_indicator { get; set; } ;
public weak bool inconsistent { get; set; } ;
public bool get_active ( ) ;
public bool get_inconsistent ( ) ;
public bool get_mode ( ) ;
public void set_active ( bool is_active ) ;
public void set_inconsistent ( bool setting ) ;
public void set_mode ( bool draw_indicator ) ;
Created by Valadoc