diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-04-19 00:43:54 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-04-19 00:43:54 +0800 |
commit | 4a4d612e4177cb4fc080324f60f57682c408b01a (patch) | |
tree | 538b3eae62f84392ea5aa50b29ffe59b2aae1095 /embed/ephy-history.h | |
parent | 26d1ed1f62e1c3229729bb79673f1b424a4dd8d9 (diff) | |
download | gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar.gz gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar.bz2 gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar.lz gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar.xz gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.tar.zst gsoc2013-epiphany-4a4d612e4177cb4fc080324f60f57682c408b01a.zip |
Implement clear history. Put favicons near sites names.
2003-04-18 Marco Pesenti Gritti <marco@it.gnome.org>
* embed/ephy-history.c: (ephy_history_set_page_title),
(ephy_history_set_icon), (ephy_history_clear):
* embed/ephy-history.h:
* src/ephy-history-window.c: (cmd_clear), (provide_favicon),
(ephy_history_window_construct):
* src/ephy-tab.c: (ephy_tab_set_favicon):
Implement clear history. Put favicons near sites names.
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 ccddbec67..4308e7adc 100644 --- a/embed/ephy-history.h +++ b/embed/ephy-history.h @@ -44,7 +44,8 @@ enum EPHY_NODE_PAGE_PROP_LAST_VISIT = 5, EPHY_NODE_PAGE_PROP_FIRST_VISIT = 6, EPHY_NODE_PAGE_PROP_HOST_ID = 7, - EPHY_NODE_PAGE_PROP_PRIORITY = 8 + EPHY_NODE_PAGE_PROP_PRIORITY = 8, + EPHY_NODE_PAGE_PROP_ICON = 9 }; struct EphyHistory @@ -86,6 +87,10 @@ void ephy_history_set_page_title (EphyHistory *gh, const char *ephy_history_get_last_page (EphyHistory *gh); +void ephy_history_set_icon (EphyHistory *gh, + const char *url, + const char *icon); + void ephy_history_remove (EphyHistory *gh, EphyNode *node); |