comparison finch/libgnt/gntutils.h @ 20398:61d6a3dfbb3c

propagate from branch 'im.pidgin.rlaager.merging.msnp13-and-sf-1621854-4-rlaager-whitespace' (head 51cec0ffea45c8589dcb7bf0f9e36e749ed43017) to branch 'im.pidgin.rlaager.merging.msnp13-and-pidgin' (head d0d075250a037e5d0a268a39501bf169465061a4)
author Richard Laager <rlaager@wiktel.com>
date Sun, 15 Apr 2007 03:56:08 +0000
parents 2c81ebc7bf0b
children 5f204f55af09
comparison
equal deleted inserted replaced
20397:6ac7e33fdabf 20398:61d6a3dfbb3c
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
37 /**
38 * Returns a GntTree populated with "key" -> "binding" for the widget.
39 */
40 GntWidget *gnt_widget_bindings_view(GntWidget *widget);
41