aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-window.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-01-31 20:42:25 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-31 20:42:25 +0800
commit7548f42681c7b6792cffb6135b525436dc280fa8 (patch)
tree0e18b98e10100afe98bd330d6b0e907af3b75a7e /src/ephy-window.c
parent419f820922705e79860f0c57a46db11742601f6d (diff)
downloadgsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar.gz
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar.bz2
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar.lz
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar.xz
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.tar.zst
gsoc2013-epiphany-7548f42681c7b6792cffb6135b525436dc280fa8.zip
Add icons, fix some minor appeareance stuff, rework ui updating to deal
2003-01-31 Marco Pesenti Gritti <marco@it.gnome.org> * lib/widgets/ephy-editable-toolbar.c: Add icons, fix some minor appeareance stuff, rework ui updating to deal with editor size.
Diffstat (limited to 'src/ephy-window.c')
-rw-r--r--src/ephy-window.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index ec023ff83..6c0516d54 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -38,6 +38,7 @@
#include "popup-commands.h"
#include "egg-toggle-action.h"
#include "ephy-encoding-menu.h"
+#include "ephy-stock-icons.h"
#include <string.h>
#include <libgnome/gnome-i18n.h>
@@ -65,7 +66,7 @@ static EggActionGroupEntry ephy_menu_entries [] = {
{ "FileNewWindow", N_("_New Window"), GTK_STOCK_NEW, "<control>N",
N_("Create a new window"),
G_CALLBACK (window_cmd_file_new_window), NULL },
- { "FileNewTab", N_("New _Tab"), NULL, "<shift><control>N",
+ { "FileNewTab", N_("New _Tab"), EPHY_STOCK_NEW_TAB, "<shift><control>N",
N_("Create a new tab"),
G_CALLBACK (window_cmd_file_new_tab), NULL },
{ "FileOpen", N_("_Open..."), GTK_STOCK_OPEN, "<control>O",
@@ -135,7 +136,7 @@ static EggActionGroupEntry ephy_menu_entries [] = {
{ "ViewStatusbar", N_("St_atusbar"), NULL, NULL,
N_("Show or hide statusbar"),
G_CALLBACK (window_cmd_view_statusbar), NULL, TOGGLE_ACTION },
- { "ViewFullscreen", N_("_Fullscreen"), NULL, "F11",
+ { "ViewFullscreen", N_("_Fullscreen"), EPHY_STOCK_FULLSCREEN, "F11",
N_("Browse at full screen"),
G_CALLBACK (window_cmd_view_fullscreen), NULL, TOGGLE_ACTION},
{ "ViewZoomIn", N_("Zoom _In"), GTK_STOCK_ZOOM_IN, "<control>plus",
@@ -168,10 +169,10 @@ static EggActionGroupEntry ephy_menu_entries [] = {
{ "GoLocation", N_("_Location..."), NULL, "<control>L",
N_("Go to a specified location"),
G_CALLBACK (window_cmd_go_location), NULL },
- { "GoHistory", N_("_History"), NULL, "<control>H",
+ { "GoHistory", N_("_History"), EPHY_STOCK_HISTORY, "<control>H",
N_("Go to an already visited page"),
G_CALLBACK (window_cmd_go_history), NULL },
- { "GoBookmarks", N_("_Bookmarks"), NULL, "<control>B",
+ { "GoBookmarks", N_("_Bookmarks"), EPHY_STOCK_BOOKMARKS, "<control>B",
N_("Go to a bookmark"),
G_CALLBACK (window_cmd_go_bookmarks), NULL },