~jeremywootten/pantheon-files/fix-backspace-in-columnv-view

« back to all changes in this revision

Viewing changes to libcore/AbstractSlot.vala

  • Committer: Jeremy Wootten
  • Date: 2015-12-19 09:40:41 UTC
  • Revision ID: jeremy@elementaryos.org-20151219094041-59k547bjtr2exqqp
Modify handling of BackSpace when in Miller View

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
            protected set {_directory = value;}
34
34
        }
 
35
 
 
36
        public GOF.File file {
 
37
            get {return directory.file;}
 
38
        }
35
39
        public GLib.File location  {
36
40
            get {return directory.location;}
37
41
        }
38
42
        public string uri {
39
 
            get { return directory.file.uri;}
 
43
            get {return directory.file.uri;}
40
44
        }
41
45
        public bool can_create {get {return directory != null && !directory.is_trash;}}
42
46
        public virtual bool locked_focus {
69
73
        public abstract unowned AbstractSlot? get_current_slot ();
70
74
        public abstract void reload (bool non_local_only = false);
71
75
        public abstract void grab_focus ();
72
 
        public abstract void user_path_change_request (GLib.File loc, bool allow_mode_change = true);
 
76
        public abstract void user_path_change_request (GLib.File loc, bool allow_mode_change, bool make_root);
 
77
 
73
78
        public abstract void select_first_for_empty_selection ();
74
79
        public abstract void select_glib_files (GLib.List<GLib.File> locations, GLib.File? focus_location);
75
80
        protected abstract void make_view ();