diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-05-29 07:13:29 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-05-29 07:13:29 +0800 |
commit | 13f46b7e761523e0f53c34f5d51b50b051b4ad01 (patch) | |
tree | 61bedea2ce4ee3bdebc8c67bcde97538ce1dd1bd /src/ephy-find-toolbar.h | |
parent | d0cc3530df347aed28b20fb884321a42b1b1958d (diff) | |
download | gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar.gz gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar.bz2 gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar.lz gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar.xz gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.tar.zst gsoc2013-epiphany-13f46b7e761523e0f53c34f5d51b50b051b4ad01.zip |
Disable mozilla's typeaheadfind.
2005-05-29 Christian Persch <chpe@cvs.gnome.org>
* data/default-prefs-common.js:
* data/default-prefs-toolkit.js:
Disable mozilla's typeaheadfind.
* src/ephy-find-toolbar.c: (get_find), (send_focus_change),
(tab_dom_key_press_cb), (entry_changed_cb),
(entry_preedit_changed_cb), (entry_key_press_event_cb),
(entry_activate_cb), (set_focus_cb),
(ephy_find_toolbar_grab_focus), (ephy_find_toolbar_init),
(ephy_find_toolbar_class_init), (ephy_find_toolbar_set_embed),
(ephy_find_toolbar_find_previous), (ephy_find_toolbar_open),
(ephy_find_toolbar_close):
* src/ephy-find-toolbar.h:
* src/ephy-window.c: (sync_tab_document_type), (ephy_window_init),
(ephy_window_set_print_preview), (ephy_window_find):
Forward key events from the embed to the find toolbar. That way we can
typeaheadfind without losing focus.
Diffstat (limited to 'src/ephy-find-toolbar.h')
-rw-r--r-- | src/ephy-find-toolbar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ephy-find-toolbar.h b/src/ephy-find-toolbar.h index b55a2f2cf..6d66d03b3 100644 --- a/src/ephy-find-toolbar.h +++ b/src/ephy-find-toolbar.h @@ -70,6 +70,11 @@ void ephy_find_toolbar_find_next (EphyFindToolbar *toolbar); void ephy_find_toolbar_find_previous (EphyFindToolbar *toolbar); +void ephy_find_toolbar_open (EphyFindToolbar *toolbar, + gboolean links_only); + +void ephy_find_toolbar_close (EphyFindToolbar *toolbar); + G_END_DECLS #endif /* EPHY_FIND_TOOLBAR_H */ |