diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-27 06:33:00 +0800 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2010-04-07 19:25:13 +0800 |
commit | d9fb3008135d71dcbc512325087aceb19016ace7 (patch) | |
tree | acac1032028ab6c239e020238718e266ef3e3f5e /shell/e-shell-view.h | |
parent | 0fbbec2153df8664d0b94a65d9e9df465fa8432c (diff) | |
download | gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar.gz gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar.bz2 gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar.lz gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar.xz gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.tar.zst gsoc2013-evolution-d9fb3008135d71dcbc512325087aceb19016ace7.zip |
Simplify the search UI for express mode.
For express mode:
- Move the search bar up to the toolbar.
- Hide the "filter" combo box and lock down the first item.
- Hide the "scope" combo box and lock down the first item.
(This is the combo box with "Current Folder" only in the mailer.)
- EShellView owns the search bar widget now instead of EShellContent.
- Insert several nasty hacks that will likely come back to bite me.
Conflicts:
doc/reference/shell/eshell-sections.txt
Diffstat (limited to 'shell/e-shell-view.h')
-rw-r--r-- | shell/e-shell-view.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/e-shell-view.h b/shell/e-shell-view.h index b87c7703e3..4387082f21 100644 --- a/shell/e-shell-view.h +++ b/shell/e-shell-view.h @@ -166,6 +166,10 @@ struct _EShellViewClass { GtkWidget * (*new_shell_sidebar) (EShellView *shell_view); GtkWidget * (*new_shell_taskbar) (EShellView *shell_view); + /* Create, configure and pack a search bar widget. */ + GtkWidget * (*construct_searchbar) (EShellView *shell_view); + gchar * (*get_search_name) (EShellView *shell_view); + /* Signals */ void (*toggled) (EShellView *shell_view); void (*clear_search) (EShellView *shell_view); @@ -188,6 +192,8 @@ gboolean e_shell_view_is_active (EShellView *shell_view); gint e_shell_view_get_page_num (EShellView *shell_view); void e_shell_view_set_page_num (EShellView *shell_view, gint page_num); +GtkWidget * e_shell_view_get_searchbar (EShellView *shell_view); +gchar * e_shell_view_get_search_name (EShellView *shell_view); EFilterRule * e_shell_view_get_search_rule (EShellView *shell_view); void e_shell_view_set_search_rule (EShellView *shell_view, EFilterRule *search_rule); |