public class AppBar : HBox, Implementor, Buildable {
public weak bool has_progress { get; construct set; } ;
public weak bool has_status { get; construct set; } ;
public weak PreferencesType interactivity { get; construct set; } ;
public AppBar ( bool has_progress,
bool has_status,
PreferencesType interactivity ) ;
public signal void clear_prompt ( ) ;
public signal void user_response ( ) ;
public void clear_stack ( ) ;
public weak Gtk.ProgressBar get_progress ( ) ;
public weak string get_response ( ) ;
public weak Gtk.Widget get_status ( ) ;
public void pop ( ) ;
public void push ( string status ) ;
public void refresh ( ) ;
public void set_default ( string default_status ) ;
public void set_progress_percentage ( float percentage ) ;
public void set_prompt ( string prompt,
bool modal ) ;
public void set_status ( string status ) ;
}

public AppBar ( bool has_progress,
bool has_status,
PreferencesType interactivity ) ;
public signal void clear_prompt ( ) ;
public signal void user_response ( ) ;
public weak bool has_progress { get; construct set; } ;
public weak bool has_status { get; construct set; } ;
public weak PreferencesType interactivity { get; construct set; } ;
public void clear_stack ( ) ;
public weak Gtk.ProgressBar get_progress ( ) ;
public weak string get_response ( ) ;
public weak Gtk.Widget get_status ( ) ;
public void pop ( ) ;
public void push ( string status ) ;
public void refresh ( ) ;
public void set_default ( string default_status ) ;
public void set_progress_percentage ( float percentage ) ;
public void set_prompt ( string prompt,
bool modal ) ;
public void set_status ( string status ) ;
Created by Valadoc