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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* e-util.h
* Copyright 2000, 2001, Ximian, Inc.
*
* Authors:
* Chris Lahey <clahey@ximian.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License, version 2, as published by the Free Software Foundation.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*/
#ifndef _E_UTIL_H_
#define _E_UTIL_H_
#include <sys/types.h>
#include <glib-object.h>
#include <limits.h>
#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */
#include <e-util/e-util-marshal.h>
#define E_MAKE_TYPE(l,str,t,ci,i,parent) \
GType l##_get_type(void)\
{\
static GType type = 0; \
if (!type){ \
static GTypeInfo const object_info = { \
sizeof (t##Class), \
\
(GBaseInitFunc) NULL, \
(GBaseFinalizeFunc) NULL, \
\
(GClassInitFunc) ci, \
(GClassFinalizeFunc) NULL, \
NULL, /* class_data */ \
\
sizeof (t), \
0, /* n_preallocs */ \
(GInstanceInitFunc) i, \
}; \
type = g_type_register_static (parent, str, &object_info, 0); \
} \
return type; \
}
#define E_MAKE_X_TYPE(l,str,t,ci,i,parent,poa_init,offset) \
GtkType l##_get_type(void) \
{ \
static GtkType type = 0; \
if (!type){ \
GTypeInfo info = { \
sizeof (t##Class), \
\
(GBaseInitFunc) NULL, \
(GBaseFinalizeFunc) NULL, \
\
(GClassInitFunc) ci, \
(GClassFinalizeFunc) NULL, \
\
NULL, /* class_data */ \
\
sizeof (t), \
0, /* n_preallocs */ \
(GInstanceInitFunc) i, \
}; \
type = bonobo_x_type_unique ( \
parent, poa_init, NULL, \
offset, &info, str); \
} \
return type; \
}
#define GET_STRING_ARRAY_FROM_ELLIPSIS(labels, first_string) \
{ \
va_list args; \
int i; \
char *s; \
\
va_start (args, (first_string)); \
\
i = 0; \
for (s = (first_string); s; s = va_arg (args, char *)) \
i++; \
va_end (args); \
\
(labels) = g_new (char *, i + 1); \
\
va_start (args, (first_string)); \
i = 0; \
for (s = (first_string); s; s = va_arg (args, char *)) \
(labels)[i++] = s; \
\
va_end (args); \
(labels)[i] = NULL; \
}
#define GET_DUPLICATED_STRING_ARRAY_FROM_ELLIPSIS(labels, first_string) \
{ \
int i; \
GET_STRING_ARRAY_FROM_ELLIPSIS ((labels), (first_string)); \
for (i = 0; labels[i]; i++) \
labels[i] = g_strdup (labels[i]); \
}
#if 0
# define E_OBJECT_CLASS_ADD_SIGNALS(oc,sigs,last) \
gtk_object_class_add_signals (oc, sigs, last)
# define E_OBJECT_CLASS_TYPE(oc) (oc)->type
#else
# define E_OBJECT_CLASS_ADD_SIGNALS(oc,sigs,last)
# define E_OBJECT_CLASS_TYPE(oc) G_TYPE_FROM_CLASS (oc)
#endif
typedef enum {
E_FOCUS_NONE,
E_FOCUS_CURRENT,
E_FOCUS_START,
E_FOCUS_END
} EFocus;
int e_str_compare (const void *x,
const void *y);
int e_str_case_compare (const void *x,
const void *y);
int e_collate_compare (const void *x,
const void *y);
int e_int_compare (const void *x,
const void *y);
char *e_strdup_strip (const char *string);
void e_free_object_list (GList *list);
void e_free_object_slist (GSList *list);
void e_free_string_list (GList *list);
void e_free_string_slist (GSList *list);
char *e_read_file (const char *filename);
int e_write_file (const char *filename,
const char *data,
int flags);
int e_write_file_mkstemp (char *filename,
const char *data);
gchar **e_strsplit (const gchar *string,
const gchar *delimiter,
gint max_tokens);
/* This only makes a filename safe for usage as a filename. It still may have shell meta-characters in it. */
gchar *e_format_number (gint number);
gchar *e_format_number_float (gfloat number);
gboolean e_create_directory (gchar *directory);
gchar **e_strdupv (const gchar **str_array);
typedef int (*ESortCompareFunc) (const void *first,
const void *second,
gpointer closure);
void e_sort (void *base,
size_t nmemb,
size_t size,
ESortCompareFunc compare,
gpointer closure);
void e_bsearch (const void *key,
const void *base,
size_t nmemb,
size_t size,
ESortCompareFunc compare,
gpointer closure,
size_t *start,
size_t *end);
size_t e_strftime_fix_am_pm (char *s,
size_t max,
const char *fmt,
const struct tm *tm);
size_t e_utf8_strftime_fix_am_pm (char *s,
size_t max,
const char *fmt,
const struct tm *tm);
/* String to/from double conversion functions */
gdouble e_flexible_strtod (const gchar *nptr,
gchar **endptr);
/* 29 bytes should enough for all possible values that
* g_ascii_dtostr can produce with the %.17g format.
* Then add 10 for good measure */
#define E_ASCII_DTOSTR_BUF_SIZE (DBL_DIG + 12 + 10)
gchar *e_ascii_dtostr (gchar *buffer,
gint buf_len,
const gchar *format,
gdouble d);
/* Alternating char * and int arguments with a NULL char * to end.
Less than 0 for the int means copy the whole string. */
gchar *e_strdup_append_strings (gchar *first_string,
...);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _E_UTIL_H_ */
|