2001-06-26 20:09:43 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2004-04-20 21:25:55 +08:00
|
|
|
#include "actions-types.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2002-11-19 04:50:31 +08:00
|
|
|
#include "config/gimpguiconfig.h"
|
|
|
|
|
2001-10-17 19:33:43 +08:00
|
|
|
#include "core/gimp.h"
|
|
|
|
#include "core/gimpcontext.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
#include "core/gimpimage.h"
|
|
|
|
|
2001-09-26 07:23:09 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
2001-10-13 20:52:30 +08:00
|
|
|
#include "display/gimpdisplay-foreach.h"
|
2004-06-23 00:31:27 +08:00
|
|
|
#include "display/gimpdisplayoptions.h"
|
2001-11-01 05:20:09 +08:00
|
|
|
#include "display/gimpdisplayshell.h"
|
2003-03-12 00:49:36 +08:00
|
|
|
#include "display/gimpdisplayshell-appearance.h"
|
2004-07-14 08:15:57 +08:00
|
|
|
#include "display/gimpdisplayshell-close.h"
|
2003-11-22 06:52:36 +08:00
|
|
|
#include "display/gimpdisplayshell-filter-dialog.h"
|
2001-11-02 17:31:21 +08:00
|
|
|
#include "display/gimpdisplayshell-scale.h"
|
2001-09-26 07:23:09 +08:00
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
#include "widgets/gimpactiongroup.h"
|
2004-09-24 04:41:40 +08:00
|
|
|
#include "widgets/gimpcolordialog.h"
|
2004-02-01 04:23:53 +08:00
|
|
|
#include "widgets/gimpdock.h"
|
2002-03-20 23:32:35 +08:00
|
|
|
#include "widgets/gimpdialogfactory.h"
|
2004-04-29 20:52:29 +08:00
|
|
|
#include "widgets/gimpuimanager.h"
|
2002-03-20 23:32:35 +08:00
|
|
|
|
2004-09-13 23:15:23 +08:00
|
|
|
#include "dialogs/dialogs.h"
|
2004-04-20 21:25:55 +08:00
|
|
|
|
2004-05-03 22:03:51 +08:00
|
|
|
#include "actions.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
#include "view-commands.h"
|
|
|
|
|
2004-06-23 00:31:27 +08:00
|
|
|
#include "gimp-intl.h"
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2004-06-23 00:31:27 +08:00
|
|
|
|
|
|
|
#define SET_ACTIVE(manager,action_name,active) \
|
2004-04-29 20:52:29 +08:00
|
|
|
{ GimpActionGroup *group = \
|
2004-06-23 00:31:27 +08:00
|
|
|
gimp_ui_manager_get_action_group (manager, "view"); \
|
2004-04-29 20:52:29 +08:00
|
|
|
gimp_action_group_set_action_active (group, action_name, active); }
|
|
|
|
|
2003-11-11 21:09:50 +08:00
|
|
|
#define IS_ACTIVE_DISPLAY(gdisp) \
|
|
|
|
((gdisp) == \
|
|
|
|
gimp_context_get_display (gimp_get_user_context ((gdisp)->gimage->gimp)))
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2004-09-24 04:41:40 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
2005-01-29 03:48:31 +08:00
|
|
|
static void view_padding_color_dialog_update (GimpColorDialog *dialog,
|
|
|
|
const GimpRGB *color,
|
|
|
|
GimpColorDialogState state,
|
|
|
|
GimpDisplayShell *shell);
|
2004-09-24 04:41:40 +08:00
|
|
|
|
|
|
|
|
2004-05-03 22:46:29 +08:00
|
|
|
/* public functions */
|
|
|
|
|
2004-05-05 19:40:20 +08:00
|
|
|
void
|
2005-09-25 03:34:46 +08:00
|
|
|
view_new_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2004-05-05 19:40:20 +08:00
|
|
|
{
|
2004-06-02 06:04:20 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-05-05 19:40:20 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
2004-06-02 06:04:20 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
gimp_create_display (gdisp->gimage->gimp,
|
|
|
|
gdisp->gimage,
|
|
|
|
shell->unit, shell->scale);
|
2004-05-05 19:40:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-09-25 03:34:46 +08:00
|
|
|
view_close_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2004-05-05 19:40:20 +08:00
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
gimp_display_shell_close (GIMP_DISPLAY_SHELL (gdisp->shell), FALSE);
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-10-07 08:35:04 +08:00
|
|
|
view_zoom_fit_in_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
GimpDisplay *gdisp;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2004-10-07 08:35:04 +08:00
|
|
|
gimp_display_shell_scale_fit_in (GIMP_DISPLAY_SHELL (gdisp->shell));
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-10-07 08:35:04 +08:00
|
|
|
view_zoom_fit_to_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
GimpDisplay *gdisp;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2004-10-07 08:35:04 +08:00
|
|
|
gimp_display_shell_scale_fit_to (GIMP_DISPLAY_SHELL (gdisp->shell));
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2001-11-02 17:31:21 +08:00
|
|
|
void
|
2004-10-07 08:35:04 +08:00
|
|
|
view_zoom_cmd_callback (GtkAction *action,
|
|
|
|
gint value,
|
|
|
|
gpointer data)
|
2004-06-20 20:09:03 +08:00
|
|
|
{
|
2004-10-07 08:35:04 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gdouble scale;
|
2004-06-20 20:09:03 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
2004-10-07 08:35:04 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
2004-06-20 20:09:03 +08:00
|
|
|
|
2004-10-07 08:35:04 +08:00
|
|
|
scale = shell->scale;
|
2001-11-02 17:31:21 +08:00
|
|
|
|
2004-10-07 08:35:04 +08:00
|
|
|
switch ((GimpActionSelectType) value)
|
|
|
|
{
|
|
|
|
case GIMP_ACTION_SELECT_FIRST:
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, 1.0 / 256.0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_ACTION_SELECT_LAST:
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, 256.0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_ACTION_SELECT_PREVIOUS:
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_OUT, 0.0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_ACTION_SELECT_NEXT:
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_IN, 0.0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_ACTION_SELECT_SKIP_PREVIOUS:
|
2005-09-25 01:25:36 +08:00
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_OUT, scale);
|
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_OUT, scale);
|
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_OUT, scale);
|
2004-10-07 08:35:04 +08:00
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, scale);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_ACTION_SELECT_SKIP_NEXT:
|
2005-09-25 01:25:36 +08:00
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_IN, scale);
|
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_IN, scale);
|
|
|
|
scale = gimp_zoom_model_zoom_step (GIMP_ZOOM_IN, scale);
|
2004-10-07 08:35:04 +08:00
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, scale);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
scale = action_select_value ((GimpActionSelectType) value,
|
|
|
|
scale,
|
2004-10-07 18:12:26 +08:00
|
|
|
0.0, 512.0,
|
2004-10-07 08:35:04 +08:00
|
|
|
1.0, 16.0,
|
|
|
|
FALSE);
|
|
|
|
|
2004-10-07 18:12:26 +08:00
|
|
|
/* min = 1.0 / 256, max = 256.0 */
|
|
|
|
/* scale = min * (max / min)**(i/n), i = 0..n */
|
|
|
|
scale = pow (65536.0, scale / 512.0) / 256.0;
|
2004-10-07 08:35:04 +08:00
|
|
|
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, scale);
|
|
|
|
break;
|
|
|
|
}
|
2001-11-02 17:31:21 +08:00
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-10-07 08:35:04 +08:00
|
|
|
view_zoom_explicit_cmd_callback (GtkAction *action,
|
|
|
|
GtkAction *current,
|
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2003-03-13 01:18:25 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gint value;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2003-03-13 01:18:25 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (action));
|
2003-04-04 16:32:51 +08:00
|
|
|
|
2004-06-07 22:04:50 +08:00
|
|
|
if (value != 0 /* not Other... */)
|
2004-04-29 20:52:29 +08:00
|
|
|
{
|
|
|
|
if (fabs (value - shell->scale) > 0.0001)
|
|
|
|
gimp_display_shell_scale (shell, GIMP_ZOOM_TO, (gdouble) value / 10000);
|
|
|
|
}
|
2003-04-04 16:32:51 +08:00
|
|
|
}
|
|
|
|
|
2004-06-07 22:04:50 +08:00
|
|
|
void
|
|
|
|
view_zoom_other_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
/* check if we are activated by the user or from
|
|
|
|
* view_actions_set_zoom()
|
|
|
|
*/
|
|
|
|
if (gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action)) &&
|
|
|
|
shell->scale != shell->other_scale)
|
|
|
|
{
|
|
|
|
gimp_display_shell_scale_dialog (shell);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_dot_for_dot_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2003-01-11 01:55:53 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2003-01-11 01:55:53 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
if (active != shell->dot_for_dot)
|
2003-01-11 01:55:53 +08:00
|
|
|
{
|
2004-04-29 20:52:29 +08:00
|
|
|
gimp_display_shell_scale_set_dot_for_dot (shell, active);
|
2003-01-11 01:55:53 +08:00
|
|
|
|
2004-06-23 00:31:27 +08:00
|
|
|
SET_ACTIVE (shell->menubar_manager, "view-dot-for-dot",
|
2004-04-29 20:52:29 +08:00
|
|
|
shell->dot_for_dot);
|
2003-11-11 21:09:50 +08:00
|
|
|
|
|
|
|
if (IS_ACTIVE_DISPLAY (gdisp))
|
2004-06-23 00:31:27 +08:00
|
|
|
SET_ACTIVE (shell->popup_manager, "view-dot-for-dot",
|
2004-04-29 20:52:29 +08:00
|
|
|
shell->dot_for_dot);
|
2003-01-11 01:55:53 +08:00
|
|
|
}
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2004-07-07 09:15:41 +08:00
|
|
|
void
|
|
|
|
view_scroll_horizontal_cmd_callback (GtkAction *action,
|
|
|
|
gint value,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gdouble offset;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
offset = action_select_value ((GimpActionSelectType) value,
|
|
|
|
shell->hsbdata->value,
|
|
|
|
shell->hsbdata->lower,
|
|
|
|
shell->hsbdata->upper -
|
|
|
|
shell->hsbdata->page_size,
|
|
|
|
shell->hsbdata->step_increment,
|
|
|
|
shell->hsbdata->page_increment,
|
|
|
|
FALSE);
|
|
|
|
gtk_adjustment_set_value (shell->hsbdata, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
view_scroll_vertical_cmd_callback (GtkAction *action,
|
|
|
|
gint value,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gdouble offset;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
offset = action_select_value ((GimpActionSelectType) value,
|
|
|
|
shell->vsbdata->value,
|
|
|
|
shell->vsbdata->lower,
|
|
|
|
shell->vsbdata->upper -
|
|
|
|
shell->vsbdata->page_size,
|
|
|
|
shell->vsbdata->step_increment,
|
|
|
|
shell->vsbdata->page_increment,
|
|
|
|
FALSE);
|
|
|
|
gtk_adjustment_set_value (shell->vsbdata, offset);
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_navigation_window_cmd_callback (GtkAction *action,
|
2002-03-20 23:32:35 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-11-01 05:20:09 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2002-05-08 00:23:14 +08:00
|
|
|
gimp_dialog_factory_dialog_raise (global_dock_factory,
|
2004-04-29 20:52:29 +08:00
|
|
|
gtk_widget_get_screen (gdisp->shell),
|
2002-05-08 00:23:14 +08:00
|
|
|
"gimp-navigation-view", -1);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2002-03-20 23:32:35 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_display_filters_cmd_callback (GtkAction *action,
|
2002-03-20 23:32:35 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2003-11-22 06:52:36 +08:00
|
|
|
if (! shell->filters_dialog)
|
|
|
|
{
|
|
|
|
shell->filters_dialog = gimp_display_shell_filter_dialog_new (shell);
|
|
|
|
|
|
|
|
g_signal_connect (shell->filters_dialog, "destroy",
|
|
|
|
G_CALLBACK (gtk_widget_destroyed),
|
|
|
|
&shell->filters_dialog);
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_present (GTK_WINDOW (shell->filters_dialog));
|
2002-03-20 23:32:35 +08:00
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_selection_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-11-11 07:03:22 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_selection (shell, active);
|
2001-11-16 23:08:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_layer_boundary_cmd_callback (GtkAction *action,
|
2001-11-16 23:08:59 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-11-16 23:08:59 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_layer (shell, active);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2002-12-14 22:13:54 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_menubar_cmd_callback (GtkAction *action,
|
2002-12-14 22:13:54 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2002-12-14 22:13:54 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_menubar (shell, active);
|
2002-12-14 22:13:54 +08:00
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_rulers_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2003-03-12 00:49:36 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_rulers (shell, active);
|
2003-03-12 00:49:36 +08:00
|
|
|
}
|
2002-12-11 00:38:16 +08:00
|
|
|
|
2003-03-12 00:49:36 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_scrollbars_cmd_callback (GtkAction *action,
|
2003-03-12 00:49:36 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2003-03-12 00:49:36 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2002-12-14 22:13:54 +08:00
|
|
|
|
2003-03-12 00:49:36 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_scrollbars (shell, active);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_statusbar_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-11-01 05:20:09 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_statusbar (shell, active);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_toggle_guides_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2003-03-20 19:31:33 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2003-03-20 19:31:33 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_show_guides (shell, active);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2005-03-05 00:34:59 +08:00
|
|
|
void
|
2005-03-05 08:10:40 +08:00
|
|
|
view_toggle_grid_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2005-03-05 00:34:59 +08:00
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gboolean active;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
2005-03-05 08:10:40 +08:00
|
|
|
gimp_display_shell_set_show_grid (shell, active);
|
2005-03-05 00:34:59 +08:00
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2005-03-05 08:10:40 +08:00
|
|
|
view_toggle_sample_points_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2003-01-11 01:55:53 +08:00
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2003-01-11 01:55:53 +08:00
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
2002-12-14 22:13:54 +08:00
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
2003-01-11 01:55:53 +08:00
|
|
|
|
2005-03-05 08:10:40 +08:00
|
|
|
gimp_display_shell_set_show_sample_points (shell, active);
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
|
|
|
|
2003-06-24 03:34:48 +08:00
|
|
|
void
|
2005-01-04 00:55:24 +08:00
|
|
|
view_snap_to_guides_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
2003-06-24 03:34:48 +08:00
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2003-06-24 03:34:48 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
2003-06-24 03:34:48 +08:00
|
|
|
|
2005-01-04 00:55:24 +08:00
|
|
|
gimp_display_shell_set_snap_to_guides (shell, active);
|
2003-06-24 03:34:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_snap_to_grid_cmd_callback (GtkAction *action,
|
2003-06-24 03:34:48 +08:00
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2003-06-24 03:34:48 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
2003-11-11 21:09:50 +08:00
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
gimp_display_shell_set_snap_to_grid (shell, active);
|
2003-06-24 03:34:48 +08:00
|
|
|
}
|
|
|
|
|
2005-01-04 00:19:10 +08:00
|
|
|
void
|
|
|
|
view_snap_to_canvas_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gboolean active;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_snap_to_canvas (shell, active);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
view_snap_to_vectors_cmd_callback (GtkAction *action,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
gboolean active;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_snap_to_vectors (shell, active);
|
|
|
|
}
|
|
|
|
|
2004-06-23 00:31:27 +08:00
|
|
|
void
|
|
|
|
view_padding_color_cmd_callback (GtkAction *action,
|
|
|
|
gint value,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
GimpDisplayOptions *options;
|
|
|
|
gboolean fullscreen;
|
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
|
|
|
fullscreen = gimp_display_shell_get_fullscreen (shell);
|
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
options = shell->fullscreen_options;
|
|
|
|
else
|
|
|
|
options = shell->options;
|
|
|
|
|
|
|
|
switch ((GimpCanvasPaddingMode) value)
|
|
|
|
{
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_DEFAULT:
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_LIGHT_CHECK:
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_DARK_CHECK:
|
2004-09-13 23:15:23 +08:00
|
|
|
g_object_set_data (G_OBJECT (shell), "padding-color-dialog", NULL);
|
2004-06-23 00:31:27 +08:00
|
|
|
|
|
|
|
options->padding_mode_set = TRUE;
|
|
|
|
|
|
|
|
gimp_display_shell_set_padding (shell, (GimpCanvasPaddingMode) value,
|
|
|
|
&options->padding_color);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_CUSTOM:
|
|
|
|
{
|
2004-09-24 04:41:40 +08:00
|
|
|
GtkWidget *color_dialog;
|
2004-06-23 00:31:27 +08:00
|
|
|
|
2004-09-13 23:15:23 +08:00
|
|
|
color_dialog = g_object_get_data (G_OBJECT (shell),
|
2004-09-24 04:41:40 +08:00
|
|
|
"padding-color-dialog");
|
2004-06-23 00:31:27 +08:00
|
|
|
|
2004-09-13 23:15:23 +08:00
|
|
|
if (! color_dialog)
|
2004-06-23 00:31:27 +08:00
|
|
|
{
|
2004-09-24 04:41:40 +08:00
|
|
|
color_dialog = gimp_color_dialog_new (GIMP_VIEWABLE (gdisp->gimage),
|
|
|
|
_("Set Canvas Padding Color"),
|
|
|
|
GTK_STOCK_SELECT_COLOR,
|
|
|
|
_("Set Custom Canvas Padding Color"),
|
|
|
|
gdisp->shell,
|
|
|
|
NULL, NULL,
|
|
|
|
&options->padding_color,
|
|
|
|
FALSE, FALSE);
|
|
|
|
|
|
|
|
g_signal_connect (color_dialog, "update",
|
|
|
|
G_CALLBACK (view_padding_color_dialog_update),
|
|
|
|
gdisp->shell);
|
|
|
|
|
2004-09-13 23:15:23 +08:00
|
|
|
g_object_set_data_full (G_OBJECT (shell), "padding-color-dialog",
|
|
|
|
color_dialog,
|
2004-09-24 04:41:40 +08:00
|
|
|
(GDestroyNotify) gtk_widget_destroy);
|
2004-06-23 00:31:27 +08:00
|
|
|
}
|
|
|
|
|
2004-09-24 04:41:40 +08:00
|
|
|
gtk_window_present (GTK_WINDOW (color_dialog));
|
2004-06-23 00:31:27 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_RESET:
|
2004-09-13 23:15:23 +08:00
|
|
|
g_object_set_data (G_OBJECT (shell), "padding-color-dialog", NULL);
|
2004-06-23 00:31:27 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
GimpDisplayConfig *config;
|
|
|
|
GimpDisplayOptions *default_options;
|
|
|
|
|
|
|
|
config = GIMP_DISPLAY_CONFIG (gdisp->gimage->gimp->config);
|
|
|
|
|
|
|
|
options->padding_mode_set = FALSE;
|
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
default_options = config->default_fullscreen_view;
|
|
|
|
else
|
|
|
|
default_options = config->default_view;
|
|
|
|
|
|
|
|
gimp_display_shell_set_padding (shell,
|
|
|
|
default_options->padding_mode,
|
|
|
|
&default_options->padding_color);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-06-26 20:09:43 +08:00
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_shrink_wrap_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2001-06-26 20:09:43 +08:00
|
|
|
{
|
2001-10-17 19:33:43 +08:00
|
|
|
GimpDisplay *gdisp;
|
2001-10-29 19:47:11 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
2001-06-26 20:09:43 +08:00
|
|
|
|
2001-11-01 05:20:09 +08:00
|
|
|
gimp_display_shell_scale_shrink_wrap (GIMP_DISPLAY_SHELL (gdisp->shell));
|
2001-06-26 20:09:43 +08:00
|
|
|
}
|
2003-11-10 08:24:33 +08:00
|
|
|
|
|
|
|
void
|
2004-04-29 20:52:29 +08:00
|
|
|
view_fullscreen_cmd_callback (GtkAction *action,
|
2004-10-07 18:12:26 +08:00
|
|
|
gpointer data)
|
2003-11-10 08:24:33 +08:00
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
|
|
|
GimpDisplayShell *shell;
|
2004-04-29 20:52:29 +08:00
|
|
|
gboolean active;
|
2003-11-10 08:24:33 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (gdisp->shell);
|
|
|
|
|
2004-04-29 20:52:29 +08:00
|
|
|
active = gtk_toggle_action_get_active (GTK_TOGGLE_ACTION (action));
|
|
|
|
|
|
|
|
gimp_display_shell_set_fullscreen (shell, active);
|
2003-11-10 08:24:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-01-29 03:48:31 +08:00
|
|
|
view_move_to_screen_cmd_callback (GtkAction *action,
|
|
|
|
GtkAction *current,
|
|
|
|
gpointer data)
|
2003-11-10 08:24:33 +08:00
|
|
|
{
|
|
|
|
GimpDisplay *gdisp;
|
2005-01-29 03:48:31 +08:00
|
|
|
gint value;
|
2003-11-10 08:24:33 +08:00
|
|
|
return_if_no_display (gdisp, data);
|
|
|
|
|
2005-01-29 03:48:31 +08:00
|
|
|
value = gtk_radio_action_get_current_value (GTK_RADIO_ACTION (action));
|
2003-11-10 08:24:33 +08:00
|
|
|
|
2005-01-29 03:48:31 +08:00
|
|
|
if (value != gdk_screen_get_number (gtk_widget_get_screen (gdisp->shell)))
|
2003-11-10 08:24:33 +08:00
|
|
|
{
|
2005-01-29 03:48:31 +08:00
|
|
|
GdkDisplay *display;
|
|
|
|
GdkScreen *screen;
|
2003-11-10 08:24:33 +08:00
|
|
|
|
2005-01-29 03:48:31 +08:00
|
|
|
display = gtk_widget_get_display (gdisp->shell);
|
|
|
|
screen = gdk_display_get_screen (display, value);
|
2003-11-10 08:24:33 +08:00
|
|
|
|
2005-01-29 03:48:31 +08:00
|
|
|
if (screen)
|
|
|
|
gtk_window_set_screen (GTK_WINDOW (gdisp->shell), screen);
|
|
|
|
}
|
2003-11-10 08:24:33 +08:00
|
|
|
}
|
2004-09-24 04:41:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
view_padding_color_dialog_update (GimpColorDialog *dialog,
|
|
|
|
const GimpRGB *color,
|
|
|
|
GimpColorDialogState state,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
GimpDisplayOptions *options;
|
|
|
|
gboolean fullscreen;
|
|
|
|
|
|
|
|
fullscreen = gimp_display_shell_get_fullscreen (shell);
|
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
options = shell->fullscreen_options;
|
|
|
|
else
|
|
|
|
options = shell->options;
|
|
|
|
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case GIMP_COLOR_DIALOG_OK:
|
|
|
|
options->padding_mode_set = TRUE;
|
|
|
|
|
|
|
|
gimp_display_shell_set_padding (shell, GIMP_CANVAS_PADDING_MODE_CUSTOM,
|
|
|
|
color);
|
|
|
|
/* fallthru */
|
|
|
|
|
|
|
|
case GIMP_COLOR_DIALOG_CANCEL:
|
|
|
|
g_object_set_data (G_OBJECT (shell), "padding-color-dialog", NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|