aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-search-bar.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-09-07 12:02:27 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-09-07 12:02:27 +0800
commit52d683e48cf1103a9806da95c72abce2db3ae1f4 (patch)
treeb6cee16af70a03666a2d7add2e5bff5c6ed8035c /widgets/misc/e-search-bar.h
parenteca687589d106ff87cd4fca7bf581cb0532caf96 (diff)
downloadgsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.gz
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.bz2
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.lz
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.xz
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.tar.zst
gsoc2013-evolution-52d683e48cf1103a9806da95c72abce2db3ae1f4.zip
Progress update:
- Contacts module mostly working now. - View and search UI not yet working. - Still refining shell design. svn path=/branches/kill-bonobo/; revision=36268
Diffstat (limited to 'widgets/misc/e-search-bar.h')
-rw-r--r--widgets/misc/e-search-bar.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/widgets/misc/e-search-bar.h b/widgets/misc/e-search-bar.h
index 56883e27bc..dd51edd698 100644
--- a/widgets/misc/e-search-bar.h
+++ b/widgets/misc/e-search-bar.h
@@ -22,6 +22,7 @@
#define E_SEARCH_BAR_H
#include <gtk/gtk.h>
+#include <filter/rule-context.h>
/* Standard GObject macros */
#define E_TYPE_SEARCH_BAR \
@@ -67,6 +68,9 @@ struct _ESearchBarClass
GType e_search_bar_get_type (void);
GtkWidget * e_search_bar_new (void);
GtkActionGroup *e_search_bar_get_action_group (ESearchBar *search_bar);
+RuleContext * e_search_bar_get_context (ESearchBar *search_bar);
+void e_search_bar_set_context (ESearchBar *search_bar,
+ RuleContext *context);
GtkRadioAction *e_search_bar_get_filter_action (ESearchBar *search_bar);
void e_search_bar_set_filter_action (ESearchBar *search_bar,
GtkRadioAction *action);
@@ -97,6 +101,8 @@ void e_search_bar_set_scope_value (ESearchBar *search_bar,
gboolean e_search_bar_get_scope_visible (ESearchBar *search_bar);
void e_search_bar_set_scope_visible (ESearchBar *search_bar,
gboolean visible);
+void e_search_bar_save_search_dialog (ESearchBar *search_bar,
+ const gchar *filename);
G_END_DECLS