forgot this one.
2003-08-25 Michael Natterer <mitch@gimp.org> * app/display/gimpnavigationview.c: forgot this one.
This commit is contained in:

committed by
Michael Natterer

parent
cf8e0558ab
commit
bd21fec5e8
@ -1,3 +1,7 @@
|
||||
2003-08-25 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/display/gimpnavigationview.c: forgot this one.
|
||||
|
||||
2003-08-24 Seth Burgess <sjburges@gimp.org>
|
||||
|
||||
* plug-ins/rcm/rcm_callback.c: add in a call to
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include "core/gimp.h"
|
||||
#include "core/gimpimage.h"
|
||||
|
||||
#include "widgets/gimphelp-ids.h"
|
||||
#include "widgets/gimpnavigationpreview.h"
|
||||
#include "widgets/gimppreviewrenderer.h"
|
||||
|
||||
@ -375,40 +376,40 @@ gimp_navigation_view_new_private (GimpDisplayShell *shell,
|
||||
|
||||
view->zoom_out_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_OUT,
|
||||
_("Zoom out"), NULL,
|
||||
GTK_STOCK_ZOOM_OUT, _("Zoom out"),
|
||||
GIMP_HELP_VIEW_ZOOM_OUT,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_out_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_in_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_IN,
|
||||
_("Zoom in"), NULL,
|
||||
GTK_STOCK_ZOOM_IN, _("Zoom in"),
|
||||
GIMP_HELP_VIEW_ZOOM_IN,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_in_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_100_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_100,
|
||||
_("Zoom 1:1"), NULL,
|
||||
GTK_STOCK_ZOOM_100, _("Zoom 1:1"),
|
||||
GIMP_HELP_VIEW_ZOOM_100,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_100_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_fit_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_FIT,
|
||||
_("Zoom to fit window"), NULL,
|
||||
GTK_STOCK_ZOOM_FIT, _("Zoom to fit window"),
|
||||
GIMP_HELP_VIEW_ZOOM_FIT,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_fit_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->shrink_wrap_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_FIT,
|
||||
_("Shrink Wrap"), NULL,
|
||||
GTK_STOCK_ZOOM_FIT, _("Shrink Wrap"),
|
||||
GIMP_HELP_VIEW_SHRINK_WRAP,
|
||||
G_CALLBACK (gimp_navigation_view_shrink_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include "core/gimp.h"
|
||||
#include "core/gimpimage.h"
|
||||
|
||||
#include "widgets/gimphelp-ids.h"
|
||||
#include "widgets/gimpnavigationpreview.h"
|
||||
#include "widgets/gimppreviewrenderer.h"
|
||||
|
||||
@ -375,40 +376,40 @@ gimp_navigation_view_new_private (GimpDisplayShell *shell,
|
||||
|
||||
view->zoom_out_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_OUT,
|
||||
_("Zoom out"), NULL,
|
||||
GTK_STOCK_ZOOM_OUT, _("Zoom out"),
|
||||
GIMP_HELP_VIEW_ZOOM_OUT,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_out_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_in_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_IN,
|
||||
_("Zoom in"), NULL,
|
||||
GTK_STOCK_ZOOM_IN, _("Zoom in"),
|
||||
GIMP_HELP_VIEW_ZOOM_IN,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_in_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_100_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_100,
|
||||
_("Zoom 1:1"), NULL,
|
||||
GTK_STOCK_ZOOM_100, _("Zoom 1:1"),
|
||||
GIMP_HELP_VIEW_ZOOM_100,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_100_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->zoom_fit_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_FIT,
|
||||
_("Zoom to fit window"), NULL,
|
||||
GTK_STOCK_ZOOM_FIT, _("Zoom to fit window"),
|
||||
GIMP_HELP_VIEW_ZOOM_FIT,
|
||||
G_CALLBACK (gimp_navigation_view_zoom_fit_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
||||
view->shrink_wrap_button =
|
||||
gimp_editor_add_button (GIMP_EDITOR (view),
|
||||
GTK_STOCK_ZOOM_FIT,
|
||||
_("Shrink Wrap"), NULL,
|
||||
GTK_STOCK_ZOOM_FIT, _("Shrink Wrap"),
|
||||
GIMP_HELP_VIEW_SHRINK_WRAP,
|
||||
G_CALLBACK (gimp_navigation_view_shrink_clicked),
|
||||
NULL,
|
||||
view);
|
||||
|
Reference in New Issue
Block a user