public class ToolButton : ToolItem, Implementor, Buildable {
public weak string icon_name { get; set; } ;
public weak Widget icon_widget { get; set; } ;
public weak string label { get; set; } ;
public weak Widget label_widget { get; set; } ;
public weak string stock_id { get; set; } ;
public weak bool use_underline { get; set; } ;
public ToolButton ( Widget icon_widget,
string label ) ;
public ToolButton.from_stock ( string stock_id ) ;
public signal void clicked ( ) ;
public weak string get_icon_name ( ) ;
public weak Widget get_icon_widget ( ) ;
public weak string get_label ( ) ;
public weak Widget get_label_widget ( ) ;
public weak string get_stock_id ( ) ;
public bool get_use_underline ( ) ;
public void set_icon_name ( string icon_name ) ;
public void set_icon_widget ( Widget icon_widget ) ;
public void set_label ( string label ) ;
public void set_label_widget ( Widget label_widget ) ;
public void set_stock_id ( string stock_id ) ;
public void set_use_underline ( bool use_underline ) ;
}

public ToolButton ( Widget icon_widget,
string label ) ;
public ToolButton.from_stock ( string stock_id ) ;
public signal void clicked ( ) ;
public weak string icon_name { get; set; } ;
public weak Widget icon_widget { get; set; } ;
public weak string label { get; set; } ;
public weak Widget label_widget { get; set; } ;
public weak string stock_id { get; set; } ;
public weak bool use_underline { get; set; } ;
public weak string get_icon_name ( ) ;
public weak Widget get_icon_widget ( ) ;
public weak string get_label ( ) ;
public weak Widget get_label_widget ( ) ;
public weak string get_stock_id ( ) ;
public bool get_use_underline ( ) ;
public void set_icon_name ( string icon_name ) ;
public void set_icon_widget ( Widget icon_widget ) ;
public void set_label ( string label ) ;
public void set_label_widget ( Widget label_widget ) ;
public void set_stock_id ( string stock_id ) ;
public void set_use_underline ( bool use_underline ) ;
Created by Valadoc