15817
|
1 #include <glib.h>
|
|
2
|
|
3 #include "gnt.h"
|
|
4 #include "gntwidget.h"
|
|
5
|
|
6 typedef gpointer (*GDupFunc)(gconstpointer data);
|
|
7
|
|
8 void gnt_util_get_text_bound(const char *text, int *width, int *height);
|
|
9
|
|
10 /* excluding *end */
|
|
11 int gnt_util_onscreen_width(const char *start, const char *end);
|
|
12
|
|
13 const char *gnt_util_onscreen_width_to_pointer(const char *str, int len, int *w);
|
|
14
|
|
15 /* Inserts newlines in 'string' where necessary so that its onscreen width is
|
|
16 * no more than 'maxw'.
|
|
17 * 'maxw' can be <= 0, in which case the maximum screen width is considered.
|
|
18 *
|
|
19 * Returns a newly allocated string.
|
|
20 */
|
|
21 char *gnt_util_onscreen_fit_string(const char *string, int maxw);
|
|
22
|
|
23 GHashTable *g_hash_table_duplicate(GHashTable *src, GHashFunc hash,
|
|
24 GEqualFunc equal, GDestroyNotify key_d, GDestroyNotify value_d,
|
|
25 GDupFunc key_dup, GDupFunc value_dup);
|
|
26
|
|
27
|
|
28 /**
|
|
29 * To be used with g_signal_new. Look in the key_pressed signal-definition in
|
|
30 * gntwidget.c for usage.
|
|
31 */
|
|
32 gboolean gnt_boolean_handled_accumulator(GSignalInvocationHint *ihint,
|
|
33 GValue *return_accu,
|
|
34 const GValue *handler_return,
|
|
35 gpointer dummy);
|
|
36
|