From 71e92f3f2c45cd8dd9f44d8226e23603164974a5 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 24 Jun 2010 20:23:07 -0400 Subject: 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. --- modules/calendar/e-task-shell-content.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'modules/calendar/e-task-shell-content.c') diff --git a/modules/calendar/e-task-shell-content.c b/modules/calendar/e-task-shell-content.c index b2744a883e..bb2017fa8a 100644 --- a/modules/calendar/e-task-shell-content.c +++ b/modules/calendar/e-task-shell-content.c @@ -620,6 +620,16 @@ task_shell_content_check_state (EShellContent *shell_content) return state; } +static void +task_shell_content_focus_search_results (EShellContent *shell_content) +{ + ETaskShellContentPrivate *priv; + + priv = E_TASK_SHELL_CONTENT_GET_PRIVATE (shell_content); + + gtk_widget_grab_focus (priv->task_table); +} + static void task_shell_content_class_init (ETaskShellContentClass *class) { @@ -638,6 +648,7 @@ task_shell_content_class_init (ETaskShellContentClass *class) shell_content_class = E_SHELL_CONTENT_CLASS (class); shell_content_class->check_state = task_shell_content_check_state; + shell_content_class->focus_search_results = task_shell_content_focus_search_results; g_object_class_install_property ( object_class, -- cgit