aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-search-private.h
diff options
context:
space:
mode:
authorMichael Zucci <zucchi@src.gnome.org>2001-01-25 13:10:59 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-01-25 13:10:59 +0800
commit46e42dcf44573b23812ada87bfe5313cb318662f (patch)
tree9f9c822170c87d8525970b03e4b374c854a5c560 /camel/camel-search-private.h
parentbf64278f45cb952f9254a364beee6757f65bea3d (diff)
downloadgsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar.gz
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar.bz2
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar.lz
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar.xz
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.tar.zst
gsoc2013-evolution-46e42dcf44573b23812ada87bfe5313cb318662f.zip
Oops.
svn path=/trunk/; revision=7801
Diffstat (limited to 'camel/camel-search-private.h')
-rw-r--r--camel/camel-search-private.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/camel/camel-search-private.h b/camel/camel-search-private.h
new file mode 100644
index 0000000000..aff881f32f
--- /dev/null
+++ b/camel/camel-search-private.h
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2001 Ximian Inc.
+ *
+ * Authors: Michael Zucchi <notzed@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public License
+ * as published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program 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 program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef _CAMEL_SEARCH_PRIVATE_H
+#define _CAMEL_SEARCH_PRIVATE_H
+
+typedef enum {
+ CAMEL_SEARCH_MATCH_START = 1<<0,
+ CAMEL_SEARCH_MATCH_END = 1<<1,
+ CAMEL_SEARCH_MATCH_REGEX = 1<<2, /* disables the first 2 */
+ CAMEL_SEARCH_MATCH_ICASE = 1<<3,
+} camel_search_flags_t;
+
+typedef enum {
+ CAMEL_SEARCH_MATCH_EXACT,
+ CAMEL_SEARCH_MATCH_CONTAINS,
+ CAMEL_SEARCH_MATCH_STARTS,
+ CAMEL_SEARCH_MATCH_ENDS,
+ CAMEL_SEARCH_MATCH_SOUNDEX,
+} camel_search_match_t;
+
+/* builds a regex that represents a string search */
+int camel_search_build_match_regex(regex_t *pattern, camel_search_flags_t type, int argc, struct _ESExpResult **argv, CamelException *ex);
+gboolean camel_search_message_body_contains(CamelDataWrapper *object, regex_t *pattern);
+
+gboolean camel_search_header_match(const char *value, const char *match, camel_search_match_t how);
+gboolean camel_search_header_soundex(const char *header, const char *match);
+
+#endif /* ! _CAMEL_SEARCH_PRIVATE_H */