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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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 Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
* Authors: Rodrigo Moya <rodrigo@ximian.com>
*/
#ifndef E_DATA_SERVER_UTIL_H
#define E_DATA_SERVER_UTIL_H
#include <sys/types.h>
#include <glib-object.h>
G_BEGIN_DECLS
struct tm;
const gchar * e_get_user_cache_dir (void);
const gchar * e_get_user_config_dir (void);
const gchar * e_get_user_data_dir (void);
gchar * e_util_strstrcase (const gchar *haystack,
const gchar *needle);
gchar * e_util_unicode_get_utf8 (const gchar *text,
gunichar *out);
const gchar * e_util_utf8_strstrcase (const gchar *haystack,
const gchar *needle);
const gchar * e_util_utf8_strstrcasedecomp (const gchar *haystack,
const gchar *needle);
gint e_util_utf8_strcasecmp (const gchar *s1,
const gchar *s2);
gchar * e_util_utf8_remove_accents (const gchar *str);
gchar * e_util_utf8_make_valid (const gchar *str);
const gchar * e_util_ensure_gdbus_string (const gchar *str,
gchar **gdbus_str);
guint64 e_util_gthread_id (GThread *thread);
void e_filename_make_safe (gchar *string);
gchar * e_filename_mkdir_encoded (const gchar *basepath,
const gchar *fileprefix,
const gchar *filename,
gint fileindex);
gsize e_utf8_strftime (gchar *string,
gsize max,
const gchar *fmt,
const struct tm *tm);
gsize e_strftime (gchar *string,
gsize max,
const gchar *fmt,
const struct tm *tm);
gchar ** e_util_slist_to_strv (const GSList *strings);
GSList * e_util_strv_to_slist (const gchar * const *strv);
GSList * e_util_copy_string_slist (GSList *copy_to, const GSList *strings);
GSList * e_util_copy_object_slist (GSList *copy_to, const GSList *objects);
void e_util_free_string_slist (GSList *strings);
void e_util_free_object_slist (GSList *objects);
/* Useful GBinding transform functions */
gboolean e_binding_transform_enum_value_to_nick
(GBinding *binding,
const GValue *source_value,
GValue *target_value,
gpointer not_used);
gboolean e_binding_transform_enum_nick_to_value
(GBinding *binding,
const GValue *source_value,
GValue *target_value,
gpointer not_used);
#ifdef G_OS_WIN32
const gchar * e_util_get_prefix (void) G_GNUC_CONST;
const gchar * e_util_get_cp_prefix (void) G_GNUC_CONST;
const gchar * e_util_get_localedir (void) G_GNUC_CONST;
gchar * e_util_replace_prefix (const gchar *configure_time_prefix,
const gchar *runtime_prefix,
const gchar *configure_time_path);
#endif
gint e_data_server_util_get_dbus_call_timeout
(void);
void e_data_server_util_set_dbus_call_timeout
(gint timeout_msec);
/**
* e_pointer_tracker_track:
*
* FIXME: Document me.
*
* Since: 3.2
**/
#define e_pointer_tracker_track(ptr) \
(e_pointer_tracker_track_with_info ((ptr), G_STRFUNC))
void e_pointer_tracker_track_with_info (gpointer ptr, const gchar *info);
void e_pointer_tracker_untrack (gpointer ptr);
void e_pointer_tracker_dump (void);
G_END_DECLS
#endif /* E_DATA_SERVER_UTIL_H */
|