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