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/addressbook/e-book-shell-content.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'modules/addressbook') diff --git a/modules/addressbook/e-book-shell-content.c b/modules/addressbook/e-book-shell-content.c index 66cd6a4660..bc374079a3 100644 --- a/modules/addressbook/e-book-shell-content.c +++ b/modules/addressbook/e-book-shell-content.c @@ -363,6 +363,18 @@ book_shell_content_check_state (EShellContent *shell_content) return state; } +static void +book_shell_content_focus_search_results (EShellContent *shell_content) +{ + EBookShellContent *book_shell_content; + EAddressbookView *view; + + book_shell_content = E_BOOK_SHELL_CONTENT (shell_content); + view = e_book_shell_content_get_current_view (book_shell_content); + + gtk_widget_grab_focus (GTK_WIDGET (view)); +} + static void book_shell_content_class_init (EBookShellContentClass *class) { @@ -380,6 +392,7 @@ book_shell_content_class_init (EBookShellContentClass *class) shell_content_class = E_SHELL_CONTENT_CLASS (class); shell_content_class->check_state = book_shell_content_check_state; + shell_content_class->focus_search_results = book_shell_content_focus_search_results; g_object_class_install_property ( object_class, -- cgit