From a8d28a6ce7e0c56dacba5d527d9134573a008902 Mon Sep 17 00:00:00 2001 From: Perberos Date: Sun, 6 Nov 2011 19:30:49 -0300 Subject: inicial --- src/eom-util.h | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/eom-util.h (limited to 'src/eom-util.h') diff --git a/src/eom-util.h b/src/eom-util.h new file mode 100644 index 0000000..e9a3dc8 --- /dev/null +++ b/src/eom-util.h @@ -0,0 +1,72 @@ +/* Eye Of Mate - General Utilities + * + * Copyright (C) 2006 The Free Software Foundation + * + * Author: Lucas Rocha + * + * Based on code by: + * - Jens Finke + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#ifndef __EOM_UTIL_H__ +#define __EOM_UTIL_H__ + +#include + +G_BEGIN_DECLS + +G_GNUC_INTERNAL +void eom_util_show_help (const gchar *section, + GtkWindow *parent); + +G_GNUC_INTERNAL +gchar *eom_util_make_valid_utf8 (const gchar *name); + +G_GNUC_INTERNAL +GSList *eom_util_parse_uri_string_list_to_file_list (const gchar *uri_list); + +G_GNUC_INTERNAL +GSList *eom_util_string_list_to_file_list (GSList *string_list); + +#ifdef HAVE_DBUS +G_GNUC_INTERNAL +GSList *eom_util_strings_to_file_list (gchar **strings); +#endif + +G_GNUC_INTERNAL +GSList *eom_util_string_array_to_list (const gchar **files, + gboolean create_uri); + +G_GNUC_INTERNAL +gchar **eom_util_string_array_make_absolute (gchar **files); + +G_GNUC_INTERNAL +gboolean eom_util_launch_desktop_file (const gchar *filename, + guint32 user_time); + +G_GNUC_INTERNAL +const gchar *eom_util_dot_dir (void); + +G_GNUC_INTERNAL +char * eom_util_filename_get_extension (const char * filename_with_extension); + +G_GNUC_INTERNAL +gboolean eom_util_file_is_persistent (GFile *file); + +G_END_DECLS + +#endif /* __EOM_UTIL_H__ */ -- cgit v1.2.1