diff options
author | David Bordoley <bordoley@msu.edu> | 2003-03-25 04:08:08 +0800 |
---|---|---|
committer | Dave Bordoley <Bordoley@src.gnome.org> | 2003-03-25 04:08:08 +0800 |
commit | 53a85cd93b24a7fd98a7ae205fd9e20a4d54e71a (patch) | |
tree | b4192302efea2200304e148e7ae8345c3dea01da /data | |
parent | 63b600e23ba36103cc5d28b2314c2d885577bc56 (diff) | |
download | gsoc2013-epiphany-53a85cd93b24a7fd98a7ae205fd9e20a4d54e71a.tar.gz gsoc2013-epiphany-53a85cd93b24a7fd98a7ae205fd9e20a4d54e71a.tar.zst gsoc2013-epiphany-53a85cd93b24a7fd98a7ae205fd9e20a4d54e71a.zip |
New epiphany-bookmark-page stock image. I'm not at all attached to this
2003-03-24 David Bordoley <bordoley@msu.edu>
* data/art/epiphany-bookmark-page.png: (New file):
* data/art/Makefile.am:
* lib/ephy-stock-icons.c:
* lib/ephy-stock-icons.h:
New epiphany-bookmark-page stock image. I'm not at all attached to this icon,
if you can make a better one, please do :)
* data/glade/epiphany.glade:
Change button ordering to [clear][cancel][jump to].
* embed/find-dialog.c:
Use GTK_STOCK_FIND for the window border icon.
* embed/print-dialog.c:
Use GTK_STOCK_PRINT for the window border icon.
* src/bookmarks/ephy-new-bookmark.c:
Use EPHY_STOCK_BOOKMARK_PAGE for the window icon.
s/add bookmark/new bookmark for the window title.
* src/bookmarks/ephy-bookmark-properties.c: (set_window_icon),
(update_window_title):
New functions. Dynamically set the property window title base on the
bookmark title. Use the favicon icon if available for the window icon, otherwise use
GTK_STOCK_PROPERTIES.
* src/window-commands.c:
Use GNOME_STOCK_ABOUT for the about window icon.
* src/prefs-dialog.c:
USE GTK_STOCK_PREFERENCES for the window icon.
* src/history-dialog.c:
Use epiphany-history.png for the window border icon.
* src/ephy-window.c:
Use EPHY_STOCK_BOOKMARK_PAGE for the boomark page/link menu items.
Diffstat (limited to 'data')
-rw-r--r-- | data/art/Makefile.am | 1 | ||||
-rw-r--r-- | data/art/epiphany-bookmark-page.png | bin | 0 -> 486 bytes | |||
-rw-r--r-- | data/glade/epiphany.glade | 29 |
3 files changed, 16 insertions, 14 deletions
diff --git a/data/art/Makefile.am b/data/art/Makefile.am index 9dabf7874..57b6a453d 100644 --- a/data/art/Makefile.am +++ b/data/art/Makefile.am @@ -4,6 +4,7 @@ art_DATA = \ epiphany.png \ epiphany-fullscreen.png \ epiphany-bookmarks.png \ + epiphany-bookmark-page.png \ epiphany-entry.png \ epiphany-download.png \ epiphany-history.png \ diff --git a/data/art/epiphany-bookmark-page.png b/data/art/epiphany-bookmark-page.png Binary files differnew file mode 100644 index 000000000..313b0cc3d --- /dev/null +++ b/data/art/epiphany-bookmark-page.png diff --git a/data/glade/epiphany.glade b/data/glade/epiphany.glade index 8500522aa..9ade85405 100644 --- a/data/glade/epiphany.glade +++ b/data/glade/epiphany.glade @@ -26,18 +26,6 @@ <property name="visible">True</property> <property name="layout_style">GTK_BUTTONBOX_END</property> - <child> - <widget class="GtkButton" id="history_go_button"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label">gtk-jump-to</property> - <property name="use_stock">True</property> - <property name="relief">GTK_RELIEF_NORMAL</property> - <property name="sensitive">False</property> - <signal name="clicked" handler="history_go_button_clicked_cb"/> - </widget> - </child> - <child> <widget class="GtkButton" id="history_clear_button"> <property name="visible">True</property> @@ -111,13 +99,26 @@ <property name="can_default">True</property> <property name="has_default">True</property> <property name="can_focus">True</property> - <property name="label">gtk-close</property> + <property name="label">gtk-cancel</property> <property name="use_stock">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> - <property name="response_id">-7</property> + <property name="response_id">-6</property> <signal name="clicked" handler="history_ok_button_clicked_cb"/> </widget> </child> + + <child> + <widget class="GtkButton" id="history_go_button"> + <property name="visible">True</property> + <property name="sensitive">False</property> + <property name="can_focus">True</property> + <property name="label">gtk-jump-to</property> + <property name="use_stock">True</property> + <property name="relief">GTK_RELIEF_NORMAL</property> + <property name="response_id">0</property> + <signal name="clicked" handler="history_go_button_clicked_cb"/> + </widget> + </child> </widget> <packing> <property name="padding">0</property> |