aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-view.h
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@gnome.org>2010-07-09 17:12:40 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-07-26 09:29:59 +0800
commitb5075fca726a3c6a0b18f9342ccc833ff0a64ccf (patch)
treecfad038f105cd63a6b89ea3381ac6a77fb1c78dd /mail/e-mail-view.h
parent909774170062bd74c6f3554b25f0d06054fb9c8b (diff)
downloadgsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar.gz
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar.bz2
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar.lz
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar.xz
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.tar.zst
gsoc2013-evolution-b5075fca726a3c6a0b18f9342ccc833ff0a64ccf.zip
Make EMailPanedView up & working.
Diffstat (limited to 'mail/e-mail-view.h')
-rw-r--r--mail/e-mail-view.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/mail/e-mail-view.h b/mail/e-mail-view.h
index fc5e5da306..430535b500 100644
--- a/mail/e-mail-view.h
+++ b/mail/e-mail-view.h
@@ -25,7 +25,8 @@
#include <gtk/gtk.h>
#include <shell/e-shell-content.h>
-
+#include <shell/e-shell-searchbar.h>
+#include "widgets/menus/gal-view-instance.h"
#define E_MAIL_VIEW_TYPE (e_mail_view_get_type ())
#define E_MAIL_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_MAIL_VIEW_TYPE, EMailView))
@@ -49,8 +50,21 @@ typedef struct _EMailViewClass {
void (*pane_close) (EMailView *);
+ EShellSearchbar * (*get_searchbar) (EMailView *view);
+ void (*set_search_strings) (EMailView *view, GSList *search_strings);
+ GalViewInstance * (*get_view_instance) (EMailView *view);
+ void (*update_view_instance) (EMailView *view);
+
+
} EMailViewClass;
GType e_mail_view_get_type (void);
+void e_mail_view_update_view_instance (EMailView *view);
+GalViewInstance * e_mail_view_get_view_instance (EMailView *view);
+
+void e_mail_view_set_search_strings (EMailView *view, GSList *search_strings);
+
+EShellSearchbar * e_mail_view_get_searchbar (EMailView *view);
+
#endif