diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-11-03 20:37:15 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-11-03 20:37:15 +0800 |
commit | 1c87d0af88f833fff85b468ef57a7cb660805fb7 (patch) | |
tree | d15be9bdc630e4f3a43e104f0d891554ff9ce126 /embed/ephy-embed-find.h | |
parent | 5304b565cd6192c80bae5473d3ac2364dc0de7bb (diff) | |
download | gsoc2013-epiphany-1c87d0af88f833fff85b468ef57a7cb660805fb7.tar.gz gsoc2013-epiphany-1c87d0af88f833fff85b468ef57a7cb660805fb7.tar.zst gsoc2013-epiphany-1c87d0af88f833fff85b468ef57a7cb660805fb7.zip |
More detailed result code from find backend.
2005-11-03 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-embed-find.c:
* embed/ephy-embed-find.h:
* embed/mozilla/EphyFind.cpp:
* embed/mozilla/EphyFind.h:
* embed/mozilla/mozilla-embed-find.cpp:
More detailed result code from find backend.
* src/ephy-find-toolbar.c: (set_status), (clear_status),
(entry_changed_cb), (ephy_find_toolbar_init),
(ephy_find_toolbar_find_next), (ephy_find_toolbar_find_previous),
(ephy_find_toolbar_open):
Add status text to the find toolbar.
Reverse Next/Previous button order.
Diffstat (limited to 'embed/ephy-embed-find.h')
-rw-r--r-- | embed/ephy-embed-find.h | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/embed/ephy-embed-find.h b/embed/ephy-embed-find.h index a601c9a4e..0370e8c6c 100644 --- a/embed/ephy-embed-find.h +++ b/embed/ephy-embed-find.h @@ -39,6 +39,13 @@ G_BEGIN_DECLS typedef struct _EphyEmbedFind EphyEmbedFind; typedef struct _EphyEmbedFindIface EphyEmbedFindIface; +/* Keep these the same as in nsITypeAheadFind */ +typedef enum +{ + EPHY_EMBED_FIND_FOUND = 0, + EPHY_EMBED_FIND_NOTFOUND = 1, + EPHY_EMBED_FIND_FOUNDWRAPPED = 2 +} EphyEmbedFindResult; struct _EphyEmbedFindIface { @@ -50,11 +57,11 @@ struct _EphyEmbedFindIface void (* set_properties) (EphyEmbedFind *find, const char *search_string, gboolean case_sensitive); - gboolean (* find) (EphyEmbedFind *find, - const char *search_string, - gboolean links_only); - gboolean (* find_again) (EphyEmbedFind *find, - gboolean forward); + EphyEmbedFindResult (* find) (EphyEmbedFind *find, + const char *search_string, + gboolean links_only); + EphyEmbedFindResult (* find_again) (EphyEmbedFind *find, + gboolean forward); gboolean (* activate_link) (EphyEmbedFind *find, GdkModifierType mask); }; @@ -68,12 +75,12 @@ void ephy_embed_find_set_properties (EphyEmbedFind *find, const char *search_string, gboolean case_sensitive); -gboolean ephy_embed_find_find (EphyEmbedFind *find, - const char *search_string, - gboolean links_only); +EphyEmbedFindResult ephy_embed_find_find (EphyEmbedFind *find, + const char *search_string, + gboolean links_only); -gboolean ephy_embed_find_find_again (EphyEmbedFind *find, - gboolean forward); +EphyEmbedFindResult ephy_embed_find_find_again (EphyEmbedFind *find, + gboolean forward); gboolean ephy_embed_find_activate_link (EphyEmbedFind *find, GdkModifierType mask); |