diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-06-25 08:23:07 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-06-25 08:42:09 +0800 |
commit | 71e92f3f2c45cd8dd9f44d8226e23603164974a5 (patch) | |
tree | 93f4758df11e2f7c92a4e8c60f85359547bf93fe /modules/mail | |
parent | 179db75ce041706a590e90a6ac7b801b36091ed6 (diff) | |
download | gsoc2013-evolution-71e92f3f2c45cd8dd9f44d8226e23603164974a5.tar.gz gsoc2013-evolution-71e92f3f2c45cd8dd9f44d8226e23603164974a5.tar.zst gsoc2013-evolution-71e92f3f2c45cd8dd9f44d8226e23603164974a5.zip |
EShellContent: Add a focus_search_results() method.
This gives EShellSearchbar something concrete to call to direct focus
away from itself instead of tabbing forward and hoping for the best.
Diffstat (limited to 'modules/mail')
-rw-r--r-- | modules/mail/e-mail-shell-content.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/mail/e-mail-shell-content.c b/modules/mail/e-mail-shell-content.c index d0e3ffa0e9..e7fb20d1cf 100644 --- a/modules/mail/e-mail-shell-content.c +++ b/modules/mail/e-mail-shell-content.c @@ -489,6 +489,16 @@ mail_shell_content_check_state (EShellContent *shell_content) return e_mail_reader_check_state (E_MAIL_READER (shell_content)); } +static void +mail_shell_content_focus_search_results (EShellContent *shell_content) +{ + EMailShellContentPrivate *priv; + + priv = E_MAIL_SHELL_CONTENT_GET_PRIVATE (shell_content); + + gtk_widget_grab_focus (priv->message_list); +} + static GtkActionGroup * mail_shell_content_get_action_group (EMailReader *reader) { @@ -695,6 +705,7 @@ mail_shell_content_class_init (EMailShellContentClass *class) shell_content_class = E_SHELL_CONTENT_CLASS (class); shell_content_class->check_state = mail_shell_content_check_state; + shell_content_class->focus_search_results = mail_shell_content_focus_search_results; /* Inherited from EMailReader */ g_object_class_override_property ( |