aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-extras.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2002-03-12 22:30:53 +0800
committerChris Lahey <clahey@src.gnome.org>2002-03-12 22:30:53 +0800
commitfd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e (patch)
treeefb6b0e9d933ad2989b62abb2b9f9c1e5e76ff34 /widgets/table/e-table-extras.c
parent8358586161bd2f1b17ea30f1a483e6b85dff8e47 (diff)
downloadgsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar.gz
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar.bz2
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar.lz
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar.xz
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.tar.zst
gsoc2013-evolution-fd4ffbd38ccef4d2a35675a50f89e0b5f2d6d86e.zip
Added e-table-search.lo.
2002-03-12 Christopher James Lahey <clahey@ximian.com> * gal/Makefile.am (libgal_la_LIBADD): Added e-table-search.lo. * gal/util/e-util.c, gal/util/e-util.h (e_marshal_BOOL__STRING): Added this marshal function. From gal/e-table/ChangeLog: 2002-03-12 Christopher James Lahey <clahey@ximian.com> * Makefile.am (libetable_la_SOURCES): Added e-table-search.c. (libetableinclude_HEADERS): Added e-table-search.h. * e-cell.h: Added ETableSearchFun here. * e-table-col.h: Added search here. * e-table-column-specification.c, e-table-column-specification.h: Added search here. * e-table-extras.c, e-table-extras.h (e_table_extras_add_search): Added ETableSearchFuncs here. * e-table-memory-store.c (e_table_memory_store_insert, e_table_memory_store_insert_adopt): Handle row == -1 here. * e-table-search.c, e-table-search.h: New class to reusably handle the semantics of searching for a string. * e-table-simple.c, e-table-simple.h: Added a bunch of simple functions here for if your table is all strings. Should be reusable. * e-table-utils.c (et_col_spec_to_col): Added support for searches here. * e-table.c, e-table.h: Added an ETableSearch here. svn path=/trunk/; revision=16119
Diffstat (limited to 'widgets/table/e-table-extras.c')
-rw-r--r--widgets/table/e-table-extras.c44
1 files changed, 42 insertions, 2 deletions
diff --git a/widgets/table/e-table-extras.c b/widgets/table/e-table-extras.c
index d5cb1191ad..9f80557901 100644
--- a/widgets/table/e-table-extras.c
+++ b/widgets/table/e-table-extras.c
@@ -33,6 +33,7 @@
#include "gal/e-table/e-cell-size.h"
#include "gal/e-table/e-cell-tree.h"
#include "e-table-extras.h"
+#include <string.h>
#define PARENT_TYPE (gtk_object_get_type())
@@ -65,14 +66,17 @@ ete_destroy (GtkObject *object)
g_hash_table_foreach (ete->cells, (GHFunc) cell_hash_free, NULL);
g_hash_table_foreach (ete->compares, (GHFunc) g_free, NULL);
+ g_hash_table_foreach (ete->searches, (GHFunc) g_free, NULL);
g_hash_table_foreach (ete->pixbufs, (GHFunc) pixbuf_hash_free, NULL);
g_hash_table_destroy (ete->cells);
g_hash_table_destroy (ete->compares);
+ g_hash_table_destroy (ete->searches);
g_hash_table_destroy (ete->pixbufs);
ete->cells = NULL;
ete->compares = NULL;
+ ete->searches = NULL;
ete->pixbufs = NULL;
GTK_OBJECT_CLASS (ete_parent_class)->destroy (object);
@@ -95,17 +99,30 @@ e_strint_compare(gconstpointer data1, gconstpointer data2)
return g_int_compare(GINT_TO_POINTER(int1), GINT_TO_POINTER(int2));
}
+static gboolean
+e_string_search(gconstpointer haystack, const char *needle)
+{
+ int length = g_utf8_strlen (needle, -1);
+ if (g_utf8_strncasecmp (haystack, needle, length) == 0)
+ return TRUE;
+ else
+ return FALSE;
+}
+
static void
ete_init (ETableExtras *extras)
{
extras->cells = g_hash_table_new(g_str_hash, g_str_equal);
extras->compares = g_hash_table_new(g_str_hash, g_str_equal);
+ extras->searches = g_hash_table_new(g_str_hash, g_str_equal);
extras->pixbufs = g_hash_table_new(g_str_hash, g_str_equal);
e_table_extras_add_compare(extras, "string", g_str_compare);
e_table_extras_add_compare(extras, "integer", g_int_compare);
e_table_extras_add_compare(extras, "string-integer", e_strint_compare);
+ e_table_extras_add_search(extras, "string", e_string_search);
+
e_table_extras_add_cell(extras, "checkbox", e_cell_checkbox_new());
e_table_extras_add_cell(extras, "date", e_cell_date_new (NULL, GTK_JUSTIFY_LEFT));
e_table_extras_add_cell(extras, "number", e_cell_number_new (NULL, GTK_JUSTIFY_RIGHT));
@@ -162,8 +179,8 @@ e_table_extras_add_compare (ETableExtras *extras,
gchar *old_key;
GCompareFunc old_compare;
- if (g_hash_table_lookup_extended (extras->cells, id, (gpointer *)&old_key, (gpointer *)&old_compare)) {
- g_hash_table_remove (extras->cells, old_key);
+ if (g_hash_table_lookup_extended (extras->compares, id, (gpointer *)&old_key, (gpointer *)&old_compare)) {
+ g_hash_table_remove (extras->compares, old_key);
g_free (old_key);
}
@@ -178,6 +195,29 @@ e_table_extras_get_compare (ETableExtras *extras,
}
void
+e_table_extras_add_search (ETableExtras *extras,
+ char *id,
+ ETableSearchFunc search)
+{
+ gchar *old_key;
+ ETableSearchFunc old_search;
+
+ if (g_hash_table_lookup_extended (extras->searches, id, (gpointer *)&old_key, (gpointer *)&old_search)) {
+ g_hash_table_remove (extras->searches, old_key);
+ g_free (old_key);
+ }
+
+ g_hash_table_insert(extras->searches, g_strdup(id), search);
+}
+
+ETableSearchFunc
+e_table_extras_get_search (ETableExtras *extras,
+ char *id)
+{
+ return g_hash_table_lookup(extras->searches, id);
+}
+
+void
e_table_extras_add_pixbuf (ETableExtras *extras,
char *id,
GdkPixbuf *pixbuf)