public class ToggleAction : Action, Buildable {
public weak bool active { get; set; } ;
public weak bool draw_as_radio { get; set; } ;
public ToggleAction ( string name,
string? label,
string? tooltip,
string? stock_id ) ;
public signal void toggled ( ) ;
public bool get_active ( ) ;
public bool get_draw_as_radio ( ) ;
public void set_active ( bool is_active ) ;
public void set_draw_as_radio ( bool draw_as_radio ) ;
}

public ToggleAction ( string name,
string? label,
string? tooltip,
string? stock_id ) ;
public signal void toggled ( ) ;
public weak bool active { get; set; } ;
public weak bool draw_as_radio { get; set; } ;
public bool get_active ( ) ;
public bool get_draw_as_radio ( ) ;
public void set_active ( bool is_active ) ;
public void set_draw_as_radio ( bool draw_as_radio ) ;
Created by Valadoc