diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-01-11 00:35:56 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-01-11 00:35:56 +0800 |
commit | e3396ef5e3ae7fd5674eda19a893e7dca88bce35 (patch) | |
tree | 6315e5bc2549ec9db6109607fbb29596363d969e /embed/ephy-history.h | |
parent | 80bc591b9024029ee12957944593053db6763c41 (diff) | |
download | gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar.gz gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar.bz2 gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar.lz gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar.xz gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.tar.zst gsoc2013-epiphany-e3396ef5e3ae7fd5674eda19a893e7dca88bce35.zip |
Implement history disabling.
2004-01-10 Christian Persch <chpe@cvs.gnome.org>
* embed/ephy-history.c: (ephy_history_get_type),
(ephy_history_set_enabled), (ephy_history_set_property),
(ephy_history_get_property), (ephy_history_class_init),
(page_removed_from_host_cb), (disable_history_notifier),
(ephy_history_init), (ephy_history_finalize), (ephy_history_new),
(ephy_history_get_host), (ephy_history_visited),
(ephy_history_add_page), (ephy_history_set_page_title),
(ephy_history_clear), (ephy_history_is_enabled):
* embed/ephy-history.h:
* lib/ephy-node-db.c: (ephy_node_db_get_property),
(ephy_node_db_set_property), (ephy_node_db_set_immutable):
* lib/ephy-node-db.h:
* lib/ephy-prefs.h:
* src/bookmarks/ephy-bookmarks.c: (clear_favorites),
(history_cleared_cb), (ephy_setup_history_notifiers):
Implement history disabling.
Diffstat (limited to 'embed/ephy-history.h')
-rw-r--r-- | embed/ephy-history.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/embed/ephy-history.h b/embed/ephy-history.h index e3184156f..5a3ac1de3 100644 --- a/embed/ephy-history.h +++ b/embed/ephy-history.h @@ -63,7 +63,10 @@ struct EphyHistoryClass { GObjectClass parent_class; - void (* visited) (const char *url); + /* Signals */ + void (* visited) (EphyHistory *history, + const char *url); + void (* cleared) (EphyHistory *history); }; GType ephy_history_get_type (void); @@ -103,6 +106,8 @@ const char *ephy_history_get_icon (EphyHistory *gh, void ephy_history_clear (EphyHistory *gh); +gboolean ephy_history_is_enabled (EphyHistory *history); + G_END_DECLS #endif |