blob: a6dcfc6c4605ecbc7f3b638d62067d3d7c873116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* Eye Of Mate - General Utilities
*
* Copyright (C) 2006 The Free Software Foundation
*
* Author: Lucas Rocha <lucasr@gnome.org>
*
* Based on code by:
* - Jens Finke <jens@gnome.org>
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef __EOM_UTIL_H__
#define __EOM_UTIL_H__
#include <gtk/gtk.h>
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__ */
|