diff options
author | Srinivasa Ragavan <sragavan@gnome.org> | 2010-07-12 18:32:25 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-26 09:29:59 +0800 |
commit | b1f4b085656a2520d807eb8ebca3d64b568ff037 (patch) | |
tree | 46a9d3312afe4a390ed85b465d7cd576757f9e37 /mail/e-mail-notebook-view.h | |
parent | 10df2a43b866eb6a5e73d652d89db3d1010fe7f9 (diff) | |
download | gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar.gz gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar.bz2 gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar.lz gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar.xz gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.tar.zst gsoc2013-evolution-b1f4b085656a2520d807eb8ebca3d64b568ff037.zip |
Add EMailNotebook View
Diffstat (limited to 'mail/e-mail-notebook-view.h')
-rw-r--r-- | mail/e-mail-notebook-view.h | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/mail/e-mail-notebook-view.h b/mail/e-mail-notebook-view.h index 6dfd3c68db..a335e15444 100644 --- a/mail/e-mail-notebook-view.h +++ b/mail/e-mail-notebook-view.h @@ -25,12 +25,14 @@ #include <gtk/gtk.h> #include "e-mail-view.h" +#include <shell/e-shell-searchbar.h> +#include "widgets/menus/gal-view-instance.h" #define E_MAIL_NOTEBOOK_VIEW_TYPE (e_mail_notebook_view_get_type ()) -#define E_MAIL_NOTEBOOK_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_MAIL_NOTEBOOK_VIEW_TYPE, MailFolderView)) -#define E_MAIL_NOTEBOOK_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_MAIL_NOTEBOOK_VIEW_TYPE, MailFolderViewClass)) -#define IS_E_MAIL_NOTEBOOK_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_MAIL_NOTEBOOK_VIEW_TYPE)) -#define IS_E_MAIL_NOTEBOOK_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_MAIL_NOTEBOOK_VIEW_TYPE)) +#define E_MAIL_NOTEBOOK_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_MAIL_NOTEBOOK_VIEW_TYPE, EMailNotebookView)) +#define E_MAIL_NOTEBOOK_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_MAIL_NOTEBOOK_VIEW_TYPE, EMailNotebookViewClass)) +#define E_IS_MAIL_NOTEBOOK_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_MAIL_NOTEBOOK_VIEW_TYPE)) +#define E_IS_MAIL_NOTEBOOK_VIEW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_MAIL_NOTEBOOK_VIEW_TYPE)) #define E_MAIL_NOTEBOOK_VIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS((o), E_MAIL_NOTEBOOK_VIEW_TYPE, EMailNotebookViewClass)) @@ -47,4 +49,13 @@ typedef struct _EMailNotebookViewClass { } EMailNotebookViewClass; +GType e_mail_notebook_view_get_type (void); +void e_mail_notebook_view_register_type (GTypeModule *type_module); +GtkWidget * e_mail_notebook_view_new (EShellContent *content); + +EShellSearchbar * e_mail_notebook_view_get_searchbar (EMailView *view); +void e_mail_notebook_view_set_search_strings (EMailView *view, GSList *search_strings); +GalViewInstance * e_mail_notebook_view_get_view_instance (EMailView *view); +void e_mail_notebook_view_update_view_instance (EMailView *view); + #endif |