diff options
author | James Willcox <jwillcox@gnome.org> | 2003-03-07 08:39:47 +0800 |
---|---|---|
committer | James Willcox <jwillcox@src.gnome.org> | 2003-03-07 08:39:47 +0800 |
commit | cae31d5a232a286fa1e9ce2c303f3ed139b81b87 (patch) | |
tree | 93c3212b13e7309cf6b42bb06dfdaf5318bed267 /data | |
parent | f7d30977b5bff128551c56ce4d8f20ddf3ab245c (diff) | |
download | gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar.gz gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar.bz2 gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar.lz gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar.xz gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.tar.zst gsoc2013-epiphany-cae31d5a232a286fa1e9ce2c303f3ed139b81b87.zip |
Update from libegg same
2003-03-06 James Willcox <jwillcox@gnome.org>
* data/ui/epiphany-ui.xml.in:
* lib/egg/eggtoolbar.c: Update from libegg
* lib/egg/eggtoolbar.h: same
* lib/widgets/ephy-editable-toolbar.c:
(ephy_editable_toolbar_remove_cb), (ephy_editable_toolbar_edit_cb),
(popup_toolbar_context_menu), (setup_toolbar), (do_merge):
Implement a context menu for toolbars.
Diffstat (limited to 'data')
-rw-r--r-- | data/ui/Makefile.am | 3 | ||||
-rw-r--r-- | data/ui/epiphany-toolbar-popup-ui.xml.in | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/data/ui/Makefile.am b/data/ui/Makefile.am index 189a6e938..373e83368 100644 --- a/data/ui/Makefile.am +++ b/data/ui/Makefile.am @@ -2,7 +2,8 @@ uixmldir = $(pkgdatadir) uixml_in_files = epiphany-ui.xml.in \ epiphany-bookmark-editor-ui.xml.in \ nautilus-epiphany-view.xml.in \ - epiphany-toolbar.xml.in + epiphany-toolbar.xml.in \ + epiphany-toolbar-popup-ui.xml.in uixml_DATA = $(uixml_in_files:.xml.in=.xml) diff --git a/data/ui/epiphany-toolbar-popup-ui.xml.in b/data/ui/epiphany-toolbar-popup-ui.xml.in new file mode 100644 index 000000000..ce7aaccb3 --- /dev/null +++ b/data/ui/epiphany-toolbar-popup-ui.xml.in @@ -0,0 +1,12 @@ +<Root> +<popups> + +<popup name="EphyToolbarPopup" verb="FakeToplevel"> + <menuitem name="RemoveToolbarTP" verb="RemoveToolbarPopup"/> + <menuitem name="EditToolbarTP" verb="EditToolbarPopup"/> +</popup> + + +</popups> +</Root> + |