~elementary-apps/pantheon-files/trunk

122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
1
/*-
2
 * Copyright (c) 2009 Jannis Pohlmann <jannis@xfce.org>
3
 *
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
4
 * This program is free software; you can redistribute it and/or
122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
5
 * modify it under the terms of the GNU General Public License as
2484.2.1 by Jeremy Wootten
Fix licensecheck warnings
6
 * published by the Free Software Foundation, Inc.,; either version 2 of
122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
7
 * the License, or (at your option) any later version.
8
 *
9
 * This program is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
12
 * GNU General Public License for more details.
13
 *
1266.3.5 by David Gomes
Stripped more trailing white space and fixed a typo on Animations.vala.
14
 * You should have received a copy of the GNU General Public
15
 * License along with this program; if not, write to the Free
122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
16
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17
 * Boston, MA 02110-1301, USA.
18
 */
19
20
#ifndef __EEL_GIO_EXTENSIONS_H__
21
#define __EEL_GIO_EXTENSIONS_H__
22
23
#include <gio/gio.h>
24
122.1.12 by am.monkeyd at gmail
drop gdk_spawn
25
GList       *eel_g_file_list_new_from_string (const gchar *string);
26
gchar       *eel_g_file_get_location (GFile *file);
156 by am.monkeyd at gmail
genmarshal + trash / delete / restore actions
27
GFile       *eel_g_file_get_trash_original_file (const gchar *string);
122.1.12 by am.monkeyd at gmail
drop gdk_spawn
28
gboolean    eel_g_file_is_trashed (GFile *file);
29
GKeyFile    *eel_g_file_query_key_file (GFile *file, GCancellable *cancellable, GError **error);
585 by am.monkeyd at gmail
OpenWith (sub)menus refactoring. available from menubar too. more tradtional menus
30
GFile       *eel_g_file_ref (GFile *file);
31
void        eel_g_file_unref (GFile *file);
122.1.8 by am.monkeyd at gmail
missing file eel-gio-extensions.*
32
33
#endif /* !__EEL_GIO_EXTENSIONS_H__ */