~elementary-apps/pantheon-files/trunk

« back to all changes in this revision

Viewing changes to src/marlin.vapi

  • Committer: Jeremy Wootten
  • Date: 2017-01-13 13:36:33 UTC
  • mfrom: (2444 pantheon-files)
  • mto: This revision was merged to the branch mainline in revision 2471.
  • Revision ID: jeremy@elementaryos.org-20170113133633-ajg6izr1e6irmj0g
Merge r2444

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        }
33
33
    }
34
34
 
35
 
    [CCode (cprefix = "MarlinClipboardManager", lower_case_cprefix = "marlin_clipboard_manager_", cheader_filename = "marlin-clipboard-manager.h")]
36
 
 
37
 
        public class ClipboardManager : GLib.Object {
38
 
            public ClipboardManager.get_for_display (Gdk.Display display);
39
 
            public bool get_can_paste ();
40
 
            public bool has_cutted_file (GOF.File? file);
41
 
            public bool has_file (GOF.File file);
42
 
            public void copy_files (GLib.List files);
43
 
            public void cut_files (GLib.List files);
44
 
            public void paste_files (GLib.File target, Gtk.Widget widget, GLib.Callback? new_file_closure);
45
 
            public signal void changed ();
46
 
        }
47
 
 
48
35
    [CCode (cheader_filename = "marlin-file-utilities.h")]
49
36
    public void get_rename_region (string filename, out int start_offset, out int end_offset, bool select_all);
50
37