~jeremywootten/pantheon-files/ctest-widgets-part8

« back to all changes in this revision

Viewing changes to libwidgets/Interfaces/NavigatableInterface.vala

  • Committer: Jeremy Wootten
  • Date: 2017-02-22 18:56:02 UTC
  • Revision ID: jeremy@elementaryos.org-20170222185602-uquva9c4mock8vxy
BasicLocationBar activation tests; add missing interface signal and method

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
        public signal void activate_path (string path, Marlin.OpenFlag flag = Marlin.OpenFlag.DEFAULT);
23
23
        public signal void action_icon_press ();
24
24
        public signal void primary_icon_press ();
 
25
        public signal void activate ();
25
26
 
26
27
        public abstract void set_breadcrumbs_path (string newpath);
27
28
        public abstract string get_breadcrumbs_path ();
40
41
 
41
42
        public abstract string get_entry_text ();
42
43
        public abstract int get_minimum_width ();
 
44
 
 
45
        public virtual void on_activate () {activate_path ("", 0);}
43
46
    }
44
47
}