~amigadave/gnome-control-center-signon/selection-colour

« back to all changes in this revision

Viewing changes to src/cc-notebook.vapi

Remove scrolling transition

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
[CCode (cprefix = "Cc", lower_case_cprefix = "cc_")]
2
 
namespace Cc {
3
 
        [CCode (cheader_filename = "cc-notebook.h", type_id = "cc_notebook_get_type ()")]
4
 
        public class Notebook : Gtk.Box {
5
 
                public Notebook ();
6
 
                public void add_page (Gtk.Widget widget);
7
 
                public void remove_page (Gtk.Widget widget);
8
 
                public void select_page (Gtk.Widget widget, bool animate);
9
 
                public Gtk.Widget get_selected_page ();
10
 
                [NoAccessorMethod]
11
 
                public Gtk.Widget current_page { get; set; }
12
 
        }
13
 
}