~jeremywootten/pantheon-files/fix-1611022-stop-on-eject-if-possible

« back to all changes in this revision

Viewing changes to libcore/pantheon-files-core-C.vapi

  • Committer: Jeremy Wootten
  • Date: 2017-02-04 13:40:05 UTC
  • mfrom: (2280.2.190 pantheon-files)
  • Revision ID: jeremy@elementaryos.org-20170204134005-q97gij7ndqhrpxi9
Merge trunk to r2470

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
    public string? str_double_underscores (string? str);
132
132
 
133
133
    [CCode (cheader_filename = "eel-gdk-pixbuf-extensions.h")]
 
134
    public Gdk.Pixbuf create_spotlight_pixbuf (Gdk.Pixbuf source_pixbuf);
 
135
    [CCode (cheader_filename = "eel-gdk-pixbuf-extensions.h")]
134
136
    public Gdk.Pixbuf create_colorized_pixbuf (Gdk.Pixbuf source_pixbuf, Gdk.RGBA color);
135
137
    [CCode (cheader_filename = "eel-gdk-pixbuf-extensions.h")]
 
138
    public Gdk.Pixbuf create_darkened_pixbuf (Gdk.Pixbuf source_pixbuf, int saturation, int darken);
 
139
    [CCode (cheader_filename = "eel-gdk-pixbuf-extensions.h")]
136
140
    public Gdk.Pixbuf gdk_pixbuf_lucent (Gdk.Pixbuf source_pixbuf, int percent);
137
141
}
138
142
 
152
156
 
153
157
    [CCode (cheader_filename = "marlin-icon-info.h")]
154
158
    public class IconInfo : GLib.Object {
155
 
        public static IconInfo lookup(GLib.Icon icon, int size);
 
159
        public static IconInfo? lookup (GLib.Icon icon, int size);
 
160
        public static IconInfo? lookup_from_name (string icon_name, int size);
156
161
        public Gdk.Pixbuf? get_pixbuf_nodefault();
157
162
        public Gdk.Pixbuf? get_pixbuf_at_size(int size);
158
163
        public static void clear_caches ();
281
286
        public bool is_hidden;
282
287
        public bool is_directory;
283
288
        public bool is_desktop;
 
289
        public bool is_expanded;
284
290
        public void set_expanded (bool expanded);
285
291
        public bool is_folder();
286
292
        public bool is_symlink();
292
298
        public bool link_known_target;
293
299
        public bool is_smb_share ();
294
300
        public bool is_smb_server ();
 
301
        public bool thumb_can_frame ();
295
302
        public uint flags;
296
303
 
297
304
        public Gdk.DragAction accepts_drop (GLib.List<GLib.File> file_list, Gdk.DragContext context, out Gdk.DragAction suggested_action_return);