1 | /* |
---|
2 | Copyright (c) 2005-2006 Joshua Elsasser. All rights reserved. |
---|
3 | |
---|
4 | Redistribution and use in source and binary forms, with or without |
---|
5 | modification, are permitted provided that the following conditions |
---|
6 | are met: |
---|
7 | |
---|
8 | 1. Redistributions of source code must retain the above copyright |
---|
9 | notice, this list of conditions and the following disclaimer. |
---|
10 | 2. Redistributions in binary form must reproduce the above copyright |
---|
11 | notice, this list of conditions and the following disclaimer in the |
---|
12 | documentation and/or other materials provided with the distribution. |
---|
13 | |
---|
14 | THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS "AS IS" AND |
---|
15 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
---|
16 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
---|
17 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
---|
18 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
---|
19 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
---|
20 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
---|
21 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
---|
22 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
---|
23 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
---|
24 | POSSIBILITY OF SUCH DAMAGE. |
---|
25 | */ |
---|
26 | |
---|
27 | #ifndef TG_UTIL_H |
---|
28 | #define TG_UTIL_H |
---|
29 | |
---|
30 | #include <sys/types.h> |
---|
31 | #include <stdarg.h> |
---|
32 | |
---|
33 | /* macro to shut up "unused parameter" warnings */ |
---|
34 | #ifdef __GNUC__ |
---|
35 | #define SHUTUP __attribute__((unused)) |
---|
36 | #else |
---|
37 | #define SHUTUP |
---|
38 | #endif |
---|
39 | |
---|
40 | /* return number of items in array */ |
---|
41 | #define ALEN(a) (sizeof(a) / sizeof((a)[0])) |
---|
42 | |
---|
43 | /* used for a callback function with a data parameter */ |
---|
44 | typedef void (*callbackfunc_t)(void*); |
---|
45 | |
---|
46 | /* try to interpret a string as a textual representation of a boolean */ |
---|
47 | /* note that this isn't localized */ |
---|
48 | gboolean |
---|
49 | strbool(const char *str); |
---|
50 | |
---|
51 | /* return a human-readable string for the size given in bytes. |
---|
52 | the string must be g_free()d */ |
---|
53 | char * |
---|
54 | readablesize(guint64 size); |
---|
55 | |
---|
56 | /* returns a string representing the download ratio. |
---|
57 | the string must be g_free()d */ |
---|
58 | char * |
---|
59 | ratiostr(guint64 down, guint64 up); |
---|
60 | |
---|
61 | /* create a directory and any missing parent directories */ |
---|
62 | gboolean |
---|
63 | mkdir_p(const char *name, mode_t mode); |
---|
64 | |
---|
65 | /* joins a GList of strings into one string using an optional separator */ |
---|
66 | char * |
---|
67 | joinstrlist(GList *list, char *sep); |
---|
68 | |
---|
69 | /* decodes a string that has been urlencoded */ |
---|
70 | char * |
---|
71 | urldecode(const char *str, int len); |
---|
72 | |
---|
73 | /* if wind is NULL then you must call gtk_widget_show on the returned widget */ |
---|
74 | |
---|
75 | GtkWidget * |
---|
76 | errmsg(GtkWindow *wind, const char *format, ...) |
---|
77 | #ifdef __GNUC__ |
---|
78 | __attribute__ ((format (printf, 2, 3))) |
---|
79 | #endif |
---|
80 | ; |
---|
81 | |
---|
82 | GtkWidget * |
---|
83 | errmsg_full(GtkWindow *wind, callbackfunc_t func, void *data, |
---|
84 | const char *format, ...) |
---|
85 | #ifdef __GNUC__ |
---|
86 | __attribute__ ((format (printf, 4, 5))) |
---|
87 | #endif |
---|
88 | ; |
---|
89 | |
---|
90 | GtkWidget * |
---|
91 | verrmsg(GtkWindow *wind, callbackfunc_t func, void *data, |
---|
92 | const char *format, va_list ap); |
---|
93 | |
---|
94 | #endif /* TG_UTIL_H */ |
---|