diff options
author | James Willcox <jwillcox@gnome.org> | 2003-02-15 02:52:57 +0800 |
---|---|---|
committer | James Willcox <jwillcox@src.gnome.org> | 2003-02-15 02:52:57 +0800 |
commit | 853e7df8135a9a57071e3b0122e4dbf29e447dc9 (patch) | |
tree | 9effc11254540fcf63944ace4c1870a0039f4b97 /data | |
parent | 49db412621481e87b3b5d882320e533a290eaa62 (diff) | |
download | gsoc2013-epiphany-853e7df8135a9a57071e3b0122e4dbf29e447dc9.tar.gz gsoc2013-epiphany-853e7df8135a9a57071e3b0122e4dbf29e447dc9.tar.zst gsoc2013-epiphany-853e7df8135a9a57071e3b0122e4dbf29e447dc9.zip |
Add tab load notification (a little spinning icon), and a context menu for
2003-02-14 James Willcox <jwillcox@gnome.org>
* data/art/Makefile.am:
* data/ui/Makefile.am:
* lib/widgets/ephy-notebook.c: (ephy_notebook_init),
(ephy_notebook_set_page_status), (tab_build_label):
* src/bookmarks/ephy-bookmarks-editor.c:
(popup_cmd_open_bookmarks_in_tabs),
(popup_cmd_open_bookmarks_in_browser),
(popup_cmd_remove_bookmarks), (ephy_bookmarks_editor_finalize),
(ephy_bookmarks_editor_show_popup_cb),
(ephy_bookmarks_editor_construct):
Add tab load notification (a little spinning icon), and a context
menu for the bookmarks editor.
Diffstat (limited to 'data')
-rw-r--r-- | data/art/Makefile.am | 3 | ||||
-rw-r--r-- | data/art/epiphany-tab-loading.gif | bin | 0 -> 288 bytes | |||
-rw-r--r-- | data/ui/Makefile.am | 1 | ||||
-rw-r--r-- | data/ui/epiphany-bookmark-editor-ui.xml.in | 13 |
4 files changed, 16 insertions, 1 deletions
diff --git a/data/art/Makefile.am b/data/art/Makefile.am index b92119de8..0cdf57535 100644 --- a/data/art/Makefile.am +++ b/data/art/Makefile.am @@ -7,7 +7,8 @@ art_DATA = \ epiphany-history.png \ epiphany-new-tab.png \ epiphany-viewsource.png \ - epiphany-send-link.png + epiphany-send-link.png \ + epiphany-tab-loading.gif appicon_DATA = epiphany.png appicondir = $(datadir)/pixmaps diff --git a/data/art/epiphany-tab-loading.gif b/data/art/epiphany-tab-loading.gif Binary files differnew file mode 100644 index 000000000..c91e58e98 --- /dev/null +++ b/data/art/epiphany-tab-loading.gif diff --git a/data/ui/Makefile.am b/data/ui/Makefile.am index c56bceda3..189a6e938 100644 --- a/data/ui/Makefile.am +++ b/data/ui/Makefile.am @@ -1,5 +1,6 @@ uixmldir = $(pkgdatadir) uixml_in_files = epiphany-ui.xml.in \ + epiphany-bookmark-editor-ui.xml.in \ nautilus-epiphany-view.xml.in \ epiphany-toolbar.xml.in diff --git a/data/ui/epiphany-bookmark-editor-ui.xml.in b/data/ui/epiphany-bookmark-editor-ui.xml.in new file mode 100644 index 000000000..d3a0180c8 --- /dev/null +++ b/data/ui/epiphany-bookmark-editor-ui.xml.in @@ -0,0 +1,13 @@ + +<Root> +<popups> + +<popup name="EphyBookmarkEditorPopup" verb="FakeToplevel"> + <menuitem name="OpenInTabBMK" verb="OpenInTab"/> + <menuitem name="OpenInWindowBMK" verb="OpenInWindow"/> + <separator name="BookmarksPopupSep1"/> + <menuitem name="RemoveBMK" verb="Remove"/> +</popup> + +</popups> +</Root> |