Show a 'zoom to fit' icon in the zoomdial as well as a 'zoom 100%' icon.
[synfig.git] / synfig-studio / trunk / src / gtkmm / zoomdial.h
index 333f74c..7842689 100644 (file)
@@ -2,7 +2,7 @@
 /*!    \file zoomdial.h
 **     \brief Template Header
 **
-**     $Id: zoomdial.h,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
@@ -55,7 +55,7 @@ class ZoomDial : public Gtk::Table
        Gtk::Tooltips tooltips;
        Gtk::IconSize iconsize;
 
-       
+
 public:
        Gtk::Button *zoom_in;
        Gtk::Button *zoom_out;
@@ -66,14 +66,15 @@ public:
        {
                Gtk::Image *icon;
 
-               SMALL_BUTTON(zoom_in,"gtk-add","Zoom In");
-               SMALL_BUTTON(zoom_out,"gtk-remove","Zoom Out");
-               SMALL_BUTTON(zoom_fit,"gtk-zoom-fit","Zoom Fit");
-               SMALL_BUTTON(zoom_norm,"gtk-zoom-100","Zoom to 100%");
+               SMALL_BUTTON(zoom_in,"gtk-add",_("Zoom In"));
+               SMALL_BUTTON(zoom_out,"gtk-remove",_("Zoom Out"));
+               SMALL_BUTTON(zoom_fit,"gtk-zoom-fit",_("Zoom Fit"));
+               SMALL_BUTTON(zoom_norm,"gtk-zoom-100",_("Zoom to 100%"));
 
                attach(*zoom_out, 0, 1, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
                attach(*zoom_norm, 1, 2, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
-               attach(*zoom_in, 2, 3, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
+               attach(*zoom_fit, 2, 3, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
+               attach(*zoom_in, 3, 4, 0, 1, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
        }
 
        Glib::SignalProxy0<void> signal_zoom_in()