2001-11-11 03:10:28 +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>
|
|
|
|
|
2001-11-30 00:44:51 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2001-11-11 03:10:28 +08:00
|
|
|
#include "display-types.h"
|
|
|
|
|
2002-11-19 04:50:31 +08:00
|
|
|
#include "config/gimpdisplayconfig.h"
|
|
|
|
|
|
|
|
#include "core/gimp.h"
|
2003-09-12 06:24:30 +08:00
|
|
|
#include "core/gimpcontainer.h"
|
2001-11-11 03:10:28 +08:00
|
|
|
#include "core/gimpimage.h"
|
2003-09-12 06:24:30 +08:00
|
|
|
#include "core/gimpitem.h"
|
2001-11-11 03:10:28 +08:00
|
|
|
|
2003-05-29 19:34:30 +08:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
|
|
|
|
2001-11-11 03:10:28 +08:00
|
|
|
#include "gimpdisplay.h"
|
2003-10-22 22:46:05 +08:00
|
|
|
#include "gimpdisplayoptions.h"
|
2001-11-11 03:10:28 +08:00
|
|
|
#include "gimpdisplayshell.h"
|
2003-03-12 00:49:36 +08:00
|
|
|
#include "gimpdisplayshell-appearance.h"
|
2001-11-30 22:41:56 +08:00
|
|
|
#include "gimpdisplayshell-callbacks.h"
|
2004-02-07 08:16:52 +08:00
|
|
|
#include "gimpdisplayshell-draw.h"
|
2001-11-11 03:10:28 +08:00
|
|
|
#include "gimpdisplayshell-handlers.h"
|
|
|
|
#include "gimpdisplayshell-scale.h"
|
2003-01-04 02:01:30 +08:00
|
|
|
#include "gimpdisplayshell-title.h"
|
2001-11-11 03:10:28 +08:00
|
|
|
|
|
|
|
|
2003-05-13 01:33:15 +08:00
|
|
|
#define GIMP_DISPLAY_UPDATE_ICON_TIMEOUT 1000
|
|
|
|
|
|
|
|
|
2001-11-11 03:10:28 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
2002-02-16 01:44:05 +08:00
|
|
|
static void gimp_display_shell_clean_dirty_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell);
|
2002-02-08 01:37:34 +08:00
|
|
|
static void gimp_display_shell_undo_event_handler (GimpImage *gimage,
|
2003-02-20 20:47:42 +08:00
|
|
|
GimpUndoEvent event,
|
|
|
|
GimpUndo *undo,
|
2002-02-08 01:37:34 +08:00
|
|
|
GimpDisplayShell *shell);
|
2003-10-14 23:37:21 +08:00
|
|
|
static void gimp_display_shell_grid_notify_handler (GimpGrid *grid,
|
|
|
|
GParamSpec *pspec,
|
2003-06-24 03:34:48 +08:00
|
|
|
GimpDisplayShell *shell);
|
2002-02-08 01:37:34 +08:00
|
|
|
static void gimp_display_shell_name_changed_handler (GimpImage *gimage,
|
2001-11-11 03:10:28 +08:00
|
|
|
GimpDisplayShell *shell);
|
2001-11-11 07:03:22 +08:00
|
|
|
static void gimp_display_shell_selection_control_handler (GimpImage *gimage,
|
|
|
|
GimpSelectionControl control,
|
|
|
|
GimpDisplayShell *shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
static void gimp_display_shell_size_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_resolution_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_qmask_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell);
|
2001-11-14 23:40:30 +08:00
|
|
|
static void gimp_display_shell_update_guide_handler (GimpImage *gimage,
|
|
|
|
GimpGuide *guide,
|
|
|
|
GimpDisplayShell *shell);
|
2002-02-17 21:12:16 +08:00
|
|
|
static void gimp_display_shell_invalidate_preview_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
|
2003-09-12 06:24:30 +08:00
|
|
|
static void gimp_display_shell_vectors_freeze_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_vectors_thaw_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_vectors_visible_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_vectors_add_handler (GimpContainer *container,
|
|
|
|
GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_vectors_remove_handler (GimpContainer *container,
|
|
|
|
GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
|
2002-11-21 23:46:19 +08:00
|
|
|
static void gimp_display_shell_check_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
2002-11-23 06:10:40 +08:00
|
|
|
static void gimp_display_shell_title_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_nav_size_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
2002-11-24 06:22:21 +08:00
|
|
|
static void gimp_display_shell_monitor_res_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
|
|
|
static void gimp_display_shell_padding_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
2002-11-24 08:03:42 +08:00
|
|
|
static void gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell);
|
2002-11-21 23:46:19 +08:00
|
|
|
|
2002-02-17 21:12:16 +08:00
|
|
|
static gboolean gimp_display_shell_idle_update_icon (gpointer data);
|
2001-11-11 03:10:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_display_shell_connect (GimpDisplayShell *shell)
|
|
|
|
{
|
2002-11-24 06:22:21 +08:00
|
|
|
GimpImage *gimage;
|
2003-10-22 22:46:05 +08:00
|
|
|
GimpDisplayConfig *display_config;
|
2001-11-11 03:10:28 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell));
|
|
|
|
g_return_if_fail (GIMP_IS_DISPLAY (shell->gdisp));
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (shell->gdisp->gimage));
|
|
|
|
|
|
|
|
gimage = shell->gdisp->gimage;
|
|
|
|
|
2002-11-24 06:22:21 +08:00
|
|
|
display_config = GIMP_DISPLAY_CONFIG (gimage->gimp->config);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "clean",
|
2002-02-16 01:44:05 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_clean_dirty_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "dirty",
|
2002-02-16 01:44:05 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_clean_dirty_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "undo_event",
|
2002-02-08 01:37:34 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_undo_event_handler),
|
2001-11-11 03:10:28 +08:00
|
|
|
shell);
|
2003-10-14 23:37:21 +08:00
|
|
|
g_signal_connect (gimage->grid, "notify",
|
|
|
|
G_CALLBACK (gimp_display_shell_grid_notify_handler),
|
2003-06-24 03:34:48 +08:00
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "name_changed",
|
2002-02-08 01:37:34 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_name_changed_handler),
|
2001-11-11 03:10:28 +08:00
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "selection_control",
|
2001-11-11 07:03:22 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_selection_control_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "size_changed",
|
2001-11-11 03:10:28 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_size_changed_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "resolution_changed",
|
2001-11-11 03:10:28 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_resolution_changed_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "qmask_changed",
|
2001-11-11 03:10:28 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_qmask_changed_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "update_guide",
|
2001-11-14 23:40:30 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_update_guide_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage, "invalidate_preview",
|
2002-02-17 21:12:16 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_invalidate_preview_handler),
|
|
|
|
shell);
|
|
|
|
|
2003-09-12 06:24:30 +08:00
|
|
|
shell->vectors_freeze_handler =
|
|
|
|
gimp_container_add_handler (gimage->vectors, "freeze",
|
|
|
|
G_CALLBACK (gimp_display_shell_vectors_freeze_handler),
|
|
|
|
shell);
|
|
|
|
shell->vectors_thaw_handler =
|
|
|
|
gimp_container_add_handler (gimage->vectors, "thaw",
|
|
|
|
G_CALLBACK (gimp_display_shell_vectors_thaw_handler),
|
|
|
|
shell);
|
|
|
|
shell->vectors_visible_handler =
|
|
|
|
gimp_container_add_handler (gimage->vectors, "visibility_changed",
|
|
|
|
G_CALLBACK (gimp_display_shell_vectors_visible_handler),
|
|
|
|
shell);
|
|
|
|
|
|
|
|
g_signal_connect (gimage->vectors, "add",
|
|
|
|
G_CALLBACK (gimp_display_shell_vectors_add_handler),
|
|
|
|
shell);
|
|
|
|
g_signal_connect (gimage->vectors, "remove",
|
|
|
|
G_CALLBACK (gimp_display_shell_vectors_remove_handler),
|
|
|
|
shell);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-21 23:46:19 +08:00
|
|
|
"notify::transparency-size",
|
|
|
|
G_CALLBACK (gimp_display_shell_check_notify_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-21 23:46:19 +08:00
|
|
|
"notify::transparency-type",
|
|
|
|
G_CALLBACK (gimp_display_shell_check_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-23 06:10:40 +08:00
|
|
|
"notify::image-title-format",
|
|
|
|
G_CALLBACK (gimp_display_shell_title_notify_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-23 06:10:40 +08:00
|
|
|
"notify::image-status-format",
|
|
|
|
G_CALLBACK (gimp_display_shell_title_notify_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-23 06:10:40 +08:00
|
|
|
"notify::navigation-preview-size",
|
|
|
|
G_CALLBACK (gimp_display_shell_nav_size_notify_handler),
|
|
|
|
shell);
|
2003-05-29 19:34:30 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
|
|
|
"notify::monitor-resolution-from-windowing-system",
|
|
|
|
G_CALLBACK (gimp_display_shell_monitor_res_notify_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-12-18 23:42:45 +08:00
|
|
|
"notify::monitor-xresolution",
|
2002-11-24 06:22:21 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_monitor_res_notify_handler),
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-12-18 23:42:45 +08:00
|
|
|
"notify::monitor-yresolution",
|
2002-11-24 06:22:21 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_monitor_res_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
|
|
|
|
g_signal_connect (display_config->default_view,
|
|
|
|
"notify::padding-mode",
|
2002-11-24 06:22:21 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
g_signal_connect (display_config->default_view,
|
|
|
|
"notify::padding-color",
|
2002-11-24 06:22:21 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
g_signal_connect (display_config->default_fullscreen_view,
|
|
|
|
"notify::padding-mode",
|
2003-07-18 06:30:13 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
g_signal_connect (display_config->default_fullscreen_view,
|
|
|
|
"notify::padding-color",
|
2003-07-18 06:30:13 +08:00
|
|
|
G_CALLBACK (gimp_display_shell_padding_notify_handler),
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_connect (gimage->gimp->config,
|
2002-11-24 08:03:42 +08:00
|
|
|
"notify::marching-ants-speed",
|
|
|
|
G_CALLBACK (gimp_display_shell_ants_speed_notify_handler),
|
|
|
|
shell);
|
2002-11-21 23:46:19 +08:00
|
|
|
|
2002-02-17 21:12:16 +08:00
|
|
|
gimp_display_shell_invalidate_preview_handler (gimage, shell);
|
2002-09-28 00:17:31 +08:00
|
|
|
gimp_display_shell_qmask_changed_handler (gimage, shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_display_shell_disconnect (GimpDisplayShell *shell)
|
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
GimpImage *gimage;
|
|
|
|
GimpDisplayConfig *display_config;
|
2001-11-11 03:10:28 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_DISPLAY_SHELL (shell));
|
|
|
|
g_return_if_fail (GIMP_IS_DISPLAY (shell->gdisp));
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE (shell->gdisp->gimage));
|
|
|
|
|
|
|
|
gimage = shell->gdisp->gimage;
|
|
|
|
|
2003-10-22 22:46:05 +08:00
|
|
|
display_config = GIMP_DISPLAY_CONFIG (gimage->gimp->config);
|
|
|
|
|
2002-02-17 21:12:16 +08:00
|
|
|
if (shell->icon_idle_id)
|
|
|
|
{
|
|
|
|
g_source_remove (shell->icon_idle_id);
|
|
|
|
shell->icon_idle_id = 0;
|
|
|
|
}
|
|
|
|
|
2004-04-04 23:53:21 +08:00
|
|
|
if (shell->grid_gc)
|
|
|
|
{
|
|
|
|
g_object_unref (shell->grid_gc);
|
|
|
|
shell->grid_gc = NULL;
|
|
|
|
}
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->gimp->config,
|
2002-11-24 08:03:42 +08:00
|
|
|
gimp_display_shell_ants_speed_notify_handler,
|
|
|
|
shell);
|
2004-02-18 10:33:49 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (display_config->default_fullscreen_view,
|
|
|
|
gimp_display_shell_padding_notify_handler,
|
|
|
|
shell);
|
2003-10-22 22:46:05 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (display_config->default_view,
|
2002-11-24 06:22:21 +08:00
|
|
|
gimp_display_shell_padding_notify_handler,
|
|
|
|
shell);
|
2004-02-18 10:33:49 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->gimp->config,
|
2002-11-24 06:22:21 +08:00
|
|
|
gimp_display_shell_monitor_res_notify_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->gimp->config,
|
2002-11-23 06:10:40 +08:00
|
|
|
gimp_display_shell_nav_size_notify_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->gimp->config,
|
2002-11-23 06:10:40 +08:00
|
|
|
gimp_display_shell_title_notify_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->gimp->config,
|
2002-11-21 23:46:19 +08:00
|
|
|
gimp_display_shell_check_notify_handler,
|
|
|
|
shell);
|
|
|
|
|
2003-09-12 06:24:30 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->vectors,
|
|
|
|
gimp_display_shell_vectors_remove_handler,
|
|
|
|
shell);
|
|
|
|
g_signal_handlers_disconnect_by_func (gimage->vectors,
|
|
|
|
gimp_display_shell_vectors_add_handler,
|
|
|
|
shell);
|
|
|
|
|
|
|
|
gimp_container_remove_handler (gimage->vectors,
|
|
|
|
shell->vectors_visible_handler);
|
|
|
|
gimp_container_remove_handler (gimage->vectors,
|
|
|
|
shell->vectors_thaw_handler);
|
|
|
|
gimp_container_remove_handler (gimage->vectors,
|
|
|
|
shell->vectors_freeze_handler);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2002-02-17 21:12:16 +08:00
|
|
|
gimp_display_shell_invalidate_preview_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2001-11-14 23:40:30 +08:00
|
|
|
gimp_display_shell_update_guide_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2001-11-11 03:10:28 +08:00
|
|
|
gimp_display_shell_qmask_changed_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2001-11-11 03:10:28 +08:00
|
|
|
gimp_display_shell_resolution_changed_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2001-11-11 03:10:28 +08:00
|
|
|
gimp_display_shell_size_changed_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2001-11-11 07:03:22 +08:00
|
|
|
gimp_display_shell_selection_control_handler,
|
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2002-02-08 01:37:34 +08:00
|
|
|
gimp_display_shell_name_changed_handler,
|
|
|
|
shell);
|
2003-10-14 23:37:21 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage->grid,
|
|
|
|
gimp_display_shell_grid_notify_handler,
|
2003-06-24 03:34:48 +08:00
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2002-02-08 01:37:34 +08:00
|
|
|
gimp_display_shell_undo_event_handler,
|
2001-11-11 03:10:28 +08:00
|
|
|
shell);
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_disconnect_by_func (gimage,
|
2002-02-16 01:44:05 +08:00
|
|
|
gimp_display_shell_clean_dirty_handler,
|
|
|
|
shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2002-02-16 01:44:05 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_clean_dirty_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-02-26 03:01:10 +08:00
|
|
|
gimp_display_shell_update_title (shell);
|
2002-02-16 01:44:05 +08:00
|
|
|
}
|
|
|
|
|
2001-11-11 03:10:28 +08:00
|
|
|
static void
|
2002-02-08 01:37:34 +08:00
|
|
|
gimp_display_shell_undo_event_handler (GimpImage *gimage,
|
2003-02-20 20:47:42 +08:00
|
|
|
GimpUndoEvent event,
|
|
|
|
GimpUndo *undo,
|
2002-02-08 01:37:34 +08:00
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-02-26 03:01:10 +08:00
|
|
|
gimp_display_shell_update_title (shell);
|
2002-02-08 01:37:34 +08:00
|
|
|
}
|
|
|
|
|
2003-06-24 03:34:48 +08:00
|
|
|
static void
|
2003-10-14 23:37:21 +08:00
|
|
|
gimp_display_shell_grid_notify_handler (GimpGrid *grid,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GimpDisplayShell *shell)
|
2003-06-24 03:34:48 +08:00
|
|
|
{
|
2004-04-04 23:53:21 +08:00
|
|
|
if (shell->grid_gc)
|
|
|
|
{
|
|
|
|
g_object_unref (shell->grid_gc);
|
|
|
|
shell->grid_gc = NULL;
|
|
|
|
}
|
|
|
|
|
2003-06-24 03:34:48 +08:00
|
|
|
gimp_display_shell_expose_full (shell);
|
|
|
|
|
|
|
|
/* update item factory */
|
|
|
|
gimp_display_flush (shell->gdisp);
|
|
|
|
}
|
|
|
|
|
2002-02-08 01:37:34 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_name_changed_handler (GimpImage *gimage,
|
2001-11-11 03:10:28 +08:00
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-02-26 03:01:10 +08:00
|
|
|
gimp_display_shell_update_title (shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
2001-11-11 07:03:22 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_selection_control_handler (GimpImage *gimage,
|
|
|
|
GimpSelectionControl control,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
gimp_display_shell_selection_visibility (shell, control);
|
|
|
|
}
|
|
|
|
|
2001-11-11 03:10:28 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_size_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2002-11-19 04:50:31 +08:00
|
|
|
gimp_display_shell_scale_resize (shell,
|
|
|
|
GIMP_DISPLAY_CONFIG (gimage->gimp->config)->resize_windows_on_resize,
|
|
|
|
TRUE);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_resolution_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2004-05-07 23:45:56 +08:00
|
|
|
gimp_display_shell_scale_setup (shell);
|
|
|
|
gimp_display_shell_scaled (shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_qmask_changed_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2001-11-30 00:44:51 +08:00
|
|
|
GtkImage *image;
|
|
|
|
|
|
|
|
image = GTK_IMAGE (GTK_BIN (shell->qmask)->child);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_block_by_func (shell->qmask,
|
2001-11-30 00:44:51 +08:00
|
|
|
gimp_display_shell_qmask_toggled,
|
|
|
|
shell);
|
|
|
|
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (shell->qmask),
|
|
|
|
shell->gdisp->gimage->qmask_state);
|
|
|
|
|
|
|
|
if (shell->gdisp->gimage->qmask_state)
|
|
|
|
gtk_image_set_from_stock (image, GIMP_STOCK_QMASK_ON, GTK_ICON_SIZE_MENU);
|
|
|
|
else
|
|
|
|
gtk_image_set_from_stock (image, GIMP_STOCK_QMASK_OFF, GTK_ICON_SIZE_MENU);
|
|
|
|
|
2003-01-06 06:07:10 +08:00
|
|
|
g_signal_handlers_unblock_by_func (shell->qmask,
|
2001-11-30 00:44:51 +08:00
|
|
|
gimp_display_shell_qmask_toggled,
|
|
|
|
shell);
|
2001-11-11 03:10:28 +08:00
|
|
|
}
|
2001-11-14 23:40:30 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_update_guide_handler (GimpImage *gimage,
|
|
|
|
GimpGuide *guide,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
gimp_display_shell_expose_guide (shell, guide);
|
|
|
|
}
|
2002-02-17 21:12:16 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_invalidate_preview_handler (GimpImage *gimage,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->icon_idle_id)
|
2002-09-28 00:17:31 +08:00
|
|
|
g_source_remove (shell->icon_idle_id);
|
2002-02-17 21:12:16 +08:00
|
|
|
|
2003-05-13 01:33:15 +08:00
|
|
|
shell->icon_idle_id = g_timeout_add_full (G_PRIORITY_LOW,
|
|
|
|
GIMP_DISPLAY_UPDATE_ICON_TIMEOUT,
|
|
|
|
gimp_display_shell_idle_update_icon,
|
|
|
|
shell,
|
|
|
|
NULL);
|
2002-02-17 21:12:16 +08:00
|
|
|
}
|
|
|
|
|
2003-09-12 06:24:30 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_vectors_freeze_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->paused_count == 0 && gimp_item_get_visible (GIMP_ITEM (vectors)))
|
|
|
|
gimp_display_shell_draw_vector (shell, vectors);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_vectors_thaw_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->paused_count == 0 && gimp_item_get_visible (GIMP_ITEM (vectors)))
|
|
|
|
gimp_display_shell_draw_vector (shell, vectors);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_vectors_visible_handler (GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->paused_count == 0)
|
|
|
|
gimp_display_shell_draw_vector (shell, vectors);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_vectors_add_handler (GimpContainer *container,
|
|
|
|
GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->paused_count == 0 && gimp_item_get_visible (GIMP_ITEM (vectors)))
|
|
|
|
gimp_display_shell_draw_vector (shell, vectors);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_vectors_remove_handler (GimpContainer *container,
|
|
|
|
GimpVectors *vectors,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->paused_count == 0 && gimp_item_get_visible (GIMP_ITEM (vectors)))
|
|
|
|
gimp_display_shell_draw_vector (shell, vectors);
|
|
|
|
}
|
|
|
|
|
2002-11-21 23:46:19 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_check_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
GimpCanvasPaddingMode padding_mode;
|
|
|
|
GimpRGB padding_color;
|
2003-07-18 06:30:13 +08:00
|
|
|
|
|
|
|
gimp_display_shell_get_padding (shell, &padding_mode, &padding_color);
|
|
|
|
|
|
|
|
switch (padding_mode)
|
2002-11-24 06:22:21 +08:00
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
case GIMP_CANVAS_PADDING_MODE_LIGHT_CHECK:
|
|
|
|
case GIMP_CANVAS_PADDING_MODE_DARK_CHECK:
|
2003-07-18 06:30:13 +08:00
|
|
|
gimp_display_shell_set_padding (shell, padding_mode, &padding_color);
|
2002-11-24 06:22:21 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2003-02-24 20:30:33 +08:00
|
|
|
|
|
|
|
gimp_display_shell_expose_full (shell);
|
2002-11-21 23:46:19 +08:00
|
|
|
}
|
|
|
|
|
2002-11-23 06:10:40 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_title_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
gimp_display_shell_update_title (shell);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_nav_size_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
|
|
|
if (shell->nav_popup)
|
|
|
|
{
|
|
|
|
gtk_widget_destroy (shell->nav_popup);
|
|
|
|
shell->nav_popup = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-24 06:22:21 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_monitor_res_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-05-29 00:11:29 +08:00
|
|
|
if (GIMP_DISPLAY_CONFIG (config)->monitor_res_from_gdk)
|
|
|
|
{
|
2003-05-29 19:34:30 +08:00
|
|
|
gimp_get_screen_resolution (gtk_widget_get_screen (GTK_WIDGET (shell)),
|
|
|
|
&shell->monitor_xres,
|
|
|
|
&shell->monitor_yres);
|
2003-05-29 00:11:29 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
shell->monitor_xres = GIMP_DISPLAY_CONFIG (config)->monitor_xres;
|
|
|
|
shell->monitor_yres = GIMP_DISPLAY_CONFIG (config)->monitor_yres;
|
|
|
|
}
|
2002-11-24 06:22:21 +08:00
|
|
|
|
2002-11-25 21:48:24 +08:00
|
|
|
if (! shell->dot_for_dot)
|
2002-12-18 23:42:45 +08:00
|
|
|
{
|
|
|
|
gimp_display_shell_scale_setup (shell);
|
2003-03-22 00:28:06 +08:00
|
|
|
gimp_display_shell_scaled (shell);
|
2002-11-25 21:48:24 +08:00
|
|
|
|
2002-12-18 23:42:45 +08:00
|
|
|
gimp_display_shell_expose_full (shell);
|
|
|
|
}
|
2002-11-24 06:22:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_display_shell_padding_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
GimpDisplayConfig *display_config;
|
|
|
|
gboolean fullscreen;
|
|
|
|
GimpCanvasPaddingMode padding_mode;
|
|
|
|
GimpRGB padding_color;
|
2002-11-24 06:22:21 +08:00
|
|
|
|
2003-10-22 22:46:05 +08:00
|
|
|
display_config = GIMP_DISPLAY_CONFIG (shell->gdisp->gimage->gimp->config);
|
2002-11-24 06:22:21 +08:00
|
|
|
|
2003-07-18 06:30:13 +08:00
|
|
|
fullscreen = gimp_display_shell_get_fullscreen (shell);
|
|
|
|
|
|
|
|
/* if the user did not set the padding mode for this display explicitely */
|
2003-10-22 22:46:05 +08:00
|
|
|
if (! shell->fullscreen_options->padding_mode_set)
|
2003-07-18 06:30:13 +08:00
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
padding_mode = display_config->default_fullscreen_view->padding_mode;
|
|
|
|
padding_color = display_config->default_fullscreen_view->padding_color;
|
2003-07-18 06:30:13 +08:00
|
|
|
|
|
|
|
if (fullscreen)
|
|
|
|
{
|
|
|
|
gimp_display_shell_set_padding (shell, padding_mode, &padding_color);
|
2004-02-18 10:33:49 +08:00
|
|
|
}
|
2003-07-18 06:30:13 +08:00
|
|
|
else
|
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
shell->fullscreen_options->padding_mode = padding_mode;
|
|
|
|
shell->fullscreen_options->padding_color = padding_color;
|
2003-07-18 06:30:13 +08:00
|
|
|
}
|
2002-11-24 06:22:21 +08:00
|
|
|
}
|
2003-07-18 06:30:13 +08:00
|
|
|
|
|
|
|
/* if the user did not set the padding mode for this display explicitely */
|
2003-10-22 22:46:05 +08:00
|
|
|
if (! shell->options->padding_mode_set)
|
2003-07-18 06:30:13 +08:00
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
padding_mode = display_config->default_view->padding_mode;
|
|
|
|
padding_color = display_config->default_view->padding_color;
|
2003-07-18 06:30:13 +08:00
|
|
|
|
2004-02-18 10:33:49 +08:00
|
|
|
if (fullscreen)
|
2003-07-18 06:30:13 +08:00
|
|
|
{
|
2003-10-22 22:46:05 +08:00
|
|
|
shell->options->padding_mode = padding_mode;
|
|
|
|
shell->options->padding_color = padding_color;
|
2004-02-18 10:33:49 +08:00
|
|
|
}
|
2003-07-18 06:30:13 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
gimp_display_shell_set_padding (shell, padding_mode, &padding_color);
|
|
|
|
}
|
2004-02-18 10:33:49 +08:00
|
|
|
}
|
2002-11-24 06:22:21 +08:00
|
|
|
}
|
|
|
|
|
2002-11-24 08:03:42 +08:00
|
|
|
static void
|
|
|
|
gimp_display_shell_ants_speed_notify_handler (GObject *config,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
GimpDisplayShell *shell)
|
|
|
|
{
|
2003-07-30 00:16:03 +08:00
|
|
|
gimp_display_shell_selection_visibility (shell, GIMP_SELECTION_PAUSE);
|
|
|
|
gimp_display_shell_selection_visibility (shell, GIMP_SELECTION_RESUME);
|
2002-11-24 08:03:42 +08:00
|
|
|
}
|
|
|
|
|
2002-02-17 21:12:16 +08:00
|
|
|
static gboolean
|
|
|
|
gimp_display_shell_idle_update_icon (gpointer data)
|
|
|
|
{
|
|
|
|
GimpDisplayShell *shell;
|
|
|
|
|
|
|
|
shell = GIMP_DISPLAY_SHELL (data);
|
|
|
|
|
|
|
|
shell->icon_idle_id = 0;
|
|
|
|
|
|
|
|
gimp_display_shell_update_icon (shell);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|